Skip to content

Instantly share code, notes, and snippets.

View Sampad-Sarker's full-sized avatar
🎯
Focusing

Sampad Sarker Sampad-Sarker

🎯
Focusing
View GitHub Profile
@Sampad-Sarker
Sampad-Sarker / terminal-commands.md
Created September 16, 2022 05:32 — forked from bradtraversy/terminal-commands.md
Common Terminal Commands

Common Terminal Commands

Key Commands & Navigation

Before we look at some common commands, I just want to note a few keyboard commands that are very helpful:

  • Up Arrow: Will show your last command
  • Down Arrow: Will show your next command
  • Tab: Will auto-complete your command
  • Ctrl + L: Will clear the screen
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Sampad-Sarker
Sampad-Sarker / windows10activation
Created July 23, 2021 15:00
Activate Windows 10 without Any Activator
1. Open CMD as Administrator
2. Paste the following commands into the Cmd: One by one, follow the order.
cscript slmgr.vbs /ipk "SERIAL NUMBER HERE"
Replace SERIAL NUMBER HER with any of these, according your Windows 10 installation type.
Home/Core TX9XD-98N7V-6WMQ6-BX7FG-H8Q99
Home/Core (Country Specific) PVMJN-6DFY6-9CCP6-7BKTT-D3WVR
Home/Core (Single Language) 7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH
@Sampad-Sarker
Sampad-Sarker / webdev_online_resources.md
Created July 12, 2021 19:12 — forked from bradtraversy/webdev_online_resources.md
Online Resources For Web Developers (No Downloading)
@Sampad-Sarker
Sampad-Sarker / clean_code.md
Created April 13, 2021 20:49 — forked from wojteklu/clean_code.md
Summary of 'Clean code' by Robert C. Martin

Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.


General rules

  1. Follow standard conventions.
  2. Keep it simple stupid. Simpler is always better. Reduce complexity as much as possible.
  3. Boy scout rule. Leave the campground cleaner than you found it.
  4. Always find root cause. Always look for the root cause of a problem.

Design rules