- Gecko Reflow Visualization
- css-stacking-contexts-wtf
- critical-rendering-path
- why-do-browsers-match-css-selectors-from-right-to-left
- getting-started-with-the-webkit-layout-code
- improving-css-performance-fixed-position-elements
- BlinkOn 5: Paint and Compositing Deep Dive
- a-quick-overview-of-chromes-rendering-path
- [render-blocking-css](https://developers.google.com/web/fundamentals/performance/critical-rendering-path/render-b
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import sqlite3 as lite | |
con = lite.connect('mood_history.sqlite') | |
"""Add User Profiles???""" | |
"""Deleted Colors from this version due to Dev Glitches""" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
""" This is what my Mood Tracker app looked like on 2/8/16 at 6am """ | |
#Note: Replace String Queries with Variables for Security Reasons | |
#Add an Undo Delete Function - This would involve a backup Database | |
import sys | |
import sqlite3 as lite | |
con = lite.connect('mood_history.sqlite') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() { | |
var $children = $("#tag_cloud").children("a") | |
console.log($children) | |
var $color_list = ['red', 'blue', 'yellow', 'green'] | |
for (i = 1; i < $children.length - 1; i++) { | |
var $random_color = $color_list[Math.floor(Math.random()*$color_list.length)]; | |
$children[i].css("color", $random_color) | |
} | |
console.log(red); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[NOTE: These are raw, I may have been getting a bit sick, there's probly errors or things I just didn't hear/get... if something seems Off, assume it's something I missed - not him] | |
Greg Price - works w/ Guido Van Rossum | |
Python has Static Types in Beta | |
Core Mypy team: | |
Jukka Lehtosdale - PhD research was the start of this | |
Guido vR | |
Greg |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Git Aliases | |
alias g='git' | |
alias ga='git add' | |
alias gaa='git add -A' | |
alias gb='git branch' | |
# -a Show local and remote | |
alias gba='git branch -a' | |
# gb delete | |
alias gbd='git branch -d' | |
alias gbdf='git branch -D' |
OlderNewer