Skip to content

Instantly share code, notes, and snippets.

View emohamed's full-sized avatar

Emil Mohamed emohamed

View GitHub Profile
[
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" },
{ "keys": ["ctrl+k", "k"], "command": "travel_to_pane", "args": {"direction": "up"} },
{ "keys": ["ctrl+k", "l"], "command": "travel_to_pane", "args": {"direction": "right"} },
{ "keys": ["ctrl+k", "j"], "command": "travel_to_pane", "args": {"direction": "down"} },
{ "keys": ["ctrl+k", "h"], "command": "travel_to_pane", "args": {"direction": "left"} },
{ "keys": ["ctrl+k", "shift+k"], "command": "carry_file_to_pane", "args": {"direction": "up"} },
set_properties(array(
'name' => 'email',
'value' => 'emil@2c-studio.com'
))
<?php
/**
* Filters/resizes video embed codes.
* @param string embed code provided by video embedding service
* @param boolean $wmode
* @param mixed $width
* @param mixed $height
* @return string
*/
function crb_filter_video($html, $wmode = false, $width = false, $height = false) {
0000000000000000
0000-0000-0000-0000
0000 0000 0000 0000
00000000 00000000
00-00-00-00-00-00-00-00
add - remove
begin - end
create - destroy
first - last
get - put
get - set
increment - decrement
insert - delete
lock - unlock
min - max
@emohamed
emohamed / script.js
Last active August 29, 2015 13:57
A Pen by Emil Mohamed.
var result = 5 / 0;
document.write(result);
# PHP OOP Learning Plan
## Lecture 1 - Basic Concepts
* Classes describe real-world objects or provide useful abstractions. Setup good example without any code -- e.g. `Widget` class
* Object are instances of a class. They are actual entities that programmers use to get the job done
* PHP syntax -- `class` and `new` keywords. _Live demo._
* `__construct()` special method. It can't return a value since it automatically returns the newly created object. _Live demo._
* Object properties. Describe the `->` syntax. _Live demo._
* Object methods. _Live demo._
title.on('click', function(e){
if( strike.css('display') == 'block' ){
var closing = dd.hasClass('opened');
dd.slideToggle(closing);
dd.toggleClass('opened', closing);
}
return false
});
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title>Document</title>
</head>
<body>
<script>
Object.prototype.inspect = function () {
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.js"></script>
<title>Document</title>
</head>
<body>
<div id="buttons">