Skip to content

Instantly share code, notes, and snippets.

View BRAVO68WEB's full-sized avatar
🤣
monorepos are cringe

Jyotirmoy Bandyopadhayaya BRAVO68WEB

🤣
monorepos are cringe
View GitHub Profile
@BRAVO68WEB
BRAVO68WEB / exe
Created September 27, 2019 12:28
Android stdio Sdk Venv 8.1.0
https://dl.google.com/android/repository/sys-img/google_apis/x86-27_r09.zip
@BRAVO68WEB
BRAVO68WEB / index.js
Created November 5, 2019 15:27
Simple, complete example of a bot in Discord.js
// Load up the discord.js library
const Discord = require("discord.js");
// This is your client. Some people call it `bot`, some people call it `self`,
// some might call it `cootchie`. Either way, when you see `client.something`, or `bot.something`,
// this is what we're refering to. Your client.
const client = new Discord.Client();
// Here we load the config.json file that contains our token and our prefix values.
const config = require("./config.json");
@BRAVO68WEB
BRAVO68WEB / sources.list
Created November 5, 2019 16:18 — forked from pichuang/sources.list
Kali Linux source.list /etc/apt/sources.list
deb http://kali.cs.nctu.edu.tw/ /kali main contrib non-free
deb http://kali.cs.nctu.edu.tw/ /wheezy main contrib non-free
deb http://kali.cs.nctu.edu.tw/kali kali-dev main contrib non-free
deb http://kali.cs.nctu.edu.tw/kali kali-dev main/debian-installer
deb-src http://kali.cs.nctu.edu.tw/kali kali-dev main contrib non-free
deb http://kali.cs.nctu.edu.tw/kali kali main contrib non-free
deb http://kali.cs.nctu.edu.tw/kali kali main/debian-installer
deb-src http://kali.cs.nctu.edu.tw/kali kali main contrib non-free
deb http://kali.cs.nctu.edu.tw/kali-security kali/updates main contrib non-free
deb-src http://kali.cs.nctu.edu.tw/kali-security kali/updates main contrib non-free
@BRAVO68WEB
BRAVO68WEB / bat2sh.sh
Created November 27, 2019 03:43
Simple converter from batch (.bat) files to shell script (.sh)
#!/usr/bin/env bash
#
# Converts Windows batch script to Linux shell script
#
# Invocation:
# ./bat2sh script.bat
#
OUTFILE=${2:-${1%%.bat}.sh}
@BRAVO68WEB
BRAVO68WEB / keybase.md
Created March 2, 2020 19:19
keybase.md

Keybase proof

I hereby claim:

  • I am Bravo68web on github.
  • I am bravo68web (https://keybase.io/bravo68web) on keybase.
  • I have a public key whose fingerprint is AA31 B0E3 71EA 1C5C 6FDD C1C5 FD2F B8D7 11AA 0C69

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am bravo68web on github.
  • I am bravo68web (https://keybase.io/bravo68web) on keybase.
  • I have a public key ASAnLdlAiUQHIcQrRkduNE8bBrbH87-qm2IOEAjChxEMNQo

To claim this, I am signing this object:

@BRAVO68WEB
BRAVO68WEB / hub.md
Last active November 11, 2020 16:16
PR Creator

Example workflow for contributing to a project:

$ git clone <url/project-name> $ cd

Create a topic branch

$ git checkout -b new-feature $ git add .

( making changes ... )

$ git commit -m "done with feature"

It's time to fork the repo!

#EXTM3U
#EXTINF:-1,Silky Heart
https://ampr-music.vercel.app/Yui%20Horie%20-%20silky%20heart.mp3
#EXTINF:-1,TITLE
https://ampr-music.vercel.app/Goose%20house%20-%20Oto%20No%20Naru%20Houe.mp3
@BRAVO68WEB
BRAVO68WEB / ajax-search-using-fetch-api.markdown
Created December 4, 2020 11:31
Ajax search using Fetch API