Monthly Archive for May, 2009

Page 2 of 4

R-LIMS 1.4.3 has been released

R-LIMS 1.4.3 has been released, which is a maintenance update.

Changelog
[Beta] [Database Administration] phpMyAdmin has been updated to 3.1.5-rc1

  • Share/Bookmark

Show week numbers in Microsoft Outlook

A hidden feature i was looking for for ages; show the weeknumbers. You can show week numbers only in the Month view.

  1. On the Tools menu, click Options.
  2. Click Calendar Options.
  3. Show week numbers in the Date Navigator
  • Share/Bookmark

Show your power

Type /power to use

;Power
alias power {
var %chancounter = 1, %opchans = 0, %power = 0, %totalppl = 0
while (%chancounter <= $chan(0)) {
if ($me isop $chan(%chancounter)) {
set %power %power + $nick($chan(%chancounter),0)
inc %opchans
}
set %totalppl %totalppl + $nick($chan(%chancounter),0)
inc %chancounter
}
msg # I'm opped in %opchans $iif($chan(0) >= 2,channels,channel) of the $chan(0) I'm in. I control %power people. That's $round($calc((%power / %totalppl) * 100),1) $+ $chr(37) of %totalppl people.
}

  • Share/Bookmark

Unban yourself script for mIRC

Works automatically

;Ban Protection
on !@*:BAN:#:{
/var %b = 1
while ($ialchan($banmask,#,0) >= %b) {
if ($ialchan($banmask,#,%b).nick == $me) { /mode # -b $banmask | halt }
/inc %b
}
}

  • Share/Bookmark

Simple away script

Type /away to activate and deactivate.

alias away {
if ($1 == $null) {
if ($away) { .raw away | echo -a [ away ] you're back }
else { .raw away :I'm away since $asctime | echo -a [ away ] you're away since $asctime }
}
else {
.raw away :I'm away ( $+ $1- $+ ) since $asctime | echo -a [ away ] you're away ( $+ $1- $+ ) since $asctime
}
}

  • Share/Bookmark