Speaker: Mike Walfish
Reccomended reading: http://www.eecs.harvard.edu/htk/phdadvice/
| /* generate.c | |
| Using a "seed", ensures random but determinate numbers each time | |
| this program is run. | |
| To Run: | |
| > g++ generate.c -o generate | |
| > ./generate | |
| Random Number [0]: 70 | |
| Random Number [1]: 43 |
| ### | |
| # Prerequisites | |
| 1. Sign Up for CIMS account | |
| 2. Request a data folder | |
| 3. Request extra space | |
| ### | |
| # Tips |
| #!/bin/bash -e | |
| clear | |
| echo "============================================" | |
| echo "WordPress Install Script" | |
| echo "============================================" | |
| echo "Do you need to setup new MySQL database? (y/n)" | |
| read -e setupmysql | |
| if [ "$setupmysql" == y ] ; then | |
| echo "MySQL Admin User: " | |
| read -e mysqluser |
| Initiated every Saturday at 10:30am AEST, checkins is a time to share | |
| what you are working on or an interesting bit of knowledge if | |
| you'd prefer not to talk about your work. |
| import json | |
| import pytz | |
| import datetime | |
| utc = pytz.utc | |
| aest = pytz.timezone('Australia/Sydney') | |
| def ts_to_date(ts): | |
| date = datetime.datetime.utcfromtimestamp(int(ts)).replace(tzinfo=utc) | |
| return aest.normalize(date) |
| actuallyhn | |
| Beatrix Assistant | |
| Buffer | |
| Echofon | |
| Hootsuite | |
| IFTTT | |
| Janetter | |
| Meet Edgar | |
| newsycombinator |
Speaker: Mike Walfish
Reccomended reading: http://www.eecs.harvard.edu/htk/phdadvice/
Following up with encryption.
Here's my favorite prof from michigan who is an encryption badass: https://jhalderm.com/
He's done a lot of cool stuff including hacking a voting machine so that it plays the the michigan fight song every time someone votes. He's actually done quite a bit of stuff with electronic voting machines (EVMs).
Nadia Heninger is also pretty sweet. She's done work w Halderman before: https://www.cis.upenn.edu/~nadiah/
| # %time find_biggest_palindrome() | |
| # CPU times: user 103 ms, sys: 3.15 ms, total: 106 ms | |
| # Wall time: 106 ms | |
| from Queue import PriorityQueue | |
| import time | |
| class DecreasingFactors(object): | |
| def __init__(self, num): |