Skip to content

Instantly share code, notes, and snippets.

View sparkingdark's full-sized avatar
🏠
Working from home

Debojyoti Chakraborty sparkingdark

🏠
Working from home
View GitHub Profile
@sparkingdark
sparkingdark / google-dorks
Created June 7, 2022 13:03 — forked from stevenswafford/google-dorks
Listing of a number of useful Google dorks.
" _ _ "
" _ /|| . . ||\ _ "
" ( } \||D ' ' ' C||/ { % "
" | /\__,=_[_] ' . . ' [_]_=,__/\ |"
" |_\_ |----| |----| _/_|"
" | |/ | | | | \| |"
" | /_ | | | | _\ |"
It is all fun and games until someone gets hacked!
@sparkingdark
sparkingdark / Vimcheatsheet.txt
Last active February 22, 2021 13:43
Here You find the vim cheatsheet containing useful vim commands.
##############################################################################
# VIM CHEATSHEET English Version
# author skywind3000
# https://github.com/skywind3000/awesome-cheatsheets
##############################################################################
# Edited by Debo
##############################################################################
# Cursor movement
##############################################################################
##############################################################################
# BASH CHEATSHEET (Chinese Cheat Sheet)-by skywind (created on 2018/02/14)
# Version: 47, Last Modified: 2019/09/24 17:58
# https://github.com/skywind3000/awesome-cheatsheets
##############################################################################
##############################################################################
# Commonly used shortcut keys (default Emacs keys)
##############################################################################
@sparkingdark
sparkingdark / regex.md
Created January 22, 2021 14:09 — forked from vitorbritto/regex.md
Regex Cheat Sheet

Regular Expressions

Basic Syntax

  • /.../: Start and end regex delimiters
  • |: Alternation
  • (): Grouping
@sparkingdark
sparkingdark / list.md
Created December 19, 2020 13:10 — forked from lrhache/list.md
Quantopian Lectures Saved
@sparkingdark
sparkingdark / gpg_git_signing.md
Created December 18, 2020 06:16 — forked from alopresto/gpg_git_signing.md
Steps to enable GPG signing of git commits.

If anyone is interested in setting up their system to automatically (or manually) sign their git commits with their GPG key, here are the steps:

  1. Generate and add your key to GitHub
  2. $ git config --global commit.gpgsign true ([OPTIONAL] every commit will now be signed)
  3. $ git config --global user.signingkey ABCDEF01 (where ABCDEF01 is the fingerprint of the key to use)
  4. $ git config --global alias.logs "log --show-signature" (now available as $ git logs)
  5. $ git config --global alias.cis "commit -S" (optional if global signing is false)
  6. $ echo "Some content" >> example.txt
  7. $ git add example.txt
  8. $ git cis -m "This commit is signed by a GPG key." (regular commit will work if global signing is enabled)
sudo apt install zsh
sudo chsh -s /bin/zsh
curl -fsSL --output omz_installer.sh
https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh
zsh omz_installer.sh
sh ./omz_installer.sh
upgrade_oh_my_zsh
git clone https://github.com/romkatv/powerlevel10k.git $ZSH_CUSTOM/themes/powerlevel10k
nano ~/.zshrc
#replace zshtheme ZSH_THEME="powerlevel10k/powerlevel10k"

F

#include <bits/stdc++.h>

using namespace std;

int main()
{
    long sum = 0;
@sparkingdark
sparkingdark / copy-of-indian-dance-type-image-classification-using-vgg1.ipynb
Created June 24, 2020 14:54
Copy of Indian dance type image classification using VGG1.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sparkingdark
sparkingdark / copy-of-day-2-starter-10daysofmlchallenge.ipynb
Last active March 26, 2020 11:12
Copy of Day 2 Starter #10DaysofMLChallenge
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.