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
diff --git a/app.coffee b/app.coffee | |
index 3138226..63e5333 100644 | |
--- a/app.coffee | |
+++ b/app.coffee | |
@@ -47,7 +47,7 @@ camera.on "photo_saved", (filename, path, web_url) -> | |
State.image_src_list.push path | |
io = require("socket.io").listen(web) | |
-web.listen 3000 | |
+web.listen 3001 |
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
debian@beaglebone:~$ sudo apt-get install python-pip | |
Reading package lists... Done | |
debian@beaglebone:~$ sudo pip install Pillow | |
debian@beaglebone:~$ sudo apt-get install python-imaging-tk | |
debian@beaglebone:~$ sudo apt-get install feh | |
feh -F file.jpg |
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
#include <stdio.h> | |
#include <conio.h> | |
int sOcc(char *ptr, char specialChar); | |
main(){ | |
char myArray[80], search, *ptr; | |
int cnt=0; | |
printf(" Please enter a phrase... "); | |
gets(myArray); |