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
@amanjuman
amanjuman / Camera App Config
Last active June 8, 2020 22:21
Camera App Config
server
{
listen 12008;
listen [::]:12008;
server_name exapmle.com;
# HTTP to HTTPS redirection
if ($scheme != "https")
{
return 301 https://$host$request_uri;
@ArifHosan
ArifHosan / Conversions.cpp
Last active March 14, 2018 14:11
Conversion from any base to any base(almost), and also String to Integer and vice versa
#include<bits/stdc++.h>
#define PI 2*acos(0.0)
#define SIZE 1000000
#define endl '\n'
int caseno=1;
#define CP() printf("Case %d: ",caseno++)
#define R() freopen("in.txt","r",stdin)
#define W() freopen("out.txt","w",stdout)
#define RW R(); W();
#define SFI(_i) scanf("%d",&_i)
@ArifHosan
ArifHosan / DFS_example.cpp
Created April 2, 2016 11:37
DFS,Top Sort & SCC
#include<iostream>
#include<cstring>
#include<string>
#include<stack>
#include<queue>
#include<vector>
#include<set>
#include<map>
#include<algorithm>
#include<cstdio>
@Nabid
Nabid / template.cpp
Last active May 8, 2018 06:59
CPP contest template
/*
Name: Md. Nabid Imteaj
Prob:
Algo:
*/
#pragma comment( linker, "/STACK:16777216" )
#pragma warning( disable:4786 )
#include <cmath>
@PurpleBooth
PurpleBooth / README-Template.md
Last active July 27, 2024 07:37
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