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
-----BEGIN GEEK CODE BLOCK----- | |
Version: 3.1 | |
GCS d- s+:+ a+42 C++++$ UBL++++$ !P L++@ E-- W+++$ N++ o-- K? W++ | |
O? M++ V? PS+++ PE++ Y PGP(+++) t++ 5 X R tv b+ DI-- D G c++ h-- | |
r->++ y++++(*) | |
------END GEEK CODE BLOCK------ |
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
#!/usr/bin/env python | |
# | |
# Your previous Plain Text content is preserved below: | |
# | |
# This is just a simple shared plaintext pad, with no execution capabilities. | |
# | |
# When you know what language you'd like to use for your interview, | |
# simply choose it from the dropdown in the top bar. | |
# |
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
license: dbad | |
border: no |
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> | |
<meta charset="utf-8"> | |
<style> | |
body { | |
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | |
width: 960px; | |
height: 500px; | |
position: relative; | |
} |
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/bash | |
#run this, you won't be sorry. | |
command -v brew >/dev/null 2>&1 || { echo >&2 "install homebrew and try again..."; exit 1; } | |
brew install fortune | |
brew install ponysay | |
echo "fortune | ponysay" >> ~/.profile | |
echo "alias pwnies=\"fortune | ponysay\"" >> ~/.profile |
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
### COLORS ### | |
alias ls='ls -G' | |
export CLICOLOR=1 | |
export LSCOLORS=Gxfxcxdxbxegedabagacad | |
################## | |
### MY ALIASES ### | |
################## |
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
──> HOMEBREW_MAKE_JOBS=1 VERBOSE=1 brew install wireshark | |
==> Downloading http://wiresharkdownloads.riverbed.com/wireshark/src/wireshark-1.10.2.tar.bz2 | |
Already downloaded: /Library/Caches/Homebrew/wireshark-1.10.2.tar.bz2 | |
tar xf /Library/Caches/Homebrew/wireshark-1.10.2.tar.bz2 | |
==> ./configure --disable-dependency-tracking --prefix=/usr/local/Cellar/wireshark/1.10.2 --with-gnutls --with-ssl --disable-wireshark --disable-gtktest | |
./configure --disable-dependency-tracking --prefix=/usr/local/Cellar/wireshark/1.10.2 --with-gnutls --with-ssl --disable-wireshark --disable-gtktest | |
checking build system type... x86_64-apple-darwin12.5.0 | |
checking host system type... x86_64-apple-darwin12.5.0 | |
checking target system type... x86_64-apple-darwin12.5.0 | |
checking for a BSD-compatible install... /usr/bin/install -c |
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
/* | |
* Author: Ben Glasser | |
* Date: 11/06/12 | |
* This is avery simple c++ program which converts Hex in binary | |
* and binary to Hex | |
*/ | |
#include <iostream> | |
#include <string> | |
using namespace std; |