Skip to content

Instantly share code, notes, and snippets.

View devnuru's full-sized avatar
🎯
Focusing

Md. Nuruzzaman Chowdhury devnuru

🎯
Focusing
View GitHub Profile
@devnuru
devnuru / scripts_dynamic.js
Last active September 24, 2025 13:24
screen
console.log("Hello from scripts_dynamic.js");
jQuery(document).ready(function ($) {
console.log("More than one side banner account found");
if (
jQuery('.recommended-video-section-lg > div[id="side_banner_account"]')
.length > 1
) {
console.log("Removing duplicate side banner account");
jQuery(
@devnuru
devnuru / CountryCodes.json
Created November 22, 2024 17:52 — forked from Goles/CountryCodes.json
Country and Dial or Phone codes in JSON format
[{"name":"Israel","dial_code":"+972","code":"IL"},{"name":"Afghanistan","dial_code":"+93","code":"AF"},{"name":"Albania","dial_code":"+355","code":"AL"},{"name":"Algeria","dial_code":"+213","code":"DZ"},{"name":"AmericanSamoa","dial_code":"+1 684","code":"AS"},{"name":"Andorra","dial_code":"+376","code":"AD"},{"name":"Angola","dial_code":"+244","code":"AO"},{"name":"Anguilla","dial_code":"+1 264","code":"AI"},{"name":"Antigua and Barbuda","dial_code":"+1268","code":"AG"},{"name":"Argentina","dial_code":"+54","code":"AR"},{"name":"Armenia","dial_code":"+374","code":"AM"},{"name":"Aruba","dial_code":"+297","code":"AW"},{"name":"Australia","dial_code":"+61","code":"AU"},{"name":"Austria","dial_code":"+43","code":"AT"},{"name":"Azerbaijan","dial_code":"+994","code":"AZ"},{"name":"Bahamas","dial_code":"+1 242","code":"BS"},{"name":"Bahrain","dial_code":"+973","code":"BH"},{"name":"Bangladesh","dial_code":"+880","code":"BD"},{"name":"Barbados","dial_code":"+1 246","code":"BB"},{"name":"Belarus","dial_code":"+375","
@devnuru
devnuru / git.cheat
Created March 3, 2024 11:32 — forked from joyrexus/git.cheat
Git cheat sheet.
Setup
-----
git clone <repo>
clone the repository specified by <repo>; this is similar to "checkout" in
some other version control systems such as Subversion and CVS
Add colors to your ~/.gitconfig file:
[color]
@devnuru
devnuru / awesome-php.md
Created January 14, 2022 13:04 — forked from ziadoz/awesome-php.md
Awesome PHP — A curated list of amazingly awesome PHP libraries, resources and shiny things.
@devnuru
devnuru / gitcom.md
Created February 27, 2021 09:31 — forked from jednano/gitcom.md
Common git commands in a day-to-day workflow

Git Cheat Sheet

Initial Setup

Create an empty git repo or reinitialize an existing one

git init
While solving the HackerRank problems, you will notice the words STDIN and STDOUT are often mentioned.
To simplify these two concepts and understand how they are useful in the context of solving challenges in HackerRank, this is what you need to know:
STDIN is the source of data your program will read from and use as the input to the algorithm or function that you will implement. Traditionally, the input from a keyboard can be used as STDIN. In the context of HackerRank, STDIN usually refers to some test data they will provide to your solution to validate that your implementation actually solves the challenge.
STDOUT defines the place where the printed output of your code will go. It's very common to use the terminal as STDOUT, meaning that every time you print something (e.g. a log) it will show up in the terminal. However, the STDOUT could be changed to be a file, in which case every time your code calls console.log() it will get saved to that file.
The first coding challenge will help you see this con
@devnuru
devnuru / media-queries
Created September 22, 2020 08:10 — forked from robabby/media-queries
A comprehensive list of media queries forked from Bootstrap and Foundation frameworks
// Bootstrap
/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
}
/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {