Skip to content

Instantly share code, notes, and snippets.

View arifix's full-sized avatar
🏠
Working from home

Arif Khan arifix

🏠
Working from home
View GitHub Profile
@itskhaledmohammad
itskhaledmohammad / githubStats.js
Last active January 6, 2018 16:20
This script shows you some cool stats of your GitHub profile in your browser's console.
/*
* Author: Khaled Mohammad
* Dated: 6th January, 2018
*
* How to use:
* 1.Go to your github profile page: github.com/<yourusername>/
* 2.Open console by pressing F12.
* 3.Paste the code below.
* 4.It will show you some juicy stats about your profile.Tadaaa!
*
@im4aLL
im4aLL / php-event-listener-example.php
Last active June 20, 2024 21:25
PHP event listener simple example
<?php
// Used in https://github.com/im4aLL/roolith-event
class Event {
private static $events = [];
public static function listen($name, $callback) {
self::$events[$name][] = $callback;
}