Skip to content

Instantly share code, notes, and snippets.

View ngudbhav's full-sized avatar
🏆
Smart India Hackathon 2019 - Winner

Udbhav Gambhir ngudbhav

🏆
Smart India Hackathon 2019 - Winner
View GitHub Profile
@SkyyySi
SkyyySi / youtube-vanced-alternatives.md
Last active June 26, 2024 01:27
A list of alternatives after the shutdown of Vanced

NONE OF THESE CLIENTS ARE VERIFIED BY ME FOR SECURITY OR ANYTHING ELSE! USE AT YOUR OWN RISK!

These are the current alternatives (with links when possible):

import { useEffect, useState } from 'react';
import logo from './logo.svg';
import './App.css';
// props = {
// name: 'Sundeep'
// }
function Greeter(props) {
useEffect(() => {
@x-yuri
x-yuri / index.md
Last active November 21, 2020 12:21
What happens when you get disconnected from a server?

What happens when you get disconnected from a server?

There are basically two modes in which ssh can operate: 1) interactive, 2) non-interactive. These are not official terms. I'm using them here in place of otherwise wordy names like, "an ssh session with an allocated pseudo terminal." To run a command in non-interactive mode you do:

$ ssh host echo test

Interactive mode is entered when you either do:

@dguardado
dguardado / Procfile
Last active March 13, 2023 07:32
Starting an app with a shell script in elastic beanstalk
web: ./start_server.sh # would like to use environment variables here, but it is not supported
@davydany
davydany / IPTABLES-CHEATSHEET.md
Last active May 27, 2024 14:55
IP Tables (iptables) Cheat Sheet

IP Tables (iptables) Cheat Sheet

IPTables is the Firewall service that is available in a lot of different Linux Distributions. While modifiying it might seem daunting at first, this Cheat Sheet should be able to show you just how easy it is to use and how quickly you can be on your way mucking around with your firewall.

Resources

The following list is a great set of documentation for iptables. I used them to compile this documentation.