I hereby claim:
- I am webcoderz on github.
- I am webcoderz (https://keybase.io/webcoderz) on keybase.
- I have a public key ASAeIDnb7WKw118iG053VtsurCdISrxQLnTv7oaAoSVFoAo
To claim this, I am signing this object:
| lat | lon | |
|---|---|---|
| 45.5202471 | -122.6741949 | |
| 43.1408157 | -80.2631733 | |
| 47.6038321 | -122.3300624 | |
| 45.5202471 | -122.6741949 | |
| 28.5421109 | -81.3790304 | |
| 43.6534817 | -79.3839347 | |
| 40.7896239 | -73.9598939 | |
| 43.1408157 | -80.2631733 | |
| 43.6534817 | -79.3839347 |
| # Solves a randomized 8-puzzle using A* algorithm with plug-in heuristics | |
| import random | |
| import math | |
| _goal_state = [[1,2,3], | |
| [4,5,6], | |
| [7,8,0]] | |
| def index(item, seq): |
I hereby claim:
To claim this, I am signing this object:
| import os | |
| def split(filehandler, delimiter=',', row_limit=10000, | |
| output_name_template='output_%s.csv', output_path='.', keep_headers=True): | |
| """ | |
| Splits a CSV file into multiple pieces. | |
| A quick bastardization of the Python CSV library. | |
| Arguments: |
| #!/bin/bash | |
| # PoC Email Account Checker - Checks for emails that don't exist so they can be (re)created | |
| # Use Chrome's Network tab to view the URL that makes these type of requests. | |
| # This is just a PoC, you can add in other email services along with other domains the current ones provide. | |
| # URLs have been working all night, but might need to be updated in the future. | |
| # | |
| # Usage: ./account_checker.sh <email_list> | |
| function google() { | |
| # Post data |
| 0-mail.com | |
| 0815.ru | |
| 0clickemail.com | |
| 0wnd.net | |
| 0wnd.org | |
| 10minutemail.com | |
| 20minutemail.com | |
| 2prong.com | |
| 30minutemail.com | |
| 3d-painting.com |
| <# | |
| .SYNOPSIS | |
| This script demonstrates the ability to capture and tamper with Web sessions. | |
| For secure sessions, this is done by dynamically writing certificates to match the requested domain. | |
| This is only proof-of-concept, and should be used cautiously, to demonstrate the effects of such an attack. | |
| Function: Interceptor | |
| Author: Casey Smith, Twitter: @subTee | |
| License: BSD 3-Clause |
| from __future__ import division | |
| import numpy | |
| import matplotlib.pyplot as pyplot | |
| import scipy.integrate | |
| import random | |
| USER = "Aaron Abraham" | |
| USER_ID = "ztjd74" | |
| t_half_rad = 20.8 #initial conditions |
| echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc | |
| . ~/.bashrc | |
| mkdir ~/local | |
| mkdir ~/node-latest-install | |
| cd ~/node-latest-install | |
| curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
| ./configure --prefix=~/local | |
| make install # ok, fine, this step probably takes more than 30 seconds... | |
| curl https://www.npmjs.org/install.sh | sh |