Skip to content

Instantly share code, notes, and snippets.

View nowshad-hasan's full-sized avatar
🎯
Focusing

Nowshad Hasan nowshad-hasan

🎯
Focusing
View GitHub Profile
@nowshad-hasan
nowshad-hasan / vscode_shortcuts.md
Created April 30, 2021 08:03 — forked from bradtraversy/vscode_shortcuts.md
Helpful shortcuts for VSCode

VSCode Shortcuts

List of helpful shortcuts for faster coding

If you have any other helpful shortcuts, feel free to add in the comments of this gist :)

Official List of all commands

@nowshad-hasan
nowshad-hasan / PolymorphicMethodOverloading.java
Created April 5, 2021 16:11 — forked from ashikuzzaman-ar/PolymorphicMethodOverloading.java
Method overloading with polymorphic instances
public class PolymorphicMethodOverloading {
public static void main(String[] args) {
Consumer consumer = new Consumer();
Parent p1 = new Parent();
Parent p2 = new Child1();
Parent p3 = new Child2();
Child1 p4 = new Child1();
Child2 p5 = new Child2();
@nowshad-hasan
nowshad-hasan / linebreak.md
Created May 23, 2018 03:46
Line breaks in markdown
Hello  (<-- two spaces)
World

Hello
World


@nowshad-hasan
nowshad-hasan / README-Template.md
Created May 18, 2018 22:17 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@nowshad-hasan
nowshad-hasan / flush-dns.sh
Created February 11, 2018 20:23 — forked from craigvantonder/flush-dns.sh
Flushing the DNS in Ubuntu 16.04
#!/bin/bash
# NB: First install nscd with sudo apt-get install nscd
# run this command to flush dns cache:
sudo /etc/init.d/dns-clean restart
# or use:
sudo /etc/init.d/networking force-reload
# Flush nscd dns cache:
sudo /etc/init.d/nscd restart