Skip to content

Instantly share code, notes, and snippets.

View JulianNorton's full-sized avatar
🔒

Julian Norton JulianNorton

🔒
View GitHub Profile
@JulianNorton
JulianNorton / task-estimate.py
Created February 12, 2017 14:51
calculating task time estimates
# What's the best guess?
tm = float(input("Most probable Time (Tm) = "))
# If everything goes well, how long would it take?
to = float(input("Optimistic Time (To) = "))
# If everything bad happens, how long would it take?
# Probable time
tp = float(input("Pessimistic Time (Tp) = "))
@JulianNorton
JulianNorton / Preferences.sublime-settings
Created August 11, 2016 17:25
sublime-text 3 user preferences
{
"always_show_minimap_viewport": true,
"auto_complete_triggers":
[
{
"characters": "<",
"selector": "text.html"
},
{
"characters": ".",
@JulianNorton
JulianNorton / list-comparer.py
Last active July 26, 2017 21:38
compare lists, match and dupe, detector.
import csv
csvfile_A = 'example.csv'
csvfile_B = 'anotherexample.csv'
delimiter = '\n'
data_alpha = []
data_beta = []
data_matched = list()
data_no_matched = list()
@imjasonh
imjasonh / markdown.css
Last active February 12, 2024 17:18
Render Markdown as unrendered Markdown (see http://jsbin.com/huwosomawo)
* {
font-size: 12pt;
font-family: monospace;
font-weight: normal;
font-style: normal;
text-decoration: none;
color: black;
cursor: default;
}