Event Name:
Location:
Date:
Talk topic:
| [ | |
| { | |
| "text":"The only people who never fail are those who never try.", | |
| "from":"Ilka Chase" | |
| }, | |
| { | |
| "text":"Failure is just another way to learn how to do something right.", | |
| "from":"Marian Wright Edelman" | |
| }, | |
| { |
Event Name:
Location:
Date:
Talk topic:
| int[][] result; | |
| float t; | |
| float ease(float p) { | |
| return 3*p*p - 2*p*p*p; | |
| } | |
| float ease(float p, float g) { | |
| if (p < 0.5) | |
| return 0.5 * pow(2*p, g); |
| # --------------------------------------------------------------------------- | |
| # | |
| # Description: This file holds all my BASH configurations and aliases | |
| # | |
| # Sections: | |
| # 1. Environment Configuration | |
| # 2. Make Terminal Better (remapping defaults and adding functionality) | |
| # 3. File and Folder Management | |
| # 4. Searching | |
| # 5. Process Management |
| view.on("touchstart", function(e) { | |
| var touch = event.touches[0] | |
| //Grab the initial touch coordinates | |
| xInit = touch.pageX | |
| yInit = touch.pageY | |
| }) | |
| view.on("touchmove", function(e) { | |
| var touch = event.touches[0] | |
| xCurrent = touch.pageX |
Amazon links (No affiliate links!)
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>SKVariables</key> | |
| <array> | |
| <dict> | |
| <key>enabled</key> | |
| <true/> | |
| <key>name</key> |
| agh! iIl1 o0 rQy “ ‘ |
| <style type="text/css" media="screen"> | |
| #test{ background-color: #ddd; } | |
| @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { | |
| html>body #test { background-color: red } | |
| } | |
| </style> |