Create user.cfg in /startup and add the following lines (replace the values with suitable dimensions):
+nointrocinematics
xres=2880
yres=1800
| /* | |
| Copy this into the console of any web page that is interactive and doesn't | |
| do hard reloads. You will hear your DOM changes as different pitches of | |
| audio. | |
| I have found this interesting for debugging, but also fun to hear web pages | |
| render like UIs do in movies. | |
| */ | |
| const audioCtx = new (window.AudioContext || window.webkitAudioContext)() |
| #!/bin/bash | |
| play() { | |
| playlist="http://a.files.bbci.co.uk/media/live/manifesto/audio/simulcast/hls/uk/sbr_high/ak/bbc_$1.m3u8" | |
| echo $playlist | |
| if mpc | |
| then | |
| mpc add $playlist | |
| mpc play | |
| else | |
| mplayer $playlist |
| license: MIT | |
| border: no |
| license: CC0-1.0 |
| /* | |
| * This work is free. You can redistribute it and/or modify it under the | |
| * terms of the Do What The Fuck You Want To Public License, Version 2, | |
| * as published by Sam Hocevar. See the COPYING file for more details. | |
| */ | |
| /* | |
| * Easing Functions - inspired from http://gizma.com/easing/ | |
| * only considering the t value for the range [0, 1] => [0, 1] | |
| */ | |
| EasingFunctions = { |
| --- Animal.lua | |
| -- | |
| -- A simple example of a base class usng the classes library. | |
| -- | |
| -- @author PaulMoore | |
| -- | |
| -- Copyright (C) 2011 by Strange Ideas Software | |
| -- | |
| -- Permission is hereby granted, free of charge, to any person obtaining a copy | |
| -- of this software and associated documentation files (the "Software"), to deal |