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
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 |
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
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 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 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 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 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 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 | |
# This script is Mac specific! | |
# It installes the latest nightly build of XBMC. | |
# Have fun. Take a look at https://github.com/Velrok/scripts . | |
working_dir="/tmp/updateXBMC" | |
mount_dir="$working_dir/mount" | |
if [ ! -d $working_dir ] |
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
07-28 20:26:05:202 csync.owncloud - Authentication required | |
07-28 20:26:05:202 csync.owncloud - Call the csync callback for ownCloud | |
07-28 20:26:05:817 csync.owncloud - Skipping target resource. | |
07-28 20:26:05:817 csync.owncloud - Simple propfind OK. | |
07-28 20:26:05:817 csync.owncloud - opendir returning handle 0x7fec5a461390 | |
07-28 20:26:05:817 csync.owncloud - closedir method called 0x7fec5a461390! | |
07-28 20:26:05:817 csync.owncloud - => open called for owncloud://apps.moinz.de/own-cloud/files/webdav.php/clientsync/csync_timediff.ctmp | |
07-28 20:26:05:817 csync.owncloud - Stating directory owncloud://apps.moinz.de/own-cloud/files/webdav.php/clientsync | |
07-28 20:26:05:817 csync.owncloud - owncloud_stat owncloud://apps.moinz.de/own-cloud/files/webdav.php/clientsync called | |
07-28 20:26:05:817 csync.owncloud - I have no stat cache, call propfind for /own-cloud/files/webdav.php/clientsync. |
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 | |
#thanks to http://blog.walkingsmarts.com/twitter-client-in-3-bash-lines/ | |
read -s pass | |
url="http://eimantas:[email protected]/statuses/update.xml" | |
curl -d "status=$*" $url |
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 | |
help="usage: coffee-mashine coffe-source-dir compile-dir" | |
if [ ! $1 ] | |
then | |
echo "coffe-source-dir is missing" | |
echo $help | |
exit 1 | |
fi |
OlderNewer