This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* The majority of this code is based on the Ext JS Connect JsonRpc provider. | |
* That code's license appears below. My changes are likewise MIT Licensed | |
*/ | |
/*! | |
* Ext JS Connect | |
* Copyright(c) 2010 Ext JS, Inc. | |
* MIT Licensed | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Common | |
// @singleton | |
var Common = {}; | |
Common.createModal = function(config) { | |
var id = "bs-modal-div"; | |
// prevent re-show? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*************************************/ | |
/* Helman, heldes.com */ | |
/* helman at heldes dot com */ | |
/* sqlitedb.js */ | |
/* SQLite Database Class For HTML5 */ | |
/*************************************/ | |
/* Stratified */ | |
exports.createDB = function (confs) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Initial setup | |
git clone -o framework -b develop https://github.com/laravel/laravel.git project-name | |
cd project-name | |
git checkout --orphan master | |
git commit -m "Initial commit" | |
# Pulling changes | |
git fetch framework | |
git merge --squash -m "Upgrade Laravel" framework/develop | |
# Fix merge conflicts if any and commit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class ESC { | |
const LF = "\x0a"; | |
const FF = "\x0c"; | |
const CR = "\x0d"; | |
const HT = "\x09"; | |
const VT = "\x0b"; | |
const ESC = "\x1b"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Diagnostics; | |
using System.Runtime.InteropServices; | |
using System.Runtime.CompilerServices; | |
using System.Windows.Input; | |
using System.Windows.Threading; | |
using System.Collections.Generic; | |
namespace Ownskit.Utils | |
{ |