Skip to content

Instantly share code, notes, and snippets.

View ahsankhatri's full-sized avatar

Ahsan Muhammad Yousuf ahsankhatri

View GitHub Profile
@ahsankhatri
ahsankhatri / style.css
Last active August 29, 2015 14:06 — forked from jbutko/style.css
/*==================================================
= Bootstrap 3 Media Queries =
==================================================*/
/*========== Mobile First Method ==========*/
[
{
"keys": ["ctrl+shift+r"], "command": "browser_refresh", "args": {
"auto_save": true,
"delay": 0.5,
"activate_browser": true,
"browser_name" : "Google Chrome"
}
},
{ "keys": ["ctrl+w"], "command": "close_file" },
{
"auto_complete_selector": "source, text",
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",
"font_face": "Monaco",
"font_options": "subpixel_antialias",
"font_size": 10,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
@ahsankhatri
ahsankhatri / parameters.regex
Created February 18, 2015 09:54
Regular Expression for search CI & Native parameter in files. i.e: _GET _POST _REQUEST input->post() input->get() input->get_post() form_validation set_rules.
(this(?:\s+)?->(?:\s+)?(?:input|form_validation)(?:\s+)?->(?:\s+)?(?:get_post|get|post|set_rules)(?:\s+)?\((?:\s+)?(?:'|\")(?<param>[^'\"]+)(?:'|\")(?:.*?)?(?:\s+)?\)|_(?:REQUEST|GET|POST)(?:\s+)?\[(?:\s+)?(?:'|\")(?J)(?<param>.+?)(?:'|\")(?:\s+)?\])
@ahsankhatri
ahsankhatri / enqueJQuery.js
Created March 21, 2015 18:11
Best way to enquejQuery!
(function( $ ) {
"use strict";
$(function() {
// Your code here
});
}(jQuery));
@ahsankhatri
ahsankhatri / file.php
Last active August 1, 2016 07:49
List all declared/defined variables with-in scope.
<?php
print_r( array_diff_key( get_defined_vars(), array_flip(array('_GET','_SERVER','_POST','_COOKIE','_FILES'))) );
@ahsankhatri
ahsankhatri / php_echo.sublime-snippet
Created April 29, 2015 09:49
Sublime `<?php echo ;?>` Snippet
<snippet>
<content><![CDATA[<?${TM_PHP_OPEN_TAG_WITH_ECHO:php echo} $1; ?>]]></content>
<tabTrigger>php_echo</tabTrigger>
<scope>string.quoted.double, string.quoted.single, punctuation.definition.tag.begin.html, text.html, punctuator.definition.string.end.html</scope>
<description>PHP tags with echo Code</description>
</snippet>
@ahsankhatri
ahsankhatri / comment-guide.php
Created June 3, 2015 09:17
Robust method of commenting in PHP
<?php
/*/
// To un-comment whole block, just prepend with slash on line above
echo 'code';
//*/
@ahsankhatri
ahsankhatri / css-debug.js
Last active August 29, 2015 14:22
[JS] Find body overflow element..
/*
* Reference: https://css-tricks.com/findingfixing-unintended-body-overflow/
* Uses: Run it on console..
*/
var docWidth = document.documentElement.offsetWidth;
[].forEach.call(
document.querySelectorAll('*'),
function(el) {
@ahsankhatri
ahsankhatri / service_status_code.js
Last active January 11, 2016 10:00
HTTP Code status as a service
var http = require('http');
http.createServer(function (request, response) {
var status = request.url.substr(1);
if ( ! http.STATUS_CODES[status]) {
status = '404';
}
response.writeHead(status, { 'Content-Type': 'text/plain' });