most of these require logout/restart to take effect
# Enable character repeat on keydown
defaults write -g ApplePressAndHoldEnabled -bool false
# Set a shorter Delay until key repeat
defaults write NSGlobalDomain InitialKeyRepeat -int 12
Step 1: Print!
print('Hello Nicole!')
Step 2: find events in email with open, variables, list
with open('email.txt', 'r') as email:
#!/usr/bin/env python3 | |
# usage: meal_plans.py | |
import json | |
from selenium import webdriver | |
import time | |
# uncomment these lines to load your data from a file | |
#with open('config.json') as data_file: |
# Fresh Install | |
## Before | |
1. Backup computer | |
2. Install El Capitan | |
## After | |
1. App Store | |
- download Xcode | |
2. Install MacVim |
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="com.example.bobgardner.stenography" > | |
<application | |
android:allowBackup="true" | |
android:icon="@drawable/ic_launcher" | |
android:label="@string/app_name" | |
android:theme="@style/AppTheme" > | |
<activity |
# Android Studio # | |
################## | |
# Built application files | |
*.apk | |
*.ap_ | |
# files for the dex VM | |
*.dex | |
# Java class files |
def fibonacci(n, cache={}): | |
if n in cache: | |
return cache[n] | |
cache[n] = fibonacci[n-1] + fibonacci[n-2] | |
return cache[n] |
def array_multiply(a):
if len(a) == 2:
return mul(a[0], a[1])
else:
return mul(array_multiply(a[0:len(a)/2], a[len(a)/2:len(a)]
Is that what you guys did? He said the algorithm was simple and to me this seems to work. I’m having a tough time with the tree though:
{ | |
"events": { | |
"title": "Tech@NYU After Hours #3", | |
"shortTitle": "After Hours #3", | |
"description": "After Hours is an event for designers, developers, and makers to get to know one another and work on cool projects. Students work on academic and extracurricular projects with a focus in entrepreneurial endeavours.", | |
"startDateTime": "2014-09-24T22:00:00.000Z", | |
"endDateTime": "2014-09-25T00:00:00.000Z", | |
"links": { | |
"teams": { | |
"ids": ["53f54dd98d1e62ff12539dc2"], |