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 | |
/** | |
* | |
* Last version: https://gist.github.com/josecanciani/ff535426bd5d453ef9c2 | |
* | |
* Credits (adapted from): https://gist.github.com/doubleking/6117215 | |
* | |
**/ |
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
; Volume On-Screen-Display (OSD) -- by Rajat | |
; http://www.autohotkey.com | |
; This script assigns hotkeys of your choice to raise and lower the | |
; master and/or wave volume. Both volumes are displayed as different | |
; color bar graphs. | |
;_________________________________________________ | |
;_______User Settings_____________________________ | |
; Make customisation only in this area or hotkey area only!! |
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
$("<div>") | |
.attr("id", "waiter-overlay") | |
.css({ | |
"position" : "fixed", | |
"top" : "0", | |
"left" : "0", | |
"width" : "100%", | |
"height" : "100%", | |
"background-color": "#000", | |
"filter" : "alpha(opacity=50)", |
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
// ==UserScript== | |
// @name youtube deface | |
// @namespace jQueryForChromeExample | |
// @include http*://*youtube.com/* | |
// @match https://www.youtube.com/* | |
// @author Christian Noel Reyes | |
// @description This userscript is meant to disfigure youtube using jQuery in a userscript on Google Chrome. (eg: https://dl.dropboxusercontent.com/u/617821/images/tapermonkey-youtube-disfigure-example.png) | |
// ==/UserScript== | |
// a function that loads jQuery and calls a callback function when jQuery has finished loading |
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 defined('SYSPATH') OR die('No direct access allowed.'); | |
/** | |
* Provides Kohana-specific helper functions. This is where the magic happens! | |
* | |
* $Id: Kohana.php 4372 2009-05-28 17:00:34Z ixmatus $ | |
* | |
* @package Core | |
* @author Kohana Team | |
* @copyright (c) 2007-2008 Kohana Team | |
* @license http://kohanaphp.com/license.html |
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
<html> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=UTF-8"> | |
<title>Ractive Test</title> | |
</head> | |
<body> | |
<h1>Ractive Test</h1> | |
<div id="container"> | |
</div> |
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
<html> | |
<head> | |
<title>mustache says hi!</title> | |
</head> | |
<body> | |
<table id="students"> | |
<thead> | |
<tr> | |
<th>ID</th> |
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
/** | |
* fixes the encoding of the values in an associative array | |
* | |
* usage: | |
* $formatted_rows = util::utf8ize($formatted_rows); | |
* echo json_encode($formatted_rows); | |
* | |
* @param assoc $arr array to be processed | |
* @return assoc processed array | |
*/ |
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
[email protected] [~/www/sub/enlist]# pm2 start server.js | |
------------- | |
Looking for a complete monitoring and management tool for PM2? | |
_ _ _ _ | |
| | _____ _ _ _ __ ___ ___| |_ _ __(_) ___ ___ (_) ___ | |
| |/ / _ \ | | | '_ ` _ \ / _ \ __| '__| |/ __/ __| | |/ _ \ | |
| < __/ |_| | | | | | | __/ |_| | | | (__\__ \_| | (_) | | |
|_|\_\___|\__, |_| |_| |_|\___|\__|_| |_|\___|___(_)_|\___/ |
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
<html> | |
<head> | |
<title>the cryptogram</title> | |
<style> | |
.cnt_letter_item{ | |
display: inline-block; | |
border: 1px dotted black; | |
padding: 3px; | |
text-align: center; |