The popular open-source contract for web designers and developers by Stuff & Nonsense
- Originally published: 23/12/2008
- Revised date: 15/12/2013
- Original post
// gruntfile dropin used to build a grunt files object with 1:1 structure | |
function globToMultiFiles(glob, dest, options) { | |
var path = require('path'); | |
grunt.util = grunt.util || grunt.utils; | |
dest = grunt.template.process(dest); | |
options = grunt.util._.defaults(options || {}, { | |
cwd: '', |
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>An American Flag Made with CSS</title> | |
<meta name="author" content="Jay Robinson, http://jayrobinson.org"> | |
<style type="text/css"> |
--[[ | |
This is a Proof Of Concept of a feature I miss in VLC: "stop after this track" | |
This is my first time hacking VLC, so I have some questions: | |
1) Is "descriptor().description" useful? (I can't find how it is used by VLC) | |
2) When is "meta_changed()" called and what is it supposed to return? | |
3) Is there a VLC Lua API's documentation? (I read https://www.videolan.org/developers/vlc/share/lua/README.txt but I had to pick up some stuff from existing extensions on GitHub to get this done) | |
4) Is there a "standard" way to handle localization? | |
5) Is it possible to add an entry to the tray icon's context menu? (How?) |
--[[ | |
This is a Proof Of Concept of a feature I miss in VLC: "stop after this track" | |
This is my first time hacking VLC, so I have some questions: | |
1) Is "descriptor().description" useful? (I can't find how it is used by VLC) | |
2) When is "meta_changed()" called and what is it supposed to return? | |
3) Is there a VLC Lua API's documentation? (I read https://www.videolan.org/developers/vlc/share/lua/README.txt but I had to pick up some stuff from existing extensions on GitHub to get this done) | |
4) Is there a "standard" way to handle localization? | |
5) Is it possible to add an entry to the tray icon's context menu? (How?) |
#!/bin/sh | |
name="$1" | |
shift | |
PATHS="org.mpris.MediaPlayer2.$name /org/mpris/MediaPlayer2" | |
DBUS_SEND="dbus-send --type=method_call --dest=$PATHS" | |
RC="$DBUS_SEND org.mpris.MediaPlayer2.Player" | |
if [ "$@" = "prev" ]; then | |
$RC.Previous | |
elif [ "$@" = "stop" ]; then | |
$RC.Pause |
#!/usr/bin/env python | |
import sys | |
from os import environ | |
if 'DISPLAY' not in environ: | |
exit(0) | |
name = "rhythmbox" | |
if len(sys.argv) > 1: |