Zsh
// Zsh起動
$ zsh
// リポジトリをclone
$ git clone --recursive https://github.com/sorin-ionescu/prezto.git "${ZDOTDIR:-$HOME}/.zprezto"
// 既存の設定ファイルを退避(必要な場合)
Zsh
// Zsh起動
$ zsh
// リポジトリをclone
$ git clone --recursive https://github.com/sorin-ionescu/prezto.git "${ZDOTDIR:-$HOME}/.zprezto"
// 既存の設定ファイルを退避(必要な場合)
<?php | |
$api_token = 'YOUR_API_TOKEN'; | |
$ch = curl_init(); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); | |
curl_setopt($ch, CURLOPT_POST, 1); | |
curl_setopt($ch, CURLOPT_URL, 'https://www.toggl.com/api/v8/time_entries/start'); | |
curl_setopt($ch, CURLOPT_USERPWD, $api_token . ": api_token"); | |
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json')); |
#!/bin/sh | |
DBNAME="" #データベース名 | |
DBUSER="" #データベースユーザ名 | |
DBPASS="" #データベースパス | |
DBHOST="" #データベースホスト | |
DBPREFIX="" #テーブルのプレフィックス ex. wp_ | |
# ############ |
色々使えるUFO画像
/** | |
* User: turusuke | |
* Date: 13/06/16 | |
* version: 0.1 | |
*/ | |
(function(window) { | |
if (!createjs || !createjs.Point) { | |
return; | |
} |