Skip to content

Instantly share code, notes, and snippets.

val embeddedVideo = for ( validPageURL <- tryo(new URL(pageURL)) ?~ "invalid url"
v <- new YoutubeEmbeddedVideo(validPageURL)) yield v
val embeddedVideo = for ( validPageURL <- tryo(new URL(pageURL))
v <- tryo(new YoutubeEmbeddedVideo(validPageURL))) yield v
package code {
package model {
import java.net.URL
import dispatch._
import dispatch.liftjson.Js._
import net.liftweb.json.JsonAST._
import net.liftweb
import net.liftweb.util.Helpers._
package code {
package snippet {
import net.liftweb.common._
import net.liftweb.util._
import net.liftweb.http._
import net.liftweb.http.SHtml._
import model._
import model.UserType._
package code {
package snippet {
import net.liftweb.common._
import net.liftweb.util._
import net.liftweb.http._
import model._
object Preferences extends LiftScreen {
#!/bin/bash
#RAM
RAM=$(free -m | grep Mem: | awk '{print $3}')
let "ram = $RAM"
RAMBUFFER=$(free -m | grep Mem: | awk '{print $6}')
let "rambuffer = $RAMBUFFER"
RAMCACHE=$(free -m | grep Mem: | awk '{print $7}')
let "ramcache = $RAMCACHE"
let "ramused = ram-(rambuffer+ramcache)"
#!/bin/sh
# netstat.sh
# AddiKT1ve <the.addikt1ve@gmail.com>
# Mwyann <http://mwyann.info>
# Variables
ETHIFACE=eth0
WLANIFACE=wlan0
TMPDIR=.
@urcadox
urcadox / futureBad.scala
Created October 4, 2012 11:58 — forked from dyross/futureBad.scala
Scaling the Klout API with Scala, Akka, and Play
def blockingAndVerbose: Profile = {
val futureName = name()
val futureScore = score()
val futureFriends = friends()
val nameResult = Await.result(futureName, 10 seconds)
val scoreResult = Await.result(futureScore, 10 seconds)
val friendsResult = Await.result(futureFriends, 10 seconds)
Profile(nameResult, scoreResult, friendsResult)
@urcadox
urcadox / alarm.sh
Created April 22, 2013 21:44
Alarm script for PilotSSH
#!/bin/sh
tmux send -t alarm alarm SPACE $1 ENTER
echo "{ \"version\": 1, \"title\": \"Alarm\", \"type\": \"status\", \"status\": \"ok\", \"message\": \"Good night :)\"}"
#!/bin/bash
SLEEP=`echo "$1*3600" | bc`
echo "Alarm triggered in $1 hours"
sleep $SLEEP > /dev/null
echo "Starting playing"
mpc volume 50 > /dev/null
mpc play > /dev/null
mpcfade.sh 50 65 0
mpcfade.sh 65 75 1
echo "Turning on TV and switching input to me"