Skip to content

Instantly share code, notes, and snippets.

View fullo's full-sized avatar

Francesco Fullone fullo

View GitHub Profile
@fullo
fullo / streamyard-tampermonkey.js
Last active November 5, 2020 23:56 — forked from rothgar/streamyard-tampermonkey.js
Streamyard Keyboard Shortcuts
// ==UserScript==
// @name Streamyard Keyboard Shortcuts
// @namespace http://streamyard.com
// @version 0.1
// @description Simple keyboard shortcuts for streamyard
// @author justinleegarrison@gmail.com
// @author ffullone@gmail.com
// @match https://streamyard.com/*
// @grant none
// @run-at document-end
Verifying that +francescofullone is my blockchain ID. https://onename.com/francescofullone
### 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:
@fullo
fullo / slack_notification.php
Created August 8, 2014 12:41 — forked from alexstone/slack_notification.php
free hugs dispenser
<?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
*/
@fullo
fullo / app.yml
Last active December 20, 2015 00:19
application: symfony-engine-ed
version: 1
runtime: php
api_version: 1
threadsafe: true
handlers:
- url: /favicon\.ico
static_files: web/favicon.ico
@fullo
fullo / gist:1446596
Created December 8, 2011 09:51 — forked from caillou/gist:1446583
Translation for relativeDate of moment.js
{
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',
@fullo
fullo / sfValidatorUACode.php
Created September 1, 2011 22:04
a small symfony 1.x validator for google analytics code
<?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');