Skip to content

Instantly share code, notes, and snippets.

View gre's full-sized avatar
3 cups required

@greweb gre

3 cups required
View GitHub Profile
@gre
gre / RealTime.js
Created August 1, 2011 17:39
RealTime.js - update system for building ajax stuff like autocompletes
/**
* RealTime.js : Update system
* Manage input (or textarea) smart callback on change
* @author Gaetan Renaudeau <[email protected]>, Namolovan Nicolae <[email protected]>
*/
var RealTime = function(node, o) {
var self = this;
this.input = node;
var getTime = function() {
@gre
gre / pusher.scala
Created August 6, 2011 14:38
Using Pusher API with Play framework in scala for publishing events
// Implementing the publishing Pusher REST API
// @see http://pusher.com/docs/rest_api
// with Play (scala) Framework
// @see http://scala.playframework.org/
class Pusher {
val appId = Play.configuration.getProperty("pusher.appId")
val key = Play.configuration.getProperty("pusher.key")
val secret = Play.configuration.getProperty("pusher.secret")
@gre
gre / text2speech_playframework.scala
Created August 10, 2011 18:06
Play framework + Scala : a text to speech in 2 line of code using google translate - this is an action, put it in any controller ;)
def speech(text:String) = {
val audio = WS.url("http://translate.google.com/translate_tts?tl=en").setParameter("q", text).get()
response.contentType = audio.getContentType()
audio.getStream()
}
/*
This is a Play! framework controller's action.
Put it in any scala controller.
Don't forget to import play.libs.WS
*/
@gre
gre / tricks.less
Created October 25, 2011 18:19
Some tricky LessCss mixins
.opacity(@val) {
opacity: @val;
@filter: @val*100;
filter: ~"alpha(opacity=@{filter})";
}
@gre
gre / code.less
Created October 26, 2011 15:58
Having fun with CSS headers (h1 and h2)
h1 {
&:hover:before {
content: '> ';
}
&:hover:after {
content: ' <';
}
}
h2 {
&:before {
@gre
gre / code.less
Created October 26, 2011 16:32
CSS: p.tip for tips
p.tip {
font-style: italic;
padding: 0.5em 1em;
border-left: 2px solid #aaa;
&:before {
content: "Tip: ";
font-weight: bold;
}
}
@gre
gre / Controller.java
Created October 27, 2011 14:16
Missing feature of Play framework
protected static void redirectToReferer() {
redirect(request.headers.get("referer").values.get(0));
}
@gre
gre / code.scala
Created December 12, 2011 09:20
Play20 Promise sequence function
// What is a Promise sequence function ?
// A function which transform a List[Promise[A]] into a Promise[List[A]]
// First naive implementation. It's a synchronous implementation (blocking).
def sequencePromises[A](list: List[Promise[A]]): Promise[List[A]] = {
Promise.pure(
list.flatMap(e => e.value match {
case Redeemed(value) => Some(value)
case Thrown(e) => { Logger.debug("thrown "+e); None }
})
@gre
gre / code.scala
Created December 12, 2011 09:34 — forked from sadache/code.scala
Play20 Promise sequence function
// What is a Promise sequence function ?
// A function which transform a List[Promise[A]] into a Promise[List[A]]
// Usage:
// val list: List[Promise[Int]] = ...
// val sequenced: Promise[List[Int]] = list.sequence() // got it :)
package utils
import play.api.libs.concurrent._
@gre
gre / README.md
Created January 7, 2012 12:30
Grisbi HTML's export stylifier

What?

Grisbi is a personal finance manager http://www.grisbi.org/

This script helps you to make Gribsi HTML report export looking nicer. It only works with "Revenus et dépenses" report mode. (incomes and expenses)

How To