Skip to content

Instantly share code, notes, and snippets.

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

Md Nazmul Hossain nazmul629

🏠
Working from home
View GitHub Profile
@nazmul629
nazmul629 / data-stracture.md
Created January 31, 2022 14:40
Data Stracture

Module-1: Intro to

Algorithm

  1. What is algorithm and where we use
  2. Practical demonstration of algorithm use cases, guessing game

Module-2: Asymptotic Analysis

Target 2023

  1. Pray Regular 5 times
  2. FullStack Web Devlopment
    a) Technologyes
    • HTML/CSS- Bootstarp
    • JavaScritp
    • React
    • API
  • NodeJS
@nazmul629
nazmul629 / cource.md
Last active April 27, 2021 09:30
Python and Django Full stack Web Development Bootcamp

Python and Django Bootchamp

  1. Front-End
    • HTML
    • CSS
    • Bootstrap
  • Project
  1. Git and GitHub
  2. Linux
  3. JavaScript
@nazmul629
nazmul629 / NilamGhor
Last active August 12, 2020 15:31
NilamGhor Website making Paling
1. Buying domain and Hosting
2. Connecting Hosting with Domain
3. SetUp Theme.
4. Product Collaction
5. Team SetUp
6. Delivery Product
7. Mantaine NilamGhor
@nazmul629
nazmul629 / PostgreSql.md
Last active March 4, 2020 15:26
This gist for Command of basic PostgreSQL.

For see Status

service postgresql status

Connect With database

sudo su postgres

Give your OS Root Password

Learning Programming Language

Week 1

1 Introduction of Programming Language

  • Installing Requearment
  • Comailer
  • How to write Code.
  • Escape sequence
    • \t \b, \n, "
  • Key Word Variable & Data Type
@nazmul629
nazmul629 / index.md
Last active October 12, 2019 14:12
C Programming Cours Plan

Learning C Programming Language

  1. *Introduction of C
    • Installing Code::Block

    • How to write Code.

    • Escape sequence

      • \t \b, \n, "
  • Variable & Data Type
@nazmul629
nazmul629 / dimik.md
Last active October 1, 2019 10:35
দ্বিমিক অনলাইন জাজে Problem Solve

Dimik Oj My Profile

প্রবলেম - 1 জোড়-বিজোড়-1

Question

Solution

Python3

T = int(input())

for _ in range(T):
@nazmul629
nazmul629 / solution.md
Last active September 19, 2019 15:18
W3Resourse Python Basic (Part-I)All Problem Solution here

Problem 1:

Write a Python program to print the following string in a specific format

print("Twinkle, twinkle, little star")
print("\t How I wonder what you are!")
print("\t \t Up above the world so high,")
print(("\t \t Like a diamond in the sky. "))
print("Twinkle, twinkle, little star")
print("\t How I wonder what you are!")
@nazmul629
nazmul629 / ArraySum.md
Last active September 8, 2019 12:24
Simple Array Sum

Given an array of integers,N can you find the sum of its elements?

Function Description

  • Complete the simpleArraySum function in the editor below. It must return the sum of the array elements as an integer. simpleArraySum has the following parameter(s):

Output Format

  • Print the sum of the array's elements as a single integer.