This file contains 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
val embeddedVideo = for ( validPageURL <- tryo(new URL(pageURL)) ?~ "invalid url" | |
v <- new YoutubeEmbeddedVideo(validPageURL)) yield v |
This file contains 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
val embeddedVideo = for ( validPageURL <- tryo(new URL(pageURL)) | |
v <- tryo(new YoutubeEmbeddedVideo(validPageURL))) yield v |
This file contains 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
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._ |
This file contains 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
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._ |
This file contains 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
package code { | |
package snippet { | |
import net.liftweb.common._ | |
import net.liftweb.util._ | |
import net.liftweb.http._ | |
import model._ | |
object Preferences extends LiftScreen { |
This file contains 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
#!/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)" |
This file contains 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
#!/bin/sh | |
# netstat.sh | |
# AddiKT1ve <[email protected]> | |
# Mwyann <http://mwyann.info> | |
# Variables | |
ETHIFACE=eth0 | |
WLANIFACE=wlan0 | |
TMPDIR=. |
This file contains 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
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) |
This file contains 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
#!/bin/sh | |
tmux send -t alarm alarm SPACE $1 ENTER | |
echo "{ \"version\": 1, \"title\": \"Alarm\", \"type\": \"status\", \"status\": \"ok\", \"message\": \"Good night :)\"}" |
This file contains 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
#!/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" |
OlderNewer