Skip to content

Instantly share code, notes, and snippets.

View acharyarajasekhar's full-sized avatar

Acharya Raja Sekhar Brundhavanam acharyarajasekhar

  • India
View GitHub Profile
@acharyarajasekhar
acharyarajasekhar / README.md
Created December 9, 2023 15:51 — forked from piyushgarg-dev/README.md
Kafka Crash Course
@acharyarajasekhar
acharyarajasekhar / onedrive_fileupload.md
Last active July 2, 2019 09:50 — forked from tanaikech/submit.md
Uploading Files to OneDrive Using Node.js

In order to use this script, please retrieve client id, client secret and refresh token before. About this, you can see the detail information at https://gist.github.com/tanaikech/d9674f0ead7e3320c5e3184f5d1b05cc.

1. Simple item upload

This is for the simple item upload is available for items with less than 4 MB of content. The detail information is https://dev.onedrive.com/items/upload_put.htm.

var fs = require('fs');
var mime = require('mime');
var request = require('request');
@acharyarajasekhar
acharyarajasekhar / Cordova + Ionic installation
Last active February 23, 2018 12:14
GCloud Ionic Android SDK setup on Debian Linux
acharya_rsb@androidsdk-ionic:~$ sudo npm i -g cordova ionic
@acharyarajasekhar
acharyarajasekhar / env.txt
Created February 22, 2018 13:11
gcloud andoird env var
export ANDROID_HOME="$HOME/android"
export PATH="$PATH:$HOME/android/tools"
export PATH="$PATH:$HOME/android/platform-tools"
export PATH="$PATH:$HOME/android/build-tools"
@acharyarajasekhar
acharyarajasekhar / index.txt
Created February 5, 2018 09:17
ENV variables in cloud9
runner sets only variables in its own terminal. If you want to change a variable everywhere
run c9 ~/.bashrc and add export VARIABLE_NAME=VARIABLE_VALUE to the end