http://24ways.org/2009/make-your-mockup-in-markup
http://500px.com/
http://about.me/n3m0
http://ace-subido.github.com/css3-microsoft-metro-buttons/index.html
http://addyosmani.com/
http://amix.dk/blog/post/19588
http://androidniceties.tumblr.com/
http://ansible.github.com/index.html
http://apply.embed.ly/
http://appsandsecurity.blogspot.in/2011/04/rest-and-stateless-session-ids.html
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
wget https://github.com/downloads/github/hubot/hubot-2.2.0.tar.gz | |
tar zxvf hubot-*.tar.gz | |
cd hubot/ | |
vim Procfile | |
app: bin/hubot -a gtalk -n Hubot | |
vim package.json | |
{ | |
"name": "hosted-hubot", | |
"version": "2.2.0", |
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
# NVM | |
export NVM_HOME="$HOME/.nvm" | |
if [[ -f "$NVM_HOME/nvm.sh" ]]; then | |
source "$NVM_HOME/nvm.sh" | |
fi | |
# NVM TAB COMPLETION | |
if [[ -f "$NVM_HOME/bash_completion" ]]; then | |
source "$NVM_HOME/bash_completion" | |
fi |
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
http://t.co/1fWalynZ #nowplaying | |
http://t.co/RvC1kqkl | |
Dropbox Space Race! https://t.co/Fb8mMBQS | |
RT @verge: First strike: how tech's superpowers could start an ecosystem war http://t.co/I5pu18fg | |
RT @firefox: Firefox introduces new Social API and previews integration with Facebook http://t.co/wPrOEVfL | |
Just logged into my account and this is what Google Now came up with! #nexus7 http://t.co/zRibmAi8 | |
@leostatic Remember this? RT @hackaday: 8x8x8 LED cube and the board that drives it http://t.co/BR1mY2hw | |
RT @jjenzz: discovery of Sass placeholder selectors has just made my morning <3 how did I not know about these! http://t.co/K7qjkFMZ | |
RT @saurabhsahni: Geeks on a Plane India is Back: — 500 Startups’ Tech + Startup Tour. Feb 16-18 http://t.co/IOmInD46 | |
RT @pzerger: Microsoft patent application details head-mounted display used to augment live events http://t.co/R8wEn4RL <-- looks lik ... |
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> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="description" content="Cards"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Muzi Widget</title> | |
<link rel="stylesheet" href="css/style.css"> | |
<link rel="author" href="humans.txt"> | |
</head> |
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
<?php | |
function generateUrlSlug($string, $maxlen=0) | |
{ | |
$string = trim(preg_replace('/[^a-z0-9]+/', '-', strtolower($string)), '-'); | |
if ($maxlen && strlen($string) > $maxlen) { | |
$string = substr($string, 0, $maxlen); | |
$pos = strrpos($string, '-'); | |
if ($pos > 0) { | |
$string = substr($string, 0, $pos); | |
} |
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
module.exports = function(grunt){ | |
"use strict"; | |
/* Load grunt modules */ | |
require("matchdep").filterDev("grunt-*").forEach(grunt.loadNpmTasks); | |
/* Configuration file */ | |
var config = grunt.file.readJSON('config/config.json'); |
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
#Install PiAUISuite - https://github.com/StevenHickson/PiAUISuite | |
git clone git://github.com/StevenHickson/PiAUISuite.git | |
cd PiAUISuite/Install/ | |
./InstallAUISuite.sh | |
#http://blog.oscarliang.net/raspberry-pi-voice-recognition-works-like-siri/ | |
sudo apt-get install ffmpeg | |
#!/bin/bash | |
echo "Recording... Press Ctrl+C to Stop." |
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
# Used to work before OnePlus added Captcha | |
import requests | |
import string | |
import random | |
import time | |
import json | |
import re | |
mailinator_api_token = '' |
OlderNewer