- lib/db2jcc.jar
- lib/db2jcc_license_cu.jar
- Test.java
javac -cp "lib/*:." Test.java && java -cp "lib/*:." Tes
// Data | |
const source = { | |
"name" : "tom", | |
"age" : 12, | |
"sex" : "male", | |
"car" : false, | |
"house" : "" | |
}; | |
const target = { |
// ==UserScript== | |
// @name Redirect to mbasic facebook | |
// @namespace https://www.facebook.com/ | |
// @version 0.1 | |
// @description try to redirect to mbasic facebook | |
// @author Zeuxis Lo | |
// @match *://www.facebook.com/* | |
// @grant none | |
// @run-at document-start | |
// ==/UserScript== |
#!/bin/bash | |
# =========================================== | |
# Find output-device: mpv --audio-device=help | |
# =========================================== | |
IINA_CLI="/Applications/IINA.app/Contents/MacOS/iina-cli" | |
OUTPUT_DEVICE="coreaudio/AppleHDAEngineOutputDP:3,0,1,1:0:{0C41-C0C6-00000F4C}" | |
VOLUME=65 |
package main | |
import ( | |
"os" | |
"fmt" | |
"bufio" | |
"strings" | |
"strconv" | |
"time" | |
"math/rand" |
git branch new-branch-name origin/old-branch-name | |
git push origin --set-upstream new-branch-name | |
git push origin :old-branch-name |
{ | |
"dependencies": { | |
"async": "^0.9.0", | |
"cheerio": "^0.19.0", | |
"datauri": "^0.6.0", | |
"unirest": "^0.4.0" | |
} | |
} |
;(function() { | |
angular.module('zzzApp', ['ionic']).config(function($stateProvider, $urlRouterProvider) { | |
$stateProvider | |
.state('signin', { | |
url: '/signin', | |
templateUrl: 'template/signin.html', | |
controller: SignInController | |
}) | |
.state('home', { | |
url: '/home', |
#!/bin/bash | |
PREFIX=/usr/local/mysql | |
MYSQL_CONFIG=${PREFIX}/my.cnf | |
MYSQL_PORT=3306 | |
MYSQL_USERNAME="root" | |
MYSQL_PASSWORD="password" | |
MYSQLD_SAFE=${PREFIX}/bin/mysqld_safe |
#!/bin/sh | |
PREFIX=/usr/local/php | |
PHP_FPM_BIN=${PREFIX}/sbin/php-fpm | |
PHP_FPM_CONF=${PREFIX}/etc/php-fpm.user.conf | |
PHP_FPM_PID=${PREFIX}/pid/php-fpm.user.pid | |
PHP_OPTIONS="--fpm-config $PHP_FPM_CONF" |