This file contains 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
.framework-box { | |
display: inline-block; | |
width: 200px; | |
height: 80px; | |
margin-left: 10px; | |
} | |
.framework-box h2 { | |
text-align: center; | |
background-color: grey; |
This file contains 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
/* --------------------------------- */ | |
Ext.define ('My.observable.Object', { | |
mixins: { | |
observable: 'Ext.util.Observable' | |
} , | |
constructor: function (cfg) { | |
var me = this; | |
me.initConfig (cfg); | |
me.mixins.observable.constructor.call (me, cfg); |
This file contains 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
// Open connection | |
If (!($hConnection = ssh2_connect (‘my.server.com’, 22))) throw new Exception (‘connection refused’); | |
// Authentication | |
if (ssh2_auth_password ($hConnection, ‘user’, ‘pass’)) { | |
// Here are your dirty things in secure shell =) | |
// Such as, initialize a sftp connection | |
$hSFTP = ssh2_sftp ($hConnection); | |
// and upload a file on it | |
file_put_contents ("ssh2.sftp://$hSFTP/file_to_upload.csv", file_get_contents (‘file_to_upload.csv’)); | |
} |
This file contains 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
Ext.Loader.setConfig ({ | |
enabled: true , | |
paths: { | |
'Ext.ux': '../ux' | |
} | |
}); | |
Ext.require (['Ext.ux.data.proxy.WebSocket']); | |
Ext.onReady (function () { |
This file contains 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
data:text/html, <style type="text/css">#e{position:absolute;top:0;right:0;bottom:0;left:0;}</style><div id="e"></div><script src="http://d1n0x3qji82z53.cloudfront.net/src-min-noconflict/ace.js" type="text/javascript" charset="utf-8"></script><script>var e=ace.edit("e");e.setTheme("ace/theme/monokai");e.getSession().setMode("ace/mode/javascript");addEventListener('keydown',function(evt){if(evt.ctrlKey && evt.shiftKey && evt.keyCode==89) eval(e.getSession().getValue());});</script> |
This file contains 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
'use strict'; | |
angular | |
.module('myApp', ['ngCookies', 'ngRoute']) | |
.service('Auth', ['$cookieStore', function ($cookieStore) { | |
var me = this; | |
me.authenticate = function (token) { | |
if (token) $cookieStore.put('token', token); | |
This file contains 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
var dfd1 = Ext.create('Ext.ux.Deferred'), | |
dfd2 = Ext.create('Ext.ux.Deferred'), | |
dfd3 = Ext.create('Ext.ux.Deferred'); | |
Ext.Ajax.request({ | |
url: 'your/url', | |
success: function (data) { | |
dfd1.resolve(data); | |
}, | |
failure: function (err) { |
This file contains 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
Show hidden characters
{ | |
// ----------------- | |
// -------------------------------------------------------------------- | |
// JSHint Configuration, Strict Edition | |
// -------------------------------------------------------------------- | |
// | |
// This is a options template for [JSHint][1], using [JSHint example][2] | |
// and [Ory Band's example][3] as basis and setting config values to | |
// be most strict: | |
// |
This file contains 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
const PI = 3.141593 |
This file contains 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
for (let i = 0; i < 10; i++) { | |
console.log(i) // 0 1 2 3 ... 9 | |
} | |
console.log(i) // ReferenceError: i is not defined |
OlderNewer