Skip to content

Instantly share code, notes, and snippets.

View maramtech-sublime's full-sized avatar

maramtech-sublime

View GitHub Profile
@maramtech-sublime
maramtech-sublime / customhelper.php
Created May 22, 2014 07:17
PHP: Laravel Date Helper
<?php
use Carbon\Carbon;
function today($format=null)
{
$format = $format ? $format:'Y-m-d H:i:s';
return Carbon::today()->format($format);
}
@maramtech-sublime
maramtech-sublime / DbmigrateController.php
Created March 5, 2014 14:34 — forked from bruceoutdoors/DbmigrateController.php
PHP: Converts existing MySQL database to migrations in Laravel 4.
<?php
/* * **
*
* This script converts an existing MySQL database to migrations in Laravel 4.
*
* 1. Place this file inside app/controllers/
*
* 2. In this file, edit the index() method to customize this script to your needs.
* - inside $migrate->ignore(), you pass in an array of table
@maramtech-sublime
maramtech-sublime / custom_picker.js
Last active August 29, 2015 13:56
JS: Custom Timepicker
/**
* Custom Picker that convert inpuit texts into a dropdowns in xx:xx AM/PM format
* @param object $ options
* @return dropdowns
*/
jQuery(function($) {
$.fn.customTimepicker = function(options) {
$(this).each(function(index) {
options = $.extend({
@maramtech-sublime
maramtech-sublime / gist:8977461
Created February 13, 2014 15:44
CSS: Image Replacement
.ir{
border: 0;
font: 0/0 a;
text-shadow: none;
color: transparent;
background-color: transparent;
}
// ----------------------------------------------------------
// A short snippet for detecting versions of IE in JavaScript
// without resorting to user-agent sniffing
// ----------------------------------------------------------
// If you're not in IE (or IE version is less than 5) then:
// ie === undefined
// If you're in IE (>=5) then you can determine which version:
// ie === 7; // IE7
// Thus, to detect IE:
// if (ie) {}