Skip to content

Instantly share code, notes, and snippets.

View dattasaurabh82's full-sized avatar

Saurabh Datta dattasaurabh82

View GitHub Profile

We are early men

You can take it as a manifesto if you like

1. Walking in the dark:

1.1. The need to stumble in the dark:

So far our current applied research frameworks (human centric design research to be precise) are geared towards problems those arise from current application frameworks and new similar propositions with present day constraints. Although they take into consideration a person's lifestyle and their different conditions, it falls in short to really address for something's implications that doesn't properly exist yet*.
The danger of such practice is that: Although we are sometimes familiar with the technological advents(technology has very less surprises in it's path and is very predictive), when we go out to find something's future state, we start driving our principles and values with a POV of features.
Doing so we risk ourselves in landing into tough situations for coming up with clear necessities and reasonable ideas that doesn't sound like a gimmick.

1.2. The challen

@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>
@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 / 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 / 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 / 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;
{
"AF": {
"CountryName": "Afghanistan",
"TLD": ".af"
},
"AL": {
"CountryName": "Albania",
"TLD": ".al"
},
"DZ": {
@dattasaurabh82
dattasaurabh82 / .JSON
Created February 23, 2017 15:41
countryCode
{
"AF": {
"CountryName": "Afghanistan",
"TLD": ".af"
},
"AL": {
"CountryName": "Albania",
"TLD": ".al"
},
"DZ": {
@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 / 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