Skip to content

Instantly share code, notes, and snippets.

View dattasaurabh82's full-sized avatar

Saurabh Datta dattasaurabh82

View GitHub Profile
XY Feng :
---------
portfolio: http://xystudio.cc/
LinkedIn: https://www.linkedin.com/in/xyfeng
personal e-mail: fxy0111@gmail.com
work e-mail: xy@frogdesign.com
NYU e-mail: f.xy@nyu.edu
David Gauthiier:
----------------
@dattasaurabh82
dattasaurabh82 / README.md
Created February 15, 2017 12:07 — forked from kashimAstro/README.md
H3 / Mali GPU driver and openframeworks armv7 ES / ES2

#A small guide to compile openFrameworks armv7 with driver OpenGL ES / ES2 sunxi for H3 / Mali GPU on ARMBIAN OS, compatible with orangepi and bananapi.

tested on: orangepi one banana pi M2

dependencies:

apt-get install libx11-dev libxext-dev xutils-dev libdrm-dev \ 
           x11proto-xf86dri-dev libxfixes-dev x11proto-dri2-dev xserver-xorg-dev \
 build-essential automake pkg-config libtool ca-certificates git cmake subversion
@dattasaurabh82
dattasaurabh82 / AwesomeIT_abstract.js
Last active February 19, 2017 03:40
Abstract and Bio for AwesomeIt talk
Abstract:
---------
if (artists.love_technology){
possibilities = infinity;
profession = niche;
}else if (technologist.love_art){
possibilities = infinity;
profession = can_be_niche; // doesn’t have to be
}else {
statement = NaN;
@dattasaurabh82
dattasaurabh82 / .JSON
Created February 23, 2017 15:41
countryCode
{
"AF": {
"CountryName": "Afghanistan",
"TLD": ".af"
},
"AL": {
"CountryName": "Albania",
"TLD": ".al"
},
"DZ": {
{
"AF": {
"CountryName": "Afghanistan",
"TLD": ".af"
},
"AL": {
"CountryName": "Albania",
"TLD": ".al"
},
"DZ": {
@dattasaurabh82
dattasaurabh82 / OSCReceiver.cs
Created March 16, 2017 13:33
OSCReceiver.cs
using UnityEngine;
using System.Collections;
public class OSCRcvrCS : MonoBehaviour
{
public string RemoteIP = "127.0.0.1";
//127.0.0.1 signifies a local host (if testing locally
public int SendToPort = 7000;
public int ListenerPort = 6000;
@dattasaurabh82
dattasaurabh82 / ocr.markdown
Created June 15, 2017 03:53 — forked from henrik/ocr.markdown
OCR on OS X with tesseract

Install ImageMagick for image conversion:

brew install imagemagick

Install tesseract for OCR:

brew install tesseract --all-languages

Or install without --all-languages and install them manually as needed.

@dattasaurabh82
dattasaurabh82 / tmux-cheatsheet.markdown
Created August 21, 2017 07:34 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@dattasaurabh82
dattasaurabh82 / purgeAndroid.txt
Created December 18, 2017 14:54 — forked from tahmidsadik/purgeAndroid.txt
How to completely remove Android Studio from Mac OS X
How to Completely Remove Android Studio
Execute these commands from the terminal
rm -Rf /Applications/Android\ Studio.app
rm -Rf ~/Library/Preferences/AndroidStudio*
rm ~/Library/Preferences/com.google.android.studio.plist
rm -Rf ~/Library/Application\ Support/AndroidStudio*
rm -Rf ~/Library/Logs/AndroidStudio*
@dattasaurabh82
dattasaurabh82 / setting your own git server.md
Last active April 22, 2024 13:25
How to setup your own git server and not use microsoft's github

Hoping you have your own VPS setup by now

SSH into GIT SERVER: you can either create a new user or remain root and give other also root priviledges [dangerous]

ssh root@<Your server's IPV4 addr or domain>
# or 
ssh <new-user>@<Your server's IPV4 addr or domain>