This file contains hidden or 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
javascript:(function(){%20function%20g(e){return%20document.getElementById(e);};%20var%20s="%E6%9B%B8%E5%90%8D\n"%20+%20g("btAsinTitle").firstChild.data%20+"\n%E8%91%97%E8%80%85\n"%20+g("btAsinTitle").parentNode.nextSibling.nextSibling.firstChild.data%20+"\n%E7%99%BA%E8%A1%8C%E8%80%85\n"%20+g("SalesRank").parentNode.childNodes[3].childNodes[1].data.trim().split("%20")[0]%20+"\nISBN\n"%20+g("SalesRank").parentNode.childNodes[5].childNodes[1].data.trim()%20+"\n%E5%8D%98%E4%BE%A1\n"%20+g("actualPriceValue").childNodes[0].childNodes[0].data.trim().replace(/.*(\d),(\d\d\d).*/,"$1$2")%20+"\n%E7%99%BA%E8%A1%8C%E5%B9%B4\n"%20+g("SalesRank").parentNode.childNodes[3].childNodes[1].data.match(/\d+/)[0];%20alert(s);%20})(); |
This file contains hidden or 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
robocopy "%home%" "\\nas" /S /R:0 |
This file contains hidden or 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
from fabric.api import task | |
from envassert import file, process, package, port | |
@task | |
def apache2(): | |
assert package.installed("apache2") | |
assert service.is_enabled("apache2") | |
assert service.is_up("apache2") |
This file contains hidden or 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
ssh src_host 'cat file' | ssh dst_host 'cat > file' |
This file contains hidden or 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/bash | |
OK=0 | |
WARNING=1 | |
CRITICAL=2 | |
UNKNOWN=3 | |
while test -n "$1"; do | |
case "$1" in | |
--interface|-i) |
This file contains hidden or 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
<Directory /var/www/> | |
AuthType Digest | |
AuthName <realm> | |
AuthDigestDomain <path> | |
AuthUserFile <htdigest> | |
Order deny,allow | |
Deny from all | |
Allow from <ipaddress> |
This file contains hidden or 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/bash -e | |
exec > >(tee >(logger -t "user-data")) 2> >(tee >(logger -t "user-data: ERROR") >&2) | |
echo user-data: BEGIN | |
date '+%Y-%m-%d %H:%M:%S' | |
dd if=/dev/zero of=/swap bs=1M count=1024 | |
mkswap /swap | |
swapon /swap | |
echo "/swap none swap defaults 0 0" | tee -a /etc/fstab | |
echo "Asia/Tokyo" > /etc/timezone | |
echo LC_ALL=\"en_US.UTF-8\" | tee -a /etc/default/locale |
This file contains hidden or 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
日本語 | |
重要:お客様がiPhone、iPadまたはiPod touch(以下「iOSデバイス」といいます)をご使用になることで、お客様は、以下のAppleの定める各条項に基づく拘束を受けることに同意されたことになります。 | |
A. Apple iOSソフトウェア使用許諾契約 | |
B. Appleからの通知について | |
Apple Inc. | |
iOSソフトウェア使用許諾契約 | |
シングルユースライセンス |
This file contains hidden or 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
This app[1] retrieves all the name, address, phone number, e-mail address from all the phone which the app is installed. This app discloses those private, confidential or not intend to be publicly accessible information to all the users of the app. | |
The user of this apps can search persons' address and phone number easily by querying using name or e-mail address. | |
The developer of the app says[2][3] this app is now fetching all of address book in which this app is installed, and they are now adding to the developer's databases. | |
The app violates the Content Policy: Personal and Confidential Information. also the app may be used in order to do Illegal Activities and Hate Speech. | |
[1] https://play.google.com/store/apps/details?id=info.jigensha.whitepage |
This file contains hidden or 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
# http://codezine.jp/article/detail/4830 | |
# cat /proc/cpuinfo | grep "model name" | |
model name : Intel(R) Core(TM)2 Duo CPU E6850 @ 3.00GHz | |
model name : Intel(R) Core(TM)2 Duo CPU E6850 @ 3.00GHz | |
# cat /proc/meminfo | grep MemTotal | |
MemTotal: 2015528 kB | |
# cat /etc/redhat-release | |
CentOS release 5.3 (Final) | |
# uname -a | |
Linux host 2.6.18-128.el5 #1 SMP Wed Dec 17 11:41:38 EST 2008 x86_64 x86_64 x86_64 GNU/Linux |