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 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
@nazmul629
nazmul629 / readme.md
Last active December 22, 2023 14:00
Windows 10 activate code

Windows 10 Active process

  • Step 1. Fast create a .txt file.
  • step 2. Then Copy this .text and past on the .txt file .
@echo off
title Windows 10 ALL version activator&cls&echo ************************************ 
&echo Copyright: Youtube: ithelpbd.com &echo.&echo Supported products:&echo - Windows 10 Home&echo - Windows 10 Professional&echo - Windows 10 Enterprise, Enterprise LTSB&echo - Windows 10 Education&echo.&echo.&echo ************************************ &echo Windows 10 activation...
cscript //nologo c:\windows\system32\slmgr.vbs /ipk TX9XD-98N7V-6WMQ6-BX7FG-H8Q99 >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk 3KHY7-WNT83-DGQKR-F7HPR-844BM >nul
@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 / xampp.md
Last active February 24, 2020 06:41
Installing XAMPP i Ubuntu 16.4

XAMPP Installing Process

Firstly need to Downlod Xampp file .
  • Open taeminal on the on the Xampp file. Now type tarminal

    1.Chake File parmition : ls -al
    2.Change The Parmition : sudo chmod +x file_name
    3. install & run : sudo ./file__name

Just Run
  • 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 / 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_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 / 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);