Skip to content

Instantly share code, notes, and snippets.

View MinhasKamal's full-sized avatar

Minhas Kamal MinhasKamal

View GitHub Profile
/**
* Developer: Minhas Kamal (BSSE-0509, IIT, DU)
* Date: Aug-2013
**/
#include <stdio.h>
#include <time.h>
int main()
{
>> init a git branch
git checkout devel/multimedia/master
git branch
git fetch origin devel/multimedia/master
git reset --hard FETCH_HEAD
git pull --rebase
git status
git clean -f
git clean -d -f
git config core.filemode false
/**
* Game's Name: TicTacToe
* Version: 02(last)
* Developer: Minhas Kamal (BSSE0509, IIT, DU)
* Date: 08.June.2013
* Comment: I wish it will give u as much pleasure as I had, developing it.
**/
#include <stdio.h>
/**
* Developer: Minhas Kamal (BSSE-0509, IIT, DU)
* Date: 06.Sep.2015
* Comment: This code solves n-Queen problem using genetic algorithm.
**/
import java.util.Random;
public class GeneticAlgorithm {
int boardSize;
body{
filter: invert(100%) !important;
background-color: rgb(0,20,40) !important;
}
@MinhasKamal
MinhasKamal / commit-message-examples.md
Last active August 1, 2018 12:35
tags for commit message for better understandability

one simple tag may mean a lot...

Commit Message Tags

  • [feat]/[feat-impl]: New Feature Implementation - implementing new feature/functionality
  • [enhnc]: Enhancement - adding more functionality to existing feature
  • [req]/[req-chng]: Requirement Change - introducing requirement change, doing something in a different way
  • [fix]/[bug-fix]: Bug Fix - patch fixing bug/issue/defect
  • [refact]: Refactoring - code refactoring, like- name, indentation, formatting, spacing, code-block removal, etc.
  • [config]: Changing Configuration - changing build confuration, or external dependencies, or libraries, etc.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<title>Egami</title>
</head>
<body>
@MinhasKamal
MinhasKamal / JSEditor.link
Created January 6, 2018 14:07
Simply paste in your url box, and start coding!
/**
* Developer: Minhas Kamal (BSSE-0509, IIT, DU)
* Date: 15.Aug.2014
* Comment: I spent a whole day doing this little code! But it was really fun!
**/
#include <stdio.h>
#include <windows.h>
#include <time.h>