Time (CDT) | Topic |
---|---|
8:30 | Tech Check and Hello |
9:00 | Your coding toolbox: the Browser and Sublime Text 2/3 |
9:30 | The basics of the web: it’s more than just tubes |
10:00 | HTML – What is markup, why do we have it, and the DOM |
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
#include "LPD8806.h" | |
#include "SPI.h" // Comment out this line if using Trinket or Gemma | |
#ifdef __AVR_ATtiny85__ | |
#include <avr/power.h> | |
#endif | |
// Example to control LPD8806-based RGB LED Modules in a strip | |
/*****************************************************************************/ |
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
<html> | |
<head> | |
<script src="http://cdn.binaryjs.com/0/binary.js"></script> | |
<script> | |
var hexChar = ["0", "1", "2", "3", "4", "5", "6", "7","8", "9", "A", "B", "C", "D", "E", "F"]; | |
function byteToHex(b) { | |
return hexChar[(b >> 4) & 0x0f] + hexChar[b & 0x0f]; | |
} |
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
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar | |
Set-TaskbarOptions -Size Small -Lock -Dock Top | |
cinst fiddler4 | |
cinst git-credential-winstore | |
cinst console-devel | |
cinst SublimeText3 | |
cinst notepadplusplus | |
cinst poshgit |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Chat</title> | |
<link rel="stylesheet" href="normalize.css"> | |
</head> | |
<body> | |
<style> | |
td { |
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
<-- | |
 | |
<img src="images/chrome.png" alt="chrome icon" style="height:50px;"> | |
--> |
-
Urban Airship
-
Push IO
-
Parse
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
# checkout <SVN REVISION> and newer from SVN convert to git | |
git svn clone -r <SVN REVISION>:HEAD <SVN REPO URL> <path to git repo> |
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
# Setup alias for `swift` | |
alias swift="/Applications/Xcode6-Beta2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift" | |
#Edit - preferred method is above, leaving old method below. | |
#Xcode 6 Beta 1 | |
sudo xcode-select -switch /Applications/Xcode6-Beta.app/Contents/Developer | |
#Xcode 6 Beta 2 | |
sudo xcode-select -switch /Applications/Xcode6-Beta2.app/Contents/Developer |
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
# PDFs | |
curl https://developer.apple.com/videos/wwdc/2014/ | grep -iIoh 'http.*.pdf.*dl=1">PDF' | sed -e 's/\?dl=1">PDF//g' | xargs -n1 wget -N | |
# HD Videos | |
# via: https://twitter.com/merowing_/status/474071685826883584 | |
curl https://developer.apple.com/videos/wwdc/2014/ | grep -iIoh 'http.*._hd_.*dl=1">HD' | sed -e 's/\?dl=1">HD//g' | xargs -n1 wget -N |