- The Pattern on the Stone - Hills
- Code - Petzold
- Haskell Programming From First Principles
- Parallel and Concurrent Programming in Haskell
javascript:document.body.contentEditable='true'; document.designMode='on'; void 0 |
**LEARNING** | |
http://cybrary.it/ | |
http://n0where.net/ | |
http://www.offensive-security.com/metasploit-unleashed | |
http://resources.infosecinstitute.com/ | |
http://www.windowsecurity.com/articles-tutorials/ | |
http://www.sans.org/reading-room/ | |
https://www.corelan.be/index.php/articles/ | |
http://opensecuritytraining.info/Training.html |
define_method :λ, -> *args, &block { block::(args) } | |
λ{λ{λ{λ{λ{λ{λ{λ{λ(λ{λ{λ{5}}},λ{λ{2}},λ{λ{4}},λ{λ{5}}){|i|p i}}}}}}}}} # 3 2 4 5 |
#!/usr/bin/env ruby | |
# encoding: UTF-8 | |
Dir['*'].each { |f| | |
File.rename(f, ((File.binread(f.to_s)[0x10..0x18].unpack('NN')*?x + ' ' + f) if File.extname(f)[/\.png/])) if f != $0 | |
} rescue Errno::ENOENT abort '[!] Run as admin.' |
puts (rand(1..3) == 3) && `system -s -f -t 0` || 'Click' |
#include <iostream> | |
#include <conio.h> | |
#include <string> | |
#define KEY_UP 72 | |
#define KEY_DOWN 80 | |
#define KEY_LEFT 75 | |
#define KEY_RIGHT 77 | |
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32) && !defined(__CYGWIN__) |
_ = $$ / $$ # 1 | |
__ = _ - _ # 0 | |
@_ = _ + _ # 2 | |
$_ = @_ + _ # 3 | |
$__ = @_ + $_ # 5 | |
$-_ = $__ * $_ # 15 | |
@__ = '' << $-_ * ($__ + $_) + @_ # z | |
$___ = '' << $-_ * $__ - $__ << $-_ * ($__ + @_) << @__ << @__ # Fizz | |
@___ = '' << $-_ * $__ - $_ * $_ << $-_ * ($__ + $_) - $_ << @__ << @__ # Buzz |
document.onclick = () => | |
document.querySelectorAll('.irc_mi').forEach((e) => e.parentNode.href = e.src); |
for (let a=[1,2,3][Symbol.iterator](),b; !(b=a.next()).done;) { | |
console.log(b.value); | |
} |