dword:00000000 に設定しただけだとDropboxが値を dword:00000001 に戻していつの間にかナビゲーションツリーに復活する。 {E31EA727-12ED-4702-820C-4B6445F28E1A} の右クリックメニュー「アクセス許可」で全部拒否にしとけば良さそう。
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
XBShift := 0 | |
^F13:: | |
Suspend On | |
Pause On | |
return | |
^+F13:: | |
Suspend Off | |
Pause Off |
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
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Power] | |
"HiberbootEnabled"=dword:00000000 |
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
@echo off | |
openfiles > NUL 2>&1 | |
if %ERRORLEVEL% equ 0 ( | |
@echo on | |
rem Enable Function Discovery Provider Host | |
sc config fdPHost start=auto | |
sc start fdPHost | |
rem Enable Function Discovery Resource Publication | |
sc config FDResPub start=auto |
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
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Rolling SUSHI</title> | |
<style type="text/css"> | |
html,body { padding: 0; margin: 0; } | |
#sushi { | |
text-align: center; | |
position: absolute; |
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
String.fromCharCode(115,97,109,117,105) |
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
#!/bin/sh | |
url=http://ncode.syosetu.com/txtdownload/dlstart/ncode | |
id=651272 | |
for i in `seq 1 242` | |
do | |
f=`printf %03d $i` | |
wget "$url/$id/?no=$i&code=utf-8&hankaku=0" -O $f.txt |
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
compdef _gulp gulp | |
function _gulp () { | |
local -a task | |
if [ -f ./gulpfile.js ]; then | |
task=(`cat gulpfile.js | grep "task('" | awk -F\' '{ print $2 }' | tr '\n' ' '`) | |
compadd $task | |
else | |
zle -M 'No gulpfile found' | |
fi | |
} |
NewerOlder