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

Block or report snitzr

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

  1. wikitate.com wikitate.com Public archive

    Subtitle most YouTube videos.

    CSS 1 1

  2. grab_pinboard_popular_tweets grab_pinboard_popular_tweets Public

    Run a script to get only Twitter links from the http://pinboard.in/popular page.

    HTML 1 1

  3. cary_nc_bill_pay cary_nc_bill_pay Public archive

    Town of Cary NC auto bill pay script with Selenium and Python. Note: Cary now has its own autopay feature.

    Python 1 1

  4. Find user location with GPS Find user location with GPS
    1
    // adapted and simplified from
    2
    // https://developers.google.com/web/fundamentals/native-hardware/user-location/obtain-location
    3
    
                  
    4
    // find location
    5
    window.onload = function() {
  5. twitter_bot.py twitter_bot.py
    1
    #!/usr/bin/env python3
    2
    # MIT license
    3
    
                  
    4
    from tweepy import OAuthHandler, Stream, API
    5
    from tweepy.streaming import StreamListener
  6. Monty Hall problem outcome simulator Monty Hall problem outcome simulator
    1
    import random
    2
    
                  
    3
    
                  
    4
    # probability calculator
    5
    def monty():