This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ignite@CU James Beshara talk | |
Tilt, YCombinator | |
Bricks? No, brick and mortar! | |
Presentation is the most important, mortar-like cliches | |
It's all about the People, not the person(CEO/etc.) | |
If you have any doubts there are no doubts. Everyone you onboard should be smarter than you and the last person | |
Should think every week for 90 seconds "Jeez, it's so great X is onboard, otherwise this wouldn't work" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Writing 2D Games in C using SDL | |
cs50 seminar | |
Simple DirectMedia Layer | |
Windows Max Linux iOS Android | |
input/output- audio, keyboard, mouse, joystick, graphics | |
Source engine | |
goals: | |
install libraries |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
talked about javascript, functions/passing functions, objects, classes, async/callbacks | |
audio as a pipeline | |
source is audio data generater or loaded | |
oscillator, mp3, mic | |
destination is output | |
laptop speakers, ScriptProcessorNode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"Web Apps of the Future with React" | |
by Neeh Mehta for cs50 | |
React is a framework | |
Used on facebook, insta, KA | |
React DOM for web | |
React Native for Android, iOS | |
Components: HTML tags on steroids |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cs50 R seminar by Connor Harris notes | |
more info: | |
https://cran.r-project.org/doc/manuals/R-intro.pdf | |
http://www.stat.cmu.edu/~cshalizi/ADAfaEPoV/ | |
Types: numeric(float), character(string), logicalbool), coercion(scanf()) | |
Vectors (1d array), matrices, high-dim arrays of above types | |
Lists: associate array. Vecs of lists bevahve oddle | |
No real pure atomic types. Single values are arrays of length one |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define LETTERS_HASHED 4 | |
// a word is short if it is <= LETTERS_HASHED letters long | |
struct ll_node | |
ll_node* next | |
char str[LENGTH] | |
ll_node* tofree; | |
ll_node hashtable[32 ** LETTERS_HASHED]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// by Raphael Rouvinov | |
// for stat 110 pset 3 | |
#include <stdio.h> | |
int main(void) | |
{ | |
double sum = 0; | |
for(int j = 1; j <= 48; j++) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Board B: | |
[11 12 ... 1n] | |
[21 22 ... 2n] | |
[.. .. ... ..] | |
[n1 n2 ... nn] | |
Board contains unique elements 0,1,...,n-1 | |
We will denote 0 as 'E' | |
Want board s.t. element at (r,c) = (rn + c + 1) % n*n |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*** java pseudocode ***/ | |
/* a NumTuple holds a number and the frequency of its occurences */ | |
class NumTuple { | |
int num, freq = 1; | |
public numTuple(num) { this.num = num; } | |
} | |
ArrayList frequencySort(int[] array) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var peopleLists = document.getElementsByClassName('ss-choices'); | |
var girlNames = []; | |
var guyNames = []; | |
for(var list = 0; list < peopleLists.length; list++) { | |
var peopleHTML = peopleLists[list].children; | |
for(var person = 0; person < peopleHTML.length; person++) { | |
var arr = list === 0 ? girlNames : guyNames; | |
arr[person] = peopleHTML[person].innerText.slice(1).toLowerCase(); | |
} |