JSFiddle Example: http://jsfiddle.net/sFPG6/
Telnet telent example.com 80 GET / [enter]
curl --data "title=web200" http://requestb.in/16rn0ua1
mkdir vt | |
cd vt | |
ls -alh | |
git init | |
ls -ahl | |
cd .git/ | |
ls | |
rm -rf hooks | |
cd vt/.git/ | |
tree |
JSFiddle Example: http://jsfiddle.net/sFPG6/
Telnet telent example.com 80 GET / [enter]
curl --data "title=web200" http://requestb.in/16rn0ua1
cd tcnj/ | |
ls | |
pwd | |
~/gitscripts/historytail | |
git init | |
touch README | |
nano README | |
git status | |
git add README | |
git status |
ready do | |
sitemap.resources.group_by {|p| p.data["category"] }.each do |category, posts| | |
proxy "/category/#{category}.html", "category.html", | |
:locals => { :category => category, :posts => posts }, :ignore => true | |
end | |
end |
git init | |
ls -lah | |
touch a b c | |
ls | |
git status | |
git add a | |
git status | |
git add b | |
git status | |
git reset b |
gpg --verify < message.txt | |
gpg: Signature made Fri Sep 13 09:27:02 2013 JST using RSA key ID 1FC730C1 | |
gpg: Good signature from "Gavin Andresen (CODE SIGNING KEY) <[email protected]>" | |
gpg: WARNING: This key is not certified with a trusted signature! | |
gpg: There is no indication that the signature belongs to the owner. | |
Primary key fingerprint: 2664 6D99 CBAE C9B8 1982 EF60 29D9 EE6B 1FC7 30C1 |
decompress="perl -MCompress::Zlib -e 'undef $/; print uncompress(<>)'"
perl
- Execute the Perl binary-MCompress::Zlib
- Load the Zlib Perl module-e '...'
- Execute the specified Perl codeundef $/;
- Undefine the input record separator to read input to the end<>
- Read from standard inputuncompress(...)
- Use uncompress the input using Zlib