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 / AboutCodeFight.txt
Last active September 27, 2017 20:49
CodeFights Challenge :p
Having a fun time here doing Codefight Challenge :p
@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 / 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 / A little Prolog practice
Last active April 1, 2018 10:00
Prolog basic code from AI courses.
Practice work
@Eyakub
Eyakub / README.md
Created March 27, 2018 01:29 — forked from hofmannsven/README.md
My simply Git Cheatsheet
@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 / 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 .

Keybase proof

I hereby claim:

  • I am eyakub on github.
  • I am eyakub (https://keybase.io/eyakub) on keybase.
  • I have a public key whose fingerprint is A3BA 34C9 1D6B 793E 8559 9726 139F 3193 32FD 63AA

To claim this, I am signing this object:

@Eyakub
Eyakub / Arduino Codes
Last active July 17, 2018 06:57
Here I'll be adding some basic adruino basic code.
..
@Eyakub
Eyakub / A OpenGL
Last active July 29, 2018 11:11
using Code blocks
.