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
._* |
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
/* | |
Copyright (c) <year> <copyright holders> | |
This software is dual licensed under: | |
- MIT license for non commercial usage (http://www.opensource.org/licenses/MIT) | |
- GPL license for commercial usage (https://www.gnu.org/licenses/gpl.txt). | |
If you want to use this software in a commercial project under another license contact me at <email> . | |
*/ |
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
#!/usr/bin/python | |
import os.path | |
import os | |
import sys | |
import datetime | |
class AtomWriter: | |
def __init__ (self, title, link = "http://localhost"): | |
self.title = title | |
self.link = link |
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
#! /usr/bin/python | |
import sys | |
import re | |
import os | |
def print_help(): | |
print "Checks if the given file is allready linked follwoing a schema." | |
print "" | |
print " -h --help prints this text" |
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
tell application "Address Book" | |
repeat with contact in people | |
repeat with icq in ICQ handles of contact | |
set nimbuzzIcq to (value of icq) & "@icq.nimbuzz.com" | |
set nimbuzzIcqFound to no | |
repeat with jabber in Jabber handles of contact | |
if (value of jabber) = nimbuzzIcq then | |
set nimbuzzIcqFound to yes | |
end if |
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
tell application "iTunes" | |
set playedBony to 2 | |
set skippPanelty to 10 | |
if not (user playlist "rate me" exists) then | |
display dialog "Dieses Script arbeitet auf der Playlist 'rate me' bitte erstellen Sie diese Liste. | |
Tipp: | |
Erstellen sie eine inteligente Wiedergabeliste die alle Audiodateien enthält die mehr als ein mal gespielt oder übersprungen wurden oder keine Wertung haben." | |
return |
NewerOlder