This is a requirement for brew in the next step. You can install XCode and then install Command Line Tools through the XCode preferences, or you can install just the Command Line Tools.
$ xcode-select --install
This is a requirement for brew in the next step. You can install XCode and then install Command Line Tools through the XCode preferences, or you can install just the Command Line Tools.
$ xcode-select --install
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
<?xml version="1.0"?> | |
<root><!-- | |
<item> | |
<name>Backquote to CapsLock and Escape to Backquote</name> | |
<identifier>private.swap_space_and_tab</identifier> | |
<autogen>__KeyToKey__ KeyCode::ESCAPE, KeyCode::BACKQUOTE</autogen> | |
<autogen>__KeyToKey__ KeyCode::BACKQUOTE, KeyCode::CAPSLOCK</autogen> | |
</item> | |
<item> | |
<name>Switch Input Source</name> |
{ | |
"name": "oauth-shares", | |
"description": "oauth twitter and flickr shares integration", | |
"version": "0.0.1", | |
"private": true, | |
"dependencies": { | |
"express": "3.x", | |
"oauth": "0.9.x" | |
} | |
} |
var express = require('express'); | |
var app = express(); | |
app.use( express.cookieParser() ); | |
app.use( express.session( { secret: 'blahblahblah' } ) ); | |
var OAuth= require('oauth').OAuth; |
$ time node upload.js | |
Error: null | |
Body: <?xml version="1.0" encoding="utf-8" ?> | |
<rsp stat="ok"> | |
<photoid>7735964772</photoid> | |
</rsp> | |
real 0m5.517s | |
user 0m0.106s |
.ui-dialog-background { | |
opacity: 0.5; | |
display: block !important; | |
-webkit-transition: opacity 0.5s ease-in; | |
} | |
.ui-dialog-background.pop.in { | |
opacity: 1; | |
-webkit-transition: opacity 0.5s ease-in; | |
} |
/* | |
Node.js, express, oauth example using Twitters API | |
Install Node.js: | |
curl -0 http://nodejs.org/dist/v0.6.11/node-v0.6.11.tar.gz | |
tar -zxf node-v0.6.11.tar.gz | |
cd node-v0.6.11 | |
./configure | |
make | |
make install |
/** | |
* Global Reset of all HTML Elements | |
* | |
* Resetting all of our HTML Elements ensures a smoother | |
* visual transition between browsers. If you don't believe me, | |
* try temporarily commenting out this block of code, then go | |
* and look at Mozilla versus Safari, both good browsers with | |
* a good implementation of CSS. The thing is, all browser CSS | |
* defaults are different and at the end of the day if visual | |
* consistency is what we're shooting for, then we need to |
node_modules | |
*.swp |