aly / mediaserverindex.html
0 likes
0 forks
1 files
Last active
A drop-in media server index for apache that uses directory indexing and adds a HTML5 video player. loads directory changes with ajax
| 1 | <html> |
| 2 | <head> |
| 3 | <script src="jquery.js"></script> |
| 4 | </head> |
| 5 | <body> |
| 6 | <span id="VideoList"></span> |
| 7 | <script> |
| 8 | var videosPath = "/Videos/"; |
| 9 | var curdir = ""; |
| 10 | function updateList(data) { |
aly / evelogparse.py
0 likes
0 forks
1 files
Last active
EVE Online unfinished chat log parser. Contains some useful functions.
| 1 | import os |
| 2 | import time |
| 3 | |
| 4 | # Config |
| 5 | NAME = ["Steven Kafshaz"] |
| 6 | |
| 7 | LASTMSG = {} |
| 8 | |
| 9 | def filesbychannel(dirlist): |
| 10 | out = {} |
aly / skype_list_rooms.py
0 likes
0 forks
1 files
Last active
List active chats with their IDs. Used with https://gist.github.com/blha303/9913570
| 1 | import Skype4Py |
| 2 | skype = Skype4Py.Skype(Transport='x11') |
| 3 | print "\n\n".join(["%s: %s" % (a.Name, ", ".join([b.Handle for b in a.Members])) for a in skype.Chats]) |
aly / mp3list.php
0 likes
0 forks
1 files
Last active
Produce list of MP3 files in current and sub directories, playable by clicking
| 1 | <?php |
| 2 | if (isset($_GET['print'])) { |
| 3 | highlight_file(__FILE__); |
| 4 | die(); |
| 5 | } |
| 6 | function load_addon($filename) { |
| 7 | if (file_exists($filename)) { |
| 8 | include $filename; |
| 9 | } |
| 10 | } |