I hereby claim:
- I am devgeeks on github.
- I am devgeeks (https://keybase.io/devgeeks) on keybase.
- I have a public key whose fingerprint is 5D91 5A41 7999 815E BDCD 2516 F779 3932 8844 F59F
To claim this, I am signing this object:
/* | |
* object.watch polyfill | |
* | |
* 2012-04-03 | |
* | |
* By Eli Grey, http://eligrey.com | |
* Public Domain. | |
* NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. | |
*/ |
window.requestFileSystem(LocalFileSystem.TEMPORARY, 0, gotFS, fail); | |
function fail(error) { | |
console.log(error) | |
} | |
function gotFS(fileSystem) { | |
fileSystem.root.getDirectory("data", {create: true, exclusive: false}, gotDir, fail); | |
} |
{ | |
"name": "MyExampleApp", | |
"version": "0.1.0", | |
"dependencies": { | |
"jquery": "http://code.jquery.com/jquery-1.9.1.min.js" | |
} | |
} |
#!/usr/bin/env node | |
(function() { | |
var projectName = 'SpiderOak', | |
fs = require('fs'), | |
path = require('path'), | |
res = path.join('.', 'www', 'res', 'icon'), | |
androidDest = path.join('.', 'platforms', 'android', 'res'), | |
iOSDest = path | |
.join('.', 'platforms', 'ios', projectName, 'Resources', 'icons'); | |
/* | |
* Licensed to the Apache Software Foundation (ASF) under one | |
* or more contributor license agreements. See the NOTICE file | |
* distributed with this work for additional information | |
* regarding copyright ownership. The ASF licenses this file | |
* to you under the Apache License, Version 2.0 (the | |
* "License"); you may not use this file except in compliance | |
* with the License. You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 |
input[type="password"], input[type="text"] { | |
position:relative; | |
top: -10000px; | |
-webkit-transform: translate3d(0, 9980px, 0); // might have to tweak 9980 to suit your input | |
} |
I hereby claim:
To claim this, I am signing this object:
<?xml version="1.0" encoding="UTF-8"?> | |
<!-- config.xml reference: https://build.phonegap.com/docs/config-xml --> | |
<widget xmlns = "http://www.w3.org/ns/widgets" | |
xmlns:gap = "http://phonegap.com/ns/1.0" | |
id = "org.devgeeks.canvas2imagedemobuild" | |
version = "1.0.0"> | |
<name>Canvas2ImageDemoBuild</name> |
body { | |
font-family: Helvetica; | |
font-size: 100%; | |
background-color: #fff; | |
color: #222; | |
} | |
.app { | |
position: absolute; | |
top: 0; |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="A simple mobile page with header, main content, and a footer"> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width" /> | |
<meta name="msapplication-tap-highlight" content="no" /> | |
<meta name="format-detection" content="telephone=no" /> | |
<title>A simple mobile page with header, main content, and a footer</title> | |
<style id="jsbin-css"> |