by Angel Leon. March 17, 2015;
Last update on December 14, 2023
Updated on February 27, 2023
Updated August 29, 2019.
// Example | |
var x = [1, 2, 3, 4, 5] // [1, 2, 3, 4, 5] | |
var y = [1, 1, 2, 3, 5] // [1, 1, 2, 3, 5] | |
var z = x - y // [0, 1, 1, 1, 0] | |
x[ x % 2 != 0 ] = x + 1 // [2, 2, 4, 4, 6] | |
y[ y > 2 * z ] = y * y // [1, 1, 2, 9, 25] | |
z[ x > 2 && x < 6 ] = 0 // [0, 1, 0, 0, 0] |
import numpy as np | |
import pylab as pl | |
from numpy import fft | |
def fourierExtrapolation(x, n_predict): | |
n = x.size | |
n_harm = 10 # number of harmonics in model | |
t = np.arange(0, n) | |
p = np.polyfit(t, x, 1) # find linear trend in x | |
x_notrend = x - p[0] * t # detrended x |
#!/bin/sh | |
# | |
# Iconizer shell script by Steve Richey ([email protected]) | |
# | |
# This is a simple tool to generate all necessary app icon sizes and the JSON file for an *EXISTING* Xcode project from one file. | |
# To use: specify the path to your vector graphic (PDF format) and the path to your Xcode folder containing Images.xcassets | |
# Example: sh iconizer.sh MyVectorGraphic.pdf MyXcodeProject | |
# | |
# Requires ImageMagick: http://www.imagemagick.org/ |
On a recent project, I ran into an issue with Python Selenium webdriver. There's no easy way to open a new tab, grab whatever you need and return to original window opener.
Here's a couple people who ran into the same complication:
So, after many minutes (read about an hour) of searching, I decided to do find a quick solution to this problem.
""" | |
Hinton diagrams in matplotlib. | |
A Hinton diagram is useful for visualizing a matrix of signed weights. | |
In the diagram, each matrix element is represented by a square whose | |
color indicates the sign and whose area represents the magnitude. | |
""" | |
import matplotlib.patches as mpatches |
Key | Mac | Windows | Linux | Notes | |
---|---|---|---|---|---|
rbKeyUp | 126 | 26 | 103 | ||
rbKeyDown | 125 | 28 | 108 | ||
rbKeyLeft | 123 | 25 | 105 | ||
rbKeyRight | 124 | 27 | 106 | ||
rbKeyBackspace | 117 | 8 | 14 | ||
rbKeyEnter | 76 | * | 28 | ||
rbKeyHome | 115 | 36 | 102 | ||
rbKeyEnd | 119 | 35 | 107 | ||
rbKeyPageDown | 121 | 34 | 109 |
from multiprocessing.pool import ThreadPool | |
import logging, os, threading | |
from StringIO import StringIO | |
import boto.s3 | |
logger = logging.getLogger('s3upload') | |
class MultiPartUploader: | |
upload_part = 0 |
;SMBDIS.ASM - A COMPREHENSIVE SUPER MARIO BROS. DISASSEMBLY | |
;by doppelganger ([email protected]) | |
;This file is provided for your own use as-is. It will require the character rom data | |
;and an iNES file header to get it to work. | |
;There are so many people I have to thank for this, that taking all the credit for | |
;myself would be an unforgivable act of arrogance. Without their help this would | |
;probably not be possible. So I thank all the peeps in the nesdev scene whose insight into | |
;the 6502 and the NES helped me learn how it works (you guys know who you are, there's no |
As configured in my dotfiles.
start new:
tmux
start new with session name: