Skip to content

Instantly share code, notes, and snippets.

View mirko-codesnippets's full-sized avatar

mirko-codesnippets

View GitHub Profile
@mirko-codesnippets
mirko-codesnippets / gist:3847650
Created October 7, 2012 09:29
JavaScript: Self-Invoking Anonymous Function
(function(){
// some code…
})();
@mirko-codesnippets
mirko-codesnippets / nginx.conf
Created October 7, 2012 09:32 — forked from bendo01/nginx.conf
Nginx: cakephp
#user nobody;
worker_processes 1;
#error_log /opt/local/logs/error.log;
#pid /opt/local/logs/nginx.pid;
events {
worker_connections 1024;
}
@mirko-codesnippets
mirko-codesnippets / HelloShell.php
Created February 21, 2013 08:49
CakePHP: New shell
<?php
class HelloShell extends AppShell
{
public $uses = array();
public function initialize()
{
$this->out('Hello world initialize.');
parent::initialize();
}
@mirko-codesnippets
mirko-codesnippets / HelloWorldTask.php
Last active December 14, 2015 00:59
CakePHP: New shell task
<?php
class HelloWorldTask extends AppShell
{
public $uses = array();
public function initialize()
{
}