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 / readme.md
Last active December 19, 2018 10:26
Python Tharmal

Install turtle

sudo apt-get install python3-tk

Write a Equilateral triangle Python Program Useing Turtle

import turtle 
turtle. forward(100)
turtle.left(120)
@nazmul629
nazmul629 / readme.md
Last active February 12, 2019 15:36
Computer science and engineering Students must be need to know this Topics .

Computer science and engineering Students must be need to know this Topics .

  1. Whats Biose?
  2. How to do biose setup?
  3. What is OS?
  4. How to do botable USB?
  5. What is Fermwork ?
  6. What is IP Address? how to do work ?
  7. Wifi/LAN How to do work ?
  8. Need to know use OS
  • Problen 1
Using sizeof() method in C Programming
#include<stdio.h>
int main()
{
    printf("size of  int %d bytes \n",sizeof(int));
    printf("size of float %d bytes \n",sizeof(float));
    printf("size of double %d bytes \n",sizeof(double));
    printf("size of char %d byets",sizeof(char));
@nazmul629
nazmul629 / c_programingSeries.md
Last active February 26, 2019 08:56
Introduction of C programming series
  • Problen 1
white a C program to a series (1 +2+3+...........+ n)
#include<stdio.h>
int main()
{
    int n ,sum=0,i;
    printf("Enter The last number :");
    scanf("%11d",&n);
@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()
{
@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 / 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 / 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 / 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