Skip to content

Instantly share code, notes, and snippets.

View meSingh's full-sized avatar
😜
Making products..

Mandeep Singh meSingh

😜
Making products..
View GitHub Profile
@meSingh
meSingh / List.md
Last active August 29, 2015 14:08 — forked from msurguy/List.md

Other people's projects:

My projects (tutorials are on my blog at http://maxoffsky.com):

Awesome PHP

A curated list of amazingly awesome PHP libraries, resources and shiny things.

Composer

Composer Related

@meSingh
meSingh / .gitignore
Last active December 20, 2015 04:59
Global .gitignore file
### Laravel ###
app/config/dev/
bootstrap/compiled.php
.env.*.php
.env.php
### Composer ###
composer.phar
vendor/
@meSingh
meSingh / nice_time_ago.php
Created July 1, 2013 13:37
Create nicely formatted timestamps in php
<?php
/**
*
* Creates nicely formated timestamps
*
* @param timestamp $date
* @return string
*/
public static function get_x_time_ago($date)
@meSingh
meSingh / make_slug.php
Created July 1, 2013 13:35
Create WordPress like slugs from any string in php.
<?php
/**
*
* Genrate Slugs from Title or any given string
*
* @param string $str
* @return Slug
*
**/
@meSingh
meSingh / truncate.php
Created July 1, 2013 13:32
Cut a string on a specific length or make the long string shorter in php with spaces support.
<?php
/**
*
* Make the string of a defined length
*
* @param string $string
* @param integer $max_length
* @param boolean $trunc_at_space
* @param string $replacement
@meSingh
meSingh / .htaccess
Created June 20, 2013 11:42
Laravel's (L3) .htaccess to remove "public" from URL
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*)$ public/$1 [L]
</IfModule>
@meSingh
meSingh / custom.js
Created June 20, 2013 05:54
Link to a specific tab in bootstrap
var gotoHashTab = function (customHash) {
var hash = customHash || location.hash;
var hashPieces = hash.split('?'),
activeTab = $('[href=' + hashPieces[0] + ']');
activeTab && activeTab.tab('show');
}
// onready go to the tab requested in the page hash
gotoHashTab();
# laravel new-app
alias laravel="git clone -o laravel -b develop https://github.com/laravel/laravel.git"
alias artisan="php artisan"
alias migrate="php artisan migrate"
alias serve="php artisan serve"
alias dump="php artisan dump"
alias t="phpunit"
# Generators Package
@meSingh
meSingh / fetch-all-branches.md
Last active December 18, 2015 15:28
How to fetch all branches and add trackers after cloning a repo in git.

How to fetch all branches and add trackers after cloning a repo in git

1. Clone a repo

First of all clone a git repo to a local directory.

git clone [email protected]:username/repo.git localFolder

2. Run the bash script