Skip to content

Instantly share code, notes, and snippets.

View Abhinav1217's full-sized avatar

Abhinav Kulshreshtha Abhinav1217

View GitHub Profile
server {
listen 80;
server_name www.example.com;
root /var/www/vhosts/example.com/public/;
location /
{
index index.php index.html index.htm;
}
@Abhinav1217
Abhinav1217 / PHPMinify.php
Last active August 29, 2015 14:27
A simple php script to Minify PHP files in PHP project using PHP shell command in terminal..
<?php
/**
* @author Abhinav Kulshreshtha
* @version 1.0
* @copyright 2015-End_of_Time Abhinav Kulshreshtha
* @license DO WHAT THE F**K YOU WANT TO PUBLIC LICENSE < http://www.wtfpl.net/ >
*
* @todo Looks Like I missed managing symlinks.
*/
@Abhinav1217
Abhinav1217 / Demo: Selecting First Child.html
Last active December 14, 2015 10:28
# Demo for different methods of selecting the first child element
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<title>Demo For first child item</title>
<style>
@Abhinav1217
Abhinav1217 / PHP: better_print_r.php
Last active December 15, 2015 21:29
A Better alternative to PHP print_r() function.
<?php
/**
* This function is an alternative to default PHP print_r() function.
* it displays the output as a recursive list items with highlighted key and values.
*/
function pp($arr){
$retStr = '<ul>';
if (is_array($arr)){
foreach ($arr as $key=>$val){
if (is_array($val)){
@Abhinav1217
Abhinav1217 / stickyTitles.js
Created December 17, 2015 18:21 — forked from andrewlaskey/stickyTitles.js
Sticky Instagram-like Headers
//http://stackoverflow.com/questions/13279725/getting-a-sticky-header-to-push-up-like-in-instagrams-iphone-app-using-css-a
function stickyTitles(stickies) {
this.load = function() {
stickies.each(function(){
var thisSticky = jQuery(this).wrap('<div class="followWrap" />');
thisSticky.parent().height(thisSticky.outerHeight());
@Abhinav1217
Abhinav1217 / GetEnumValuesFromMySQL.php
Last active December 21, 2015 14:18
Get enum values from some column in Mysql/Mariadb with PHP or PDO
<?php
/** This snippet can be used as <options> in <SELECT> in html **/
?>
<select>
<?php
$result = mysql_query('SHOW COLUMNS FROM '.$table_name.' WHERE field="'.$column_name.'"');
while ($row = mysql_fetch_row($result)) {
foreach(explode("','",substr($row[1],6,-2)) as $option) {
print("<option>$option</option>");
/**
* Add a getWeek() method in Javascript inbuilt Date object.
* This function is the colsest I could find which is ISO-8601 compatible. This is what php's `Date->format('w')` uses.
* ISO-8601 means.
* Week starts from Monday.
* Week 1 is the week with first thurday of the year or the week which has 4th jan in it.
* @param {[Date]} Prototype binding with Date Object.
* @return {[Int]} Integer from 1 - 53 which denotes the week of the year.
*/
@Abhinav1217
Abhinav1217 / ..git-pr.md
Created August 25, 2018 07:43 — forked from gnarf/..git-pr.md
git pr - Global .gitconfig aliases for Pull Request Managment

Install

Either copy the aliases from the .gitconfig or run the commands in add-pr-alias.sh

Usage

Easily checkout local copies of pull requests from remotes:

  • git pr 4 - creates local branch pr/4 from the github upstream(if it exists) or origin remote and checks it out
  • git pr 4 someremote - creates local branch pr/4 from someremote remote and checks it out
@Abhinav1217
Abhinav1217 / certificate.sh
Created December 6, 2018 15:26 — forked from volkancakil/certificate.sh
A basic Self Signed SSL Certificate utility
#!/usr/bin/env bash
# A basic Self Signed SSL Certificate utility
# by Andrea Giammarchi @WebReflection
# https://www.webreflection.co.uk/blog/2015/08/08/bringing-ssl-to-your-private-network
# # to make it executable and use it
# $ chmod +x certificate
# $ ./certificate # to read the how-to

Dynamic SVG image placeholders

How it works

  1. Loads the Potrace Lib (6KB min+gzip)
  2. Starts loading the full res source image
  3. Meanwhile...
  4. Grabs a low res thumbnail from Cloudinary (~5KB)
  5. Uses Potrace to generate an svg from the thumbnail
  6. Colours and fades the SVG in as a crisp, full-size placeholder