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
https://gist.github.com/anonymous/801835c9bc9b061df4e0 | |
http://www.vision.jhu.edu/teaching/vision08/Handouts/case_study_pca1.pdf | |
https://www.dropbox.com/s/nbzgv0du0rikk5x/eigen.pdf?dl=0 | |
https://www.dropbox.com/s/9j7m55mc7bw85bd/Spirit%20Airlines%20-%20cheap%20tickets%2C%20cheap%20flights%2C%20discount%20airfare%2C%20cheap%20hotels%2C%20cheap%20car%20rentals%2C%20cheap%20travel.pdf?dl=0 |
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
https://www.dropbox.com/s/vvas429n5658fvk/i-765%20copy.pdf?dl=0 |
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
library(pixmap) | |
face_vectors <- function (filenames){ | |
list_faces <- list() | |
for( i in seq_along(filenames)){ | |
img <- read.pnm(filenames[i]) | |
new_face <- as.vector(t(img@grey)) | |
list_faces <- c(list_faces ,new_face ) | |
#C <- matrix(as.vector(img@grey), nrow=( dim(img@grey)[1] * dim(img@grey)[2] ), ncol=1) | |
} |
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
https://www.dropbox.com/s/osjd546f6zs8qyc/checkers.pdf?dl=0 | |
https://www.dropbox.com/s/osjd546f6zs8qyc/checkers.pdf?dl=0 | |
https://www.dropbox.com/s/o6uubwe24ywe93m/cs224w-044-final.pdf?dl=0 | |
http://www.cs.cornell.edu/~lars/kdd06-comm.pdf |
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
"""A simple program to play Checkers with two people from the same computer. | |
I made it to play out checkers problems I found.""" | |
from Tkinter import * | |
#Canvas | |
import string | |
class CheckersInterface: | |
DEBUG=1 |
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
http://www.cs.virginia.edu/~cs416/2004Fall/Tests/2004midtermAnswers.pdf | |
http://stanford.edu/~cpiech/cs221/fall12/exams/midterm_practice_solution.pdf | |
project | |
http://web.stanford.edu/class/cs224w/projects/cs224w-4-final.pdf | |
http://cs.gmu.edu/~tr-admin/papers/GMU-CS-TR-2009-7.pdf | |
http://qph.is.quoracdn.net/main-qimg-6c3f7b7470cf8dc55fa4eaeab8a876ff?convert_to_webp=true |
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
http://www.utdallas.edu/~sizheng/CS4349.d/l-notes.d/L13.pdf | |
http://www.utdallas.edu/~sizheng/CS4349.d/l-notes.d/L11.pdf | |
http://read.pudn.com/downloads151/ebook/655783/Distributed/Chapter12Answers.pdf | |
http://read.pudn.com/downloads151/ebook/655783/Distributed/Chapter13Answers.pdf | |
http://read.pudn.com/downloads151/ebook/655783/Distributed/Chapter14Answers.pdf | |
http://read.pudn.com/downloads151/ebook/655783/Distributed/Chapter11Answers.pdf |
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
import tweepy | |
import json | |
import csv | |
# Authentication details. To obtain these visit dev.twitter.com | |
consumer_key = '<Your Token>' | |
consumer_secret = '<Your Token>' | |
access_token = '<Your Token>' | |
access_token_secret = '<Your Token>' |
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
Create /etc/apt/sources.list.d/pgdg.list | |
Add | |
deb http://apt.postgresql.org/pub/repos/apt/ squeeze-pgdg main | |
wget --quiet -O - http://apt.postgresql.org/pub/repos/apt/ACCC4CF8.asc | sudo apt-key add - | |
sudo apt-get update | |
-- | |
sudo apt-get install postgresql-9.2 postgresql-server-dev-9.2 postgresql-contrib-9.2 | |
sudo su -l postgres | |
psql -d template1 -p 5433 |
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
#! /bin/sh | |
### BEGIN INIT INFO | |
# Provides: supervisord | |
# Required-Start: $remote_fs | |
# Required-Stop: $remote_fs | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Example initscript | |
# Description: This file should be used to construct scripts to be | |
# placed in /etc/init.d. |
NewerOlder