Skip to content

Instantly share code, notes, and snippets.

View nimit2801's full-sized avatar
🐳
writing logics :)

Nimit Savant nimit2801

🐳
writing logics :)
View GitHub Profile
@danielwetan
danielwetan / nodejs-cicd-github-actions.md
Last active April 30, 2024 07:36
Deploy Node.js to VPS using Github Actions

Deploy Node.js to VPS using Github Actions

Steps to deploy Node.js to VPS using PM2 and Github Actions

1. Clone repo to VPS folder

@nimit2801
nimit2801 / copy.js
Created June 1, 2021 20:03
This gist help you to seperate files in your folder and copy paste them according to there extensions :D
const fs = require('fs');
const path = require('path');
var copyFile = (file, dir2) => {
var f = path.basename(file);
var source = fs.createReadStream(file);
var dest = fs.createWriteStream(path.resolve(dir2, f));
source.pipe(dest);
source.on('end', function () {
@narayanpai1
narayanpai1 / NewmanLogin.md
Last active April 12, 2021 21:11
Final Code Submission of my GSoC project

Newman Login Feature: Final Code Submission

Organization: Postman

Mentor: Udit Vasu

Overview

Newman is a command-line Collection Runner for Postman. It allows us to run and test a collection of APIs directly from the command line. It is used with continuous integration servers and build systems to test and monitor different APIs.

@bradtraversy
bradtraversy / devcamper_specs.md
Last active March 17, 2024 17:25
Specs for Devcamper Udemy course project

DevCamper Backend API Specifications

Create the backend for a bootcamp directory website. The frontend/UI will be created by another team (future course). The html/css template has been created and can be used as a reference for functionality. All of the functionality below needs to be fully implmented in this project.

Bootcamps

  • List all bootcamps in the database
    • Pagination
    • Select specific fields in result
    • Limit number of results
  • Filter by fields
@hamzahamidi
hamzahamidi / open-cmder-here.md
Last active February 23, 2024 01:30
"Open Cmder Here" in context menu

"Open Cmder Here" in context menu

Edit 04/2021:

As of the lastest versions, just execute the following command .\cmder.exe /REGISTER ALL per Documentation.

Original Solution

To add an entry in the Windows Explorer context menu to open Cmder in a specific directory, paste this into a OpenCmderHere.reg file and double-click to install it.