npm -ginstall weinre
weinre --boundHost 172.20.10.3 --httpPort 9090
<div class="slide-wrap center"> | |
<label data-text="밀어서 잠금해제">밀어서 잠금해제</label> | |
<input type="range" min="0" max="100" value="0"/> | |
</div> | |
<div class="slide-wrap center"> | |
<label data-text="밀어서 잠금해제">slide to unlock</label> | |
<input type="range" min="0" max="100" value="0"/> | |
</div> |
{ | |
"directory": "app/bower_components", | |
"json": "bower.json" | |
} |
<!doctype html> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<title>Mocha Spec Runner</title> | |
<link rel="stylesheet" href="lib/mocha/mocha.css"> | |
</head> | |
<body> | |
<div id="mocha"></div> | |
<script src="lib/mocha/mocha.js"></script> |
require([ | |
// Application. | |
"app", | |
// Main Router. | |
"router" | |
], | |
function(app, Router) { |
server { | |
listen 80; | |
server_name www.jnw.io jnw.io; | |
root /Users/azamara/projects/jnw.io; | |
index index.html index.htm; | |
location / { | |
try_files $uri $uri/ /index.html; |
server { | |
listen 80; | |
server_name phpmyadmin.jnw.io; | |
root /home/azamara/projects/phpMyAdmin-4.0.8; | |
index index.html index.htm index.php; | |
location / { | |
try_files $uri $uri/ /index.html; | |
} |
# /etc/security/limits.conf | |
* soft nofile 999999 | |
* hard nofile 999999 | |
root soft nofile 999999 | |
root hard nofile 999999 | |
=========================================================== | |
# /etc/sysctl.conf | |
# sysctl for maximum tuning |
@RunWith(GrinderRunner) | |
class Test1 { | |
def rootUrl= "http://agpushmedium-arqtest.rhcloud.com" | |
static GTest test; | |
static HTTPRequest request; | |
// This method is executed once per a process. | |
@BeforeProcess |
#!/usr/bin/env ruby -E utf-8 | |
# merge_asana_into_omnifocus.rb | |
# Hilton Lipschitz | |
# http://www.hiltmon.com | |
# Use and modify freely, attribution appreciated | |
# Script to import Asana projects and their tasks into | |
# OmniFocus and keep them up to date from Asana. |