Skip to content

Instantly share code, notes, and snippets.

View hemel-cse's full-sized avatar
🎯
Focusing

Md Hashibul Amin hemel-cse

🎯
Focusing
View GitHub Profile
@hemel-cse
hemel-cse / read.md
Last active May 23, 2017 17:14
Book list for programmer!

Code Complete (2nd edition) by Steve McConnell The Pragmatic Programmer Structure and Interpretation of Computer Programs The C Programming Language by Kernighan and Ritchie Introduction to Algorithms by Cormen, Leiserson, Rivest & Stein Design Patterns by the Gang of Four Refactoring: Improving the Design of Existing Code The Mythical Man Month The Art of Computer Programming by Donald Knuth Compilers: Principles, Techniques and Tools by Alfred V. Aho, Ravi Sethi and Jeffrey D. Ullman

@hemel-cse
hemel-cse / BlogController.php
Created June 20, 2016 08:41 — forked from tobysteward/BlogController.php
Laravel AJAX Pagination with JQuery
<?php
class BlogController extends Controller
{
/**
* Posts
*
* @return void
*/
public function showPosts()
@hemel-cse
hemel-cse / main.go
Created October 22, 2016 18:24
For Recurse
package main
import "fmt"
func main() {
i := 1
for i <=100 {
fmt.Println(i)
if i % 3 == 0 && i % 5 ==0 {
fmt.Println("CracklePop")
@hemel-cse
hemel-cse / bikro.py
Created October 31, 2016 11:39
Crawl data from webpage that required login with python
import mechanize
import cookielib
from bs4 import BeautifulSoup as bs
import html2text
br = mechanize.Browser()
cj = cookielib.LWPCookieJar()
br.set_cookiejar(cj)
br.set_handle_equiv(True)
br.set_handle_gzip(True)
br.set_handle_redirect(True)
@hemel-cse
hemel-cse / Extracting all jobs type from usa labor site.ipynb
Last active December 15, 2016 05:39
Fetch all the jobs data from usa labor site
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@hemel-cse
hemel-cse / Laravel PHP7 LEMP AWS.md
Created February 20, 2017 08:46 — forked from shaheemirza/Laravel PHP7 LEMP AWS.md
Laravel 5.x on Ubuntu 14.x, PHP 7.x, Nginx 1.9.x

#Steps to install latest Laravel, LEMP on AWS Ubuntu 14.4 version. This tutorial is the improvised verision of this tutorial on Digitalocean based on my experience.

Install PHP 7 on Ubuntu

Run the following commands in sequence.

sudo apt-get install -y language-pack-en-base
sudo LC_ALL=en_US.UTF-8 add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt-get install zip unzip
@hemel-cse
hemel-cse / nginx.conf
Created February 20, 2017 08:47 — forked from shaheemirza/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@hemel-cse
hemel-cse / vps.sh
Created February 20, 2017 08:49 — forked from shaheemirza/vps.sh
#PROLOGUE: all this should be run as root, otherwise stated
#update && upgrade:
apt-get update && apt-get upgrade -y
#create a new user
adduser user_x
#create group admin (funny enough, it does not exist, although its accounted in the /etc/sudoers file):
addgroup --system admin
@hemel-cse
hemel-cse / ElasticSearchInstall.sh
Created February 20, 2017 08:49 — forked from shaheemirza/ElasticSearchInstall.sh
Shell Script to install ElasticSearch on Ubuntu Server
### ElasticSearch version
if [ -z "$1" ]; then
echo ""
echo " Please specify the Elasticsearch version you want to install!"
echo ""
echo " $ $0 1.7.1"
echo ""
exit 1
fi
# Install dependencies
#
# * checkinstall: package the .deb
# * libpcre3, libpcre3-dev: required for HTTP rewrite module
# * zlib1g zlib1g-dbg zlib1g-dev: required for HTTP gzip module
apt-get install checkinstall libpcre3 libpcre3-dev zlib1g zlib1g-dbg zlib1g-dev && \
mkdir -p ~/sources/ && \
# Compile against OpenSSL to enable NPN