Skip to content

Instantly share code, notes, and snippets.

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

Rakib Hasann omiq17

🏠
Working from home
View GitHub Profile
@omiq17
omiq17 / oop.md
Last active September 11, 2021 16:37

নতুন কিছু শেখা অথবা পুরনো লেসন গুলা ফিরে দেখা এবং শেয়ার করে ভুল ঠিক করে নেওয়া !

                    TOPIC:  OOP (JS)

অবজেক্ট ওরিয়েন্টেড প্রোগ্রামিং এর মেইন প্রিন্সিপাল ৪ টা। আমি যেভাবে মনে রাখতে চেষ্টা করছি।

Class = blueprint of homes

Objects = homes, what's instantiated from Class

@omiq17
omiq17 / 0-frontend.md
Last active September 14, 2021 10:46
Front-end web development notepad

Docker allows you to package an application with its environment and all of its dependencies into a "box", called a container.

Usually, a container consists of an application running in a stripped-to-basics version of a Linux operating system.

An image is the blueprint for a container, a container is a running instance of an image.

# Open terminal and type:
# sudo gedit ~/.bashrc
# Add thosse line:
# Git aliases
alias gs="git status"
alias ga="git add ."
alias gpl="git pull"
alias gps="git push"
alias gcm="git commit -m"
@omiq17
omiq17 / ydkjs-up-and-going.js
Created September 29, 2017 03:22
ydkjs-up-and-going created by omiq17 - https://repl.it/Ldil/20
// js has typed values.
var a;
typeof a;
a = null;
typeof a; //weird -- bug
a = undefined;
typeof a;
@omiq17
omiq17 / python.functions().md
Last active August 7, 2017 08:52
Some description about important Python functions.
@omiq17
omiq17 / my-python-codes-explanation.md
Last active March 13, 2017 15:52
I have solved some programming problems in Python 3 and put the source codes at https://github.com/omiq17/my-python-codes This gist contains explanation and coding procedure of the problems. You are welcome to find bug and contribute.
@omiq17
omiq17 / python-notepad.md
Last active August 13, 2017 18:24
Here I note down some of the topics of Python as my learning procedure. You are welcome to find any error and contribute.
@omiq17
omiq17 / react-notepad.md
Last active March 15, 2017 19:41
Here I note down some topics as my learning procedure of React. Feel free to find error and contribute.

React Notepad

Here I note down some topics as my learning procedure of React.

Ecosystem

  • Declarative
  • Unidirectional
  • Dataflow
  • Composition
  • Explicit Mutation