Skip to content

Instantly share code, notes, and snippets.

View SudhanPlayz's full-sized avatar
🔍
Exploring Web3

Sudhan SudhanPlayz

🔍
Exploring Web3
View GitHub Profile
@SudhanPlayz
SudhanPlayz / ShareX_CustomUploader.js
Created May 3, 2021 11:54
ShareX Custom Domain Uploader
var express = require("express")
var multer = require("multer");
var body_parser = require("body-parser");
var cors = require("cors");
var app = express()
var storage = multer.diskStorage({
destination: function (req, file, cb) {
cb(null, "Uploads");
},
@SudhanPlayz
SudhanPlayz / Deploy GitHub Repo Using SSH Keys.md
Last active January 1, 2022 08:41
Topic's in this gist: Connecting to Ubuntu VM, Installing nodejs, Generating SSH key and cloning GitHub repo using git