I hereby claim:
- I am diezguerra on github.
- I am saul (https://keybase.io/saul) on keybase.
- I have a public key whose fingerprint is 41CC 20BC 641C 0215 84F8 5736 2F7D 9259 08E9 7490
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Subject: CS books Date: Tue, 25 Feb 2014 14:19:21 -0500
Here's a random list of books I've read, that I believe will give you an edge and will fill some CS gaps.
| # 23 8-18 * * 1-5 curl -L tenwar.com/watching | ruby >/dev/null 2>&1 | |
| require('Open3') | |
| if rand(1...10) > 9 | |
| osa_script = <<'End' | |
| activate application "Safari" | |
| delay 2 |
| import numpy as np | |
| arr = np.arange(1, 26).reshape((5, 5)) | |
| arr2 = np.arange(1, 26).reshape((5, 5)) | |
| def rot90(arr): | |
| for circle in range(len(arr) // 2): | |
| for item in range(0, len(arr) - 1 - 2 * circle): |
| curl "http://www.ardemagazine.com/arde/wp-content/uploads/2014/04/1sNE1eX.jpg" > ~/Downloads/caged.jpg | |
| osascript -e "tell application \"System Events\" to set picture of every desktop to \"~/Downloads/caged.jpg\"" |
| set nocompatible | |
| filetype off | |
| set shell=bash | |
| set rtp+=~/.vim/bundle/vundle | |
| call vundle#rc() | |
| Bundle 'gmarik/vundle' | |
| Bundle 'kien/ctrlp.vim' | |
| Bundle 'alfredodeza/khuno.vim' | |
| Bundle 'tpope/vim-commentary' | |
| Bundle 'tpope/vim-surround' |
| (defn create-power | |
| "Takes a positive power-of implementation and returns a function that uses | |
| it plus the logic for y==0 and y<0" | |
| [implementation] | |
| (fn [x y] | |
| (cond | |
| (> y 0) (implementation x y) | |
| (< y 0) (/ 1 (implementation x (Math/abs y))) | |
| :else 1))) |
| In = lambda: map(int, raw_input().split()) | |
| integer_no, unique_no = In() | |
| a = In() | |
| uniques = [In().pop() for _ in range(unique_no)] | |
| aux = [0] * integer_no | |
| seen = set() | |
| for idx in xrange(integer_no - 1, -1, -1): |
| import dateutil.parser | |
| import pytz | |
| date_string = '2013-10-14T12:47:12.776270' | |
| date_object = pytz.timezone('America/Los_Angeles').localize(dateutil.parser.parse(date_string)) | |
| print date_object.isoformat() |