Currently there are ZERO browsers on an iOS device for developers that want to use their iOS device as a portable development environment.
Build a simple iOS based (Universal) browser that compiles in support for the Web Inspector.
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>test</title> | |
<link rel="stylesheet" href="stylesheets/screen.css"> | |
</head> | |
<body> | |
<div class="container c1"></div> | |
<div class="container c2"></div> |
http://jsfiddle.net/GuQaV/show/ |
var parser = document.createElement('a'); | |
parser.href = "http://example.com:3000/pathname/?search=test#hash"; | |
parser.protocol; // => "http:" | |
parser.hostname; // => "example.com" | |
parser.port; // => "3000" | |
parser.pathname; // => "/pathname/" | |
parser.search; // => "?search=test" | |
parser.hash; // => "#hash" | |
parser.host; // => "example.com:3000" |
/*! | |
Copyright (c) <2012> <Arieh Glazer> | |
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | |
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | |
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE |
At some point in the past, I've decided to follow you on Twitter or any other social network, because you appeared to be a person whose postings I might be interested in.
But recently you noticed me unfollowing you.
Now you're confused/sad/angry. Don't be. Because here are the three simple rules I adhere to.
# Fix Github Pages | |
# Usage: fgp YOUR-GITHUB-PROJECTS-SSH-REPO-URL | |
function fgp { | |
git clone $1 fixit | |
cd fixit | |
git checkout gh-pages | |
git push origin :gh-pages | |
git push origin --all | |
cd .. | |
rm -Rf fixit |
Below find the "reverse recruit" template. I'm using it. So can you!
===
Hi!
I'm not currently looking for a job as I'm pretty happy at my current job.
However Mozilla is hiring into a variety of positions. Mozilla also has
var async = require('async'); // npm install async | |
async.parallel({ | |
foo: function(callback){ | |
http.get({host:'localhost', port:9999, path:'/foo'}, function (res) { | |
res.on('data', function (data) { | |
callback(null, JSON.parse(data.toString())); | |
}); | |
}) | |
}, | |
bar: function(callback){ |