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 Streamyard Keyboard Shortcuts | |
// @namespace http://streamyard.com | |
// @version 0.1 | |
// @description Simple keyboard shortcuts for streamyard | |
// @author [email protected] | |
// @author [email protected] | |
// @match https://streamyard.com/* | |
// @grant none | |
// @run-at document-end |
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
Verifying that +francescofullone is my blockchain ID. https://onename.com/francescofullone |
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
### Keybase proof | |
I hereby claim: | |
* I am fullo on github. | |
* I am fullo (https://keybase.io/fullo) on keybase. | |
* I have a public key whose fingerprint is B3B8 F77B 04FC 8DE5 CB38 F504 1A68 A576 BF60 4670 | |
To claim this, I am signing this object: |
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 | |
class slack { | |
/** | |
* $message is the text (plus image link) you want to send to slack room | |
* $room is the room where the message has to be sent | |
* $icon is the icon | |
* $username is the name of the bot | |
*/ |
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
application: symfony-engine-ed | |
version: 1 | |
runtime: php | |
api_version: 1 | |
threadsafe: true | |
handlers: | |
- url: /favicon\.ico | |
static_files: web/favicon.ico |
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
{ | |
de : { | |
today: "heute um %time", | |
tomorrow: 'morgen um %time', | |
next: '%weekday um %time', | |
yesterday: 'gestern um %time', | |
last: 'letzten %weekday um %time' | |
}, | |
it: { | |
today: 'Oggi alle %time', |
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 | |
class sfValidatorUACode extends sfValidatorRegex | |
{ | |
protected function configure($options = array(), $messages = array()) { | |
parent::configure($options, $messages); | |
$this->setOption('pattern', '/^ua-\d{4,9}-\d{1,4}$/i'); | |