Skip to content

Instantly share code, notes, and snippets.

test-file:
touch test-file

Keybase proof

I hereby claim:

  • I am easauceda on github.
  • I am easauceda (https://keybase.io/easauceda) on keybase.
  • I have a public key ASDFOC7j2mDBWdd6IfWZ122Q9Fj3L6U6GktqaELpyZcXego

To claim this, I am signing this object:

@easauceda
easauceda / profile.json
Created October 16, 2016 21:16
iTerm2 Profile
{
"Ansi 0 Color" : {
"Green Component" : 0.324999988079071,
"Red Component" : 0.4320000112056732,
"Blue Component" : 0.2759999930858612
},
"Tags" : [
],
"Ansi 12 Color" : {
from SimpleCV import *
cam = Kinect()
depth = cam.getDepth()
width = depth.width
height = depth.height
screensize = width * height
threshold = 255
while True:
deb http://archive.ubuntu.com/ubuntu natty main restricted
deb-src http://archive.ubuntu.com/ubuntu natty main restricted
deb http://security.ubuntu.com/ubuntu natty-security main restricted
deb-src http://security.ubuntu.com/ubuntu natty-security main restricted
## Major bug fix updates produced after the final release of the
## distribution.
deb http://archive.ubuntu.com/ubuntu natty-updates main restricted
deb-src http://archive.ubuntu.com/ubuntu natty-updates main restricted
@easauceda
easauceda / gist:5f13781186d21d034ee2
Last active January 25, 2016 17:25
Homework Two Assignment

#Homework Two

1.

Create a child process. The child process generates a random number n between 1 ~ 10, outputs n and it's process ID. The parent process waits for the child process and outputs n. (Use pipes to share n between the parent and child)

2.