Skip to content

Instantly share code, notes, and snippets.

View arifhp86's full-sized avatar

Arifur Rahman arifhp86

View GitHub Profile
@arifhp86
arifhp86 / js.md
Created August 25, 2017 13:38 — forked from nuhil/js.md
Javascript Handbook

Javascript Handbook

A hand crafted markdown document contains all major Javascript topics covered, taken from different sources. Brush Up your JS memory.

Comments


Single line comments start with //. For multi-line commands, you use /* ... */

// This is a single line comment
@arifhp86
arifhp86 / Laravel symbolic link
Last active February 10, 2024 11:27
Laravel symbolic link creation with cron in shared hosting
git add .
git commit -m "comment"
git push origin master
git pull
git remote add origin <server>
git branch <branchname>
git checkout <branchname>
git merge <branchname>
git branch -d <branchname>
git push
@arifhp86
arifhp86 / Open all link of webpage
Created March 4, 2018 18:30
Open all link of webpage in few seconds interval
@arifhp86
arifhp86 / GET Superglobal in Javascript
Created May 30, 2018 16:21
GET Superglobal in Javascript
var getParam = (function() {
var query = location.search.substr(1);
var params = {};
if(query) {
query.split("&").forEach(function(part) {
var item = part.split("=");
params[item[0]] = decodeURIComponent(item[1]);
});
}
return function(paramName) {