Skip to content

Instantly share code, notes, and snippets.

View wilk's full-sized avatar

Vincenzo Ferrari wilk

View GitHub Profile
@wilk
wilk / benchmark.css
Created January 5, 2013 00:58
Benchmark to compare the implementation of the 'forEach' statement of different Javascript frameworks.
.framework-box {
display: inline-block;
width: 200px;
height: 80px;
margin-left: 10px;
}
.framework-box h2 {
text-align: center;
background-color: grey;
@wilk
wilk / gist:5472503
Last active December 16, 2015 17:41
[ExtJS] Get listeners of an observable object (Ext.util.Observable): suggested useful method of Ext.util.Observable class.
/* --------------------------------- */
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);
@wilk
wilk / ssh2_example.php
Created July 2, 2013 15:57
Use SSH2 with PHP 5.3.x
// 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’));
}
@wilk
wilk / ProxyWebSocket.test.js
Last active December 24, 2015 20:49
Ext.ux.data.proxy.WebSocket working test for Tree Panel and Tree Store
Ext.Loader.setConfig ({
enabled: true ,
paths: {
'Ext.ux': '../ux'
}
});
Ext.require (['Ext.ux.data.proxy.WebSocket']);
Ext.onReady (function () {
@wilk
wilk / Ruby Notepad Bookmarklet
Last active February 16, 2023 19:49 — forked from jakeonrails/Ruby Notepad Bookmarklet
Javascript in-browser editor with CTRL+SHIFT+Y shortcut to execute the content. Just put it in your address bar and press enter. It works only on Chrome.
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>
@wilk
wilk / app.js
Last active May 10, 2016 09:13
Angular session
'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);
@wilk
wilk / Ext.ux.Deferred
Created September 23, 2014 13:29
Example with Ext.ux.Deferred
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) {
@wilk
wilk / .jshintrc
Last active August 29, 2015 14:17 — forked from nkbt/.jshintrc
{
// -----------------
// --------------------------------------------------------------------
// 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:
//
@wilk
wilk / const
Created July 1, 2015 20:29
ES6 const
const PI = 3.141593
@wilk
wilk / let
Created July 1, 2015 20:36
ES6 let
for (let i = 0; i < 10; i++) {
console.log(i) // 0 1 2 3 ... 9
}
console.log(i) // ReferenceError: i is not defined