This file contains hidden or 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
MP3ENCODERSYNTAX=lame # Specify encoder for mp3 | |
CDROMREADERSYNTAX=cdparanoia # CD reader program to use | |
LAME=/usr/bin/lame # Path to lame encoder | |
ID3V2=/usr/bin/id3v2 | |
EYED3=/usr/bin/eyeD3 # Path to eyeD3 | |
CDPARANOIA=/usr/bin/cdparanoia # Path to cdparanoia | |
CDDISCID=/usr/bin/cd-discid # Path to cd-discid |
This file contains hidden or 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
from protorpc import messages | |
class MultiMessage(messages.Message): | |
"""Has a field for each basic value type. | |
""" | |
boolean = messages.BooleanField(1) | |
integer = messages.IntegerField(2) | |
float = messages.FloatField(3) | |
string = messages.StringField(4) |
This file contains hidden or 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
# Upstream nameservers | |
server=8.8.8.8 | |
server=8.8.4.4 | |
# Interface to listen on | |
interface=eth0 | |
# Interface(s) NOT to listen on | |
except-interface=wlan0 |
NewerOlder