Skip to content

Instantly share code, notes, and snippets.

View Deusdies's full-sized avatar

Bo Milanovich Deusdies

View GitHub Profile
@aksiksi
aksiksi / metascore-file.py
Created March 10, 2012 20:49
Grabs Metascore of games in text file.
# Uses httplib2 instead of urllib2 - runs faster
#import urllib2
import httplib2
import time
s = time.time()
game_console = {}
@joyrexus
joyrexus / README.md
Last active January 21, 2024 21:51 — forked from btoone/curl.md
curl tutorial

An introduction to curl using GitHub's API.

Basics

Makes a basic GET request to the specifed URI

curl https://api.github.com/users/caspyin

Includes HTTP-Header information in the output

@GuillaumeLebeau
GuillaumeLebeau / chocolatey-package-list.txt
Last active July 17, 2018 18:35
List of Chocolatey packages
choco install googlechrome
choco install 7zip
choco install filezilla
choco install sysinternals --params="'/InstallationPath:D:\software\sysinternals'"
choco install adobereader-update
choco install ccleaner
choco install cmder
choco install defraggler
choco install docker-for-windows
choco install dropbox
@Hypro999
Hypro999 / PyStudentDatabase.py
Last active December 26, 2022 18:46
The data is in the form of a list which subsequently contains dictionaries - code snippet for saving and loading. The idea for PyStudentManager was inspired by Bo Milanovich in his Pluralsight course. Note: I made this a long while ago when I was new to programming (in general, but more specifically in Python) which is why the code may cause you…
import time
students = []
# Titlecasing:
def get_students_tica():
students_tica = []
i = 0