The current version will be found at https://gist.github.com/mike-bourgeous/2be6c8900bf624887fe5fee4f28552ef
Please make all comments, stars, forks, etc. there.
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <openssl/x509.h> | |
| #include <openssl/hmac.h> | |
| void | |
| hmac_sha256( | |
| const unsigned char *text, /* pointer to data stream */ |
| #include <assert.h> | |
| #include <sys/stat.h> | |
| #include <stdint.h> | |
| #include <libgen.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| int main(int argc, char * argv[]) { |
| #!/bin/sh | |
| DEST_DIR="/some/other/dir" | |
| function linker() { # create simlink to downloaded files, rather than copy to final directory | |
| if [ ! -d "$DEST_DIR/$1" ]; then mkdir "$DEST_DIR/$1"; fi | |
| cd "$1" | |
| for F in *; do | |
| if [ -d "$F" ]; then linker "$1/$F"; fi | |
| ln -s "$TR_TORRENT_DIR/$1/$F" "$DEST_DIR/$1" |
| set -ex | |
| [ "$ACTION" = build ] || exit 0 | |
| [ "$BUILD_VARIANTS" = "normal" ] || exit 0 | |
| [ "$CONFIGURATION" = "Release" ] || exit 0 | |
| dir="$TEMP_FILES_DIR/disk" | |
| dmg="$HOME/Desktop/$PROJECT_NAME.dmg" | |
| rm -rf "$dir" |
The current version will be found at https://gist.github.com/mike-bourgeous/2be6c8900bf624887fe5fee4f28552ef
Please make all comments, stars, forks, etc. there.
| machine github.com | |
| login technoweenie | |
| password SECRET | |
| machine api.github.com | |
| login technoweenie | |
| password SECRET |
| from hashlib import sha1 | |
| import numpy | |
| arr=numpy.zeros((256,256,4)) | |
| sha1(arr) |
| # INSTALL INSTRUCTIONS: save as ~/.gdbinit | |
| # | |
| # DESCRIPTION: A user-friendly gdb configuration file. | |
| # | |
| # REVISION : 7.3 (16/04/2010) | |
| # | |
| # CONTRIBUTORS: mammon_, elaine, pusillus, mong, zhang le, l0kit, | |
| # truthix the cyberpunk, fG!, gln | |
| # | |
| # FEEDBACK: https://www.reverse-engineering.net |
| package main | |
| import ( | |
| "crypto/tls" | |
| "crypto/x509" | |
| "fmt" | |
| "io" | |
| "log" | |
| ) |
| package main | |
| import ( | |
| "bufio" | |
| "log" | |
| "net/rpc" | |
| "os" | |
| ) | |
| func main() { |