Skip to content

Instantly share code, notes, and snippets.

View Eyakub's full-sized avatar
🐍
Python || JavaScript || Django

Eyakub Eyakub

🐍
Python || JavaScript || Django
View GitHub Profile
@Eyakub
Eyakub / myGit
Last active August 6, 2019 06:20
My Git CMD Usage & Laravel CMD usage
/* this is too pull from github repo update
* and get it from repo
*/
git fetch --all
git reset --hard origin/master
*** clear git cache, .gitignore fix ***
git rm -r --cached .
@Eyakub
Eyakub / README-Template.md
Created March 31, 2018 07:41 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@Eyakub
Eyakub / README.md
Created March 27, 2018 01:29 — forked from hofmannsven/README.md
My simply Git Cheatsheet
@Eyakub
Eyakub / A little Prolog practice
Last active April 1, 2018 10:00
Prolog basic code from AI courses.
Practice work
@Eyakub
Eyakub / Insert_data.php
Last active November 23, 2017 13:28
PHP data Set & Insert
<?php
$con = mysqli_connect("localhost","username","password","databaseName");
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}else{
mysqli_set_charset($con,"utf8");
if (isset($_POST['fb_id']) && $_POST['fb_id'] != '') {
$fb_id = $_POST['fb_id'];
@Eyakub
Eyakub / Lexical Analysis.c
Last active October 25, 2017 05:02
It's our Compiler Design lab practice code.
#include<stdio.h>
#include<string.h>
#include<ctype.h>
void main()
{
char expr[100], operators[20]; //Arrays for storing expression and operator
char variables[20][20]; // 2d array for storing variable or identifier
int constants[20], ascii[100]={0}; //for storing constants, ascii values of expression
@Eyakub
Eyakub / AboutCodeFight.txt
Last active September 27, 2017 20:49
CodeFights Challenge :p
Having a fun time here doing Codefight Challenge :p
@Eyakub
Eyakub / A Linux Shell Programming Gist
Last active August 10, 2017 17:03
Program using linux Shell of my Course Operating System
Here all of mine code is from my course.
To help my classmate and to store my shell program to use from anywhere
i'm using this GIST.
@Eyakub
Eyakub / template.cpp
Created August 23, 2016 19:29 — forked from ArifHosan/template.cpp
CPP contest template
/*
Name: Md. Nabid Imteaj
Prob:
Algo:
*/
#pragma comment( linker, "/STACK:16777216" )
#pragma warning( disable:4786 )
#include <cmath>
/*
5 100
55 25
5 15
32 28
27 20
15 20
*/
#include<iostream>
#include<cstring>