Skip to content

Instantly share code, notes, and snippets.

View sunnyluthra's full-sized avatar

Sunny Luthra sunnyluthra

View GitHub Profile
@sunnyluthra
sunnyluthra / CharacterLimiter.php
Created November 21, 2013 05:37
Limits the string based on the character count. Preserves complete words so the character count may not be exactly as specified.
<?php
/**
* Character Limiter
*
* Limits the string based on the character count. Preserves complete words
* so the character count may not be exactly as specified.
*
* @access public
* @param string
* @param integer
@sunnyluthra
sunnyluthra / gist:3479002
Created August 26, 2012 13:05 — forked from lucasfais/gist:1207002
Sublime Text 2 - Useful Shortcuts

Sublime Text 2 – Useful Shortcuts (Mac OS X)

General

⌘T go to file
⌘⌃P go to project
⌘R go to methods
⌃G go to line
⌘KB toggle side bar
⌘⇧P command prompt
@sunnyluthra
sunnyluthra / php_ssl_check.php
Created August 21, 2012 21:25
If a request arrived over ssl
<?php
if ('on' == $_SERVER['HTTPS']) {
//Yes, HTTPS request.
else{
//Http request
}
?>