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 / function.md
Last active March 8, 2019 13:33
Introduction of C programming Functions
  • Problem 1
Simple Function Use to do Summation and Subtraction.
#include<stdio.h>
 int main()
 {
     int num1,num2;
     printf("Enter Two Number : ");
     scanf("%d %d",&num1,&num2);
     sum(num1,num2);
@nazmul629
nazmul629 / linux.md
Last active April 28, 2019 10:53
Linux Short Cut

How To install VS_Code

first downlod the File on Visual Stdio Code Downlod .deb File
  • Open taeminal on the on the downlod file directory. Then type tarminal
    sudo dpkg -i
@nazmul629
nazmul629 / JDK& Nebeans install.md
Last active September 8, 2019 12:26
JDK With NetBeans Install Process

JDK With NetBeans Installing Process

Firstly need to Downlod JDK File.
  • Open taeminal on the on the Jdk file. Now type Command on tarminal
  1. chmod +x jdk-8u111-nb-8_2-linux-x64.sh
  2. sudo ./jdk-8u111-nb-8_2-linux-x64.sh
@nazmul629
nazmul629 / index.md
Last active July 17, 2019 14:30
Django Fermworks Important Command For Linux OS

First Need TO install Python on Machine.

  • sudo apt-get install python3

Install pip

  • sudo apt install python3-pip

Install Virtualenv

  • pip3 install virtualenv
  • sudo apt install virtualenv

Creating Virtualenv For Project

  • virtualenv env_name

Activate Virtualenv

@nazmul629
nazmul629 / java_course_degine.md
Last active September 7, 2019 13:50
Java Course Design .

Learning Java Programming Language

  1. Introduction of Java
    • First Project
      • Project> package> Class
    • Escape sequence
      • \t \b, \n, "
    • Comment
    • Phases
  • edit(.java)>Compile(.class)>load>verify>Excute
@nazmul629
nazmul629 / computing.md
Created September 4, 2019 14:00
Computing for life

Computing for Life

Week-1: Linux

  • Introduction To Linux
  • Why Linux Over Windows?
  • Installing UBUNTU-19.04
    • Option-1: In VirtualBox
      • Minumum Laptop Config: RAM=4GB, PRO= i3, HDD or SSD?, SSD=MUST(For Good Performance In VirtualBox)
    • Option-2: Dual Boot(Alongside Windowns)
  • Minimum Laptop Config: RAM=4GB, PRO= i3, HDD or SSD?, SSD=Recommended, FreeSpace=50GB+
@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.
@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 / 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 / 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