Skip to content
View discarn8's full-sized avatar
Block or Report

Block or report discarn8

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Python script to get temperature rea... Python script to get temperature reading from DS18B20 sensor
    1
    #!/usr/bin/python
    2
    
                  
    3
    import os
    4
    import time
    5
    
                  
  2. Python_list_specific_filetypes_with_... Python_list_specific_filetypes_with_mod-date_in_directory
    1
    import os
    2
    #import glob
    3
    #import time
    4
    
                  
    5
    path = "C:/path/to?files/*.csv"
  3. Python_graph_csv_files_in_directory_... Python_graph_csv_files_in_directory_with_total_and_count
    1
    %matplotlib inline
    2
    import time
    3
    import os
    4
    import glob
    5
    import seaborn as sns
  4. Python: Create a live-update 4-squar... Python: Create a live-update 4-square_heatmap.py
    1
    import plotly.graph_objects as go
    2
    import dash
    3
    from dash import dcc, html
    4
    import requests
    5
    from dash.dependencies import Input, Output
  5. Bash One-line-lovelies Bash One-line-lovelies
    1
    # Remove blank lines from a text file
    2
    sed -i '/^$/d' file.txt
    3
    
                  
    4
    # Delete line 7000 with sed
    5
    sed -i '7000d' file.txt 
  6. Python2.7 script to pull your favori... Python2.7 script to pull your favorite stock and graph it (currently - 5 day trend)
    1
    #!/usr/bin/env python2
    2
    
                  
    3
    #Squelch matplotlib / seaborne error
    4
    import warnings
    5
    warnings.filterwarnings("ignore")