aly / evelogparse.py

0 likes
0 forks
1 files
Last active 1481585196
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 1440820678
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 1440820623
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 }