3Dで唯ちゃん作ろうと思ったけど間に合わなかった。すみません。25日までに進捗あったら更新します。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 全てのコンテナを消す | |
sudo docker ps -a | grep Exit | awk '{print $1}' | sudo xargs docker rm | |
# 全てのイメージを消す | |
sudo docker rmi $(sudo docker images -q) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nmap <C-n> noop | |
nmap <C-p> noop | |
nmap h moveLeftTab | |
nmap j scrollDown | |
nmap k scrollUp | |
nmap l moveRightTab | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# デフォルトエディタをvimに変更 | |
sudo update-alternatives --set editor $(update-alternatives --list editor | grep 'vim.basic') | |
# パッケージリポジトリを日本ミラーサーバーに変更 | |
sudo sed -i'~' -E "s@http://(..\.)?(archive|security)\.ubuntu\.com/ubuntu@http://ftp.jaist.ac.jp/pub/Linux/ubuntu@g" /etc/apt/sources.list | |
# よく使うパッケージをインストール | |
sudo apt-get -y update | |
sudo apt-get -y install software-properties-common | |
sudo add-apt-repository -y ppa:git-core/ppa |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Sample Settings | |
map i <NOP> | |
map o <NOP> | |
map j <NOP> | |
map ; <NOP> | |
map t <NOP> | |
pagecmd * nmap l :TabFocusNext | |
pagecmd * nmap h :TabFocusPrev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a = document.createElement("script"); | |
a.setAttribute("src", "https://code.jquery.com/jquery-2.1.3.min.js"); | |
document.querySelector("body").appendChild(a); | |
array = jQuery(".sc-button-like").toArray(); | |
function click() { | |
setTimeout(function() { | |
console.log(array.pop()); | |
if (array.length > 0) { | |
b.pop().click(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Classic example grammar, which recognizes simple arithmetic expressions like | |
* "2*(3+4)". The parser generated from this grammar then computes their value. | |
*/ | |
start | |
= right:digits " plus " left:digits { | |
return right + left; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
?member-name? - ?title? (?illust-id?) ?page??[ページ]? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function testZoomProperty() { | |
var cssString = 'zoom: 1;'; | |
var elem = document.createElement('div'); | |
elem.style.cssText = cssString; | |
return elem.style.cssText === cssString; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
uncaught exception: Undefined index: tutorial_id (errno: 8) in /var/log/p12501/smarty/3c9fdce5ac63683ecd7c939652426522^c197b8c57dcdfaba6b94e214615592a9b029a472.file.list.tpl.php at line #222Undefined index: tutorial_id | |
in file: /var/log/p12501/smarty/3c9fdce5ac63683ecd7c939652426522^c197b8c57dcdfaba6b94e214615592a9b029a472.file.list.tpl.php line 222 | |
#0 /var/log/p12501/smarty/3c9fdce5ac63683ecd7c939652426522^c197b8c57dcdfaba6b94e214615592a9b029a472.file.list.tpl.php(222): _hx_error_handler(8, 'Undefined index...', '/var/log/p12501...', 222, Array) | |
#1 /home/z-masami-yonehara/xgree/ffr/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php(180): content_54324a19336be6_12827079(Object(Smarty_Internal_Template)) | |
#2 /home/z-masami-yonehara/xgree/ffr/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php(374): Smarty_Internal_TemplateBase->fetch('dungeon/support...', NULL, NULL, NULL, true) | |
#3 /home/z-masami-yonehara/xgree/ffr/frontend/ffr/app/FFR_Renderer_Smarty3.php(36): Smarty_Inter |