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 / 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 / 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 / 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 / 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 / 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 / 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 / string.md
Last active March 9, 2019 12:12
C programming string introduction.
  • problrm 1
Input String
#include<stdio.h>
 int main()
 {
     char fullname[30];

  printf("Enter Your  Full Name: ");
  gets(fullname);
@nazmul629
nazmul629 / C_array.md
Last active March 4, 2019 11:22
C programming Array
  • Problem 1
C progrma Array use to input sum
#include<stdio.h>
int main()
{
    int a[100],sum=0,i,n;

    printf("How many number: ");
@nazmul629
nazmul629 / Android studio.md
Last active September 4, 2019 13:33
Android studio Installing Process

Android studio Installing Process

Firstly need to Downlod Android Stdio File.
Unzip The File
  • Open taeminal on the on the Android studio file. Now type tarminal
  1. cd bin/

  2. Change The Parmition : sudo chmod 777 -R studio.sh

  3. install & run : ./studio.sh

@nazmul629
nazmul629 / c_programming_pattern.md
Last active March 2, 2019 13:05
Introduction programming of pattern.
  • Problem 1
pattern type

1
1 2
1 2 3

#include<stdio.h>
int main()
{