2005-12-15

randomfox: (Default)
2005-12-15 01:47 pm

Calculate bills and hits needed to add 1 to the George Score (Lua version)

Same as the Perl version of the program, but rewritten in Lua.

Read more... )
randomfox: (Default)
2005-12-15 01:47 pm

K-Meleon Lua macros for del.icio.us and BugMeNot

In accel.cfg:
# --- del.icio.us hotkeys ---

%ifplugin luamacros
VK_F12 = luamacros(Delicious)
SHIFT VK_F12 = luamacros(SetDelicious)

VK_F10 = luamacros(BugMeNot)
%endif

# --- End del.icio.us hotkeys ---
In macros.lua:
require "copyaslink"
require "google"
require "multiclip"
require "groups"
require "search"
require "search_add"

require "delicious"
In delicious.lua:
Read more... )
randomfox: (Default)
2005-12-15 11:09 pm

Perl script to convert an Adblock filter to a PAC filter

The following script takes an Adblock filter from the FilterSet.G archive and converts it to a PAC file.

Read more... )