I hereby claim:
- I am cvonkleist on github.
- I am cvk (https://keybase.io/cvk) on keybase.
- I have a public key whose fingerprint is E35D 9C97 586E 0A26 C1A3 E1E2 6C35 1436 B89F AE48
To claim this, I am signing this object:
require "json" | |
require "net/http" | |
url = "https://mainnet.era.zksync.io" | |
pp JSON.parse(Net::HTTP.post(URI.parse(url), {"method": "eth_blockNumber", "params": [], "id":1, "jsonrpc":"2.0"}.to_json, "Content-Type" => "application/json").body) | |
# => {"jsonrpc"=>"2.0", "result"=>"0x22d9d5d", "id"=>1} |
# show ip address for ssh host, with zsh completion for hostname | |
_sship () { ssh -G $1 | awk '/^hostname/ {print $2}' } | |
compdef _sship=ssh | |
# Usage | |
# ===== | |
# Add the above two lines to the bottom of your ~/.zshrc file. | |
# | |
# Use it like this on the commandline: |
<?php | |
@include_once('patches.php'); // This has some custom patches for our Archon. | |
require_once('includes.inc.php'); | |
require_once("packages/digitallibrary/lib/file.inc.php"); | |
$query = "select id, length(FileContents) as fcsize, length(FilePreviewLong) as fplsize, length(FilePreviewShort) as fpssize from tblDigitalLibrary_Files where id=?"; // and (length(FileContents)=length(FilePreviewLong) or length(FileContents)=length(FilePreviewShort))"; | |
$prep = $_ARCHON->mdb2->prepare($query, array('integer'), MDB2_PREPARE_RESULT); | |
function needsResizing($id) { | |
global $prep; |
<?php | |
// This class has functionality which can be used by many other classes. | |
class CommonFunctionalityClass { | |
function doSomethingCommon() { | |
$this->supportingFunction(); | |
} | |
function supportingFunction() { | |
echo(“hi”); | |
} |
I hereby claim:
To claim this, I am signing this object:
line_starts = [] | |
filename = "/usr/share/dict/words" | |
# preprocess | |
File.open(filename, "r") do |input| | |
until input.eof? | |
pos = input.pos | |
input.readline | |
line_starts << pos |
line_starts = [] | |
filename = "/usr/share/dict/words" | |
# preprocess | |
File.open(filename, "r") do |input| | |
until input.eof? | |
pos = input.pos | |
input.readline | |
line_starts << pos |
startup_message off | |
defflow auto | |
defscrollback 5000 | |
altscreen on | |
autodetach on | |
msgwait 3 | |
#change the hardstatus settings to give an window list at the bottom of the | |
#screen, with the time and date and with the current window highlighted | |
defutf8 on |
- the book | |
- web application hacker's handbook (http://amzn.com/1118026470) | |
- hacking challenges and practice | |
- hack this site (http://hackthissite.org) | |
- damn vulnerable web app (http://dvwa.co.uk) | |
- capture-the-flag competitions (http://capture.thefl.ag) | |
- local groups | |
- swampsec (http://swampsec.org) | |
- uf hacking club (http://ufhack.org) | |
- gainesville hackerspace* (http://skillhouse.org) |
UF Hacking Club | |
Gator Hacking Group | |
Computer Hacking Gators | |
UF Student Information Security Team | |
Computer Security Club |