Skip to content

Instantly share code, notes, and snippets.

View k1ng440's full-sized avatar
💡
Looking For Opportunity

Asaduzzaman Pavel k1ng440

💡
Looking For Opportunity
View GitHub Profile
Device.prototype.play = function(resource, n, callback){
var self = this
var media = {
contentId: resource,
contentType: 'video/mp4'
};
options = { autoplay: true }
if(n){
options['currentTime'] = n
@k1ng440
k1ng440 / routing.js
Created May 8, 2014 07:32
ironroute
;(function () {
"use strict";
// override with mini-pages navigate method
Meteor.navigateTo = function (path) {
Router.go(path);
};
Router.map(function () {
this.route('homeTemplate', {path: '/'});
<?php
/*! @class SocketServer
@author Navarr Barnier
@abstract A Framework for creating a multi-client server using the PHP language.
*/
class SocketServer
{
/*! @var config
@abstract Array - an array of configuration information used by the server.
*/
@k1ng440
k1ng440 / gist:4744782
Created February 9, 2013 10:26
PHP: Login class
<?php
/**
* @category PHP
* @author Steven King (info@k1ngdom.net) (skype: k1ngs.k1ngdom) (phone: +880 174 202 0548)
* @link http://k1ngdom.net
*/
class Login extends library {
private $user_name;
var isMobile = (function(a){if(/android.+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|meego.+mobile|midp|mmp|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i.test(a)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-
var http = require("http"),
url = require("url"),
path = require("path"),
fs = require("fs")
port = process.argv[2] || 8888;
http.createServer(function(request, response) {
var uri = url.parse(request.url).pathname, filename = path.join(process.cwd(), uri);
@k1ng440
k1ng440 / gist:4713580
Created February 5, 2013 10:28
PHP: mysql_* to PDO prepare
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>mysql_ To PDO converter</title>
</head>
<pre>
<?php
function mkpdostatement($query, $with) {
$arr = array();
@k1ng440
k1ng440 / gist:4712383
Created February 5, 2013 05:24
php: boilerplate
<?php
/**
* @author Steven King
* @link http://k1ngdom.net
* @phone +880 174 202 0548
* @email info@k1ngdom.net, k1ngs.k1ngdom@live.com
* @skype k1ngs.k1ngdom
*/