Search found 3 matches

by Nugget
Mon Jun 14, 2004 4:56 pm
Forum: General chat
Topic: Bash script for crontab
Replies: 9
Views: 8195

A useful trick if you're going to go the "ps | grep" route is to use egrep to avoid matching the grep itself.

Casual experimenting will lead to the discovery that "ps ux | grep ircd" will catch itself about half the time. Instead, I prefer to use something like this:

ps -uxww | egrep "[i]rcd ...
by Nugget
Mon Jun 14, 2004 4:52 pm
Forum: Unreal 3.2 Support
Topic: how can i use chinese nick in this ircd?
Replies: 6
Views: 4085

How does this work out in practice? There seems to be no consistency for non-ascii character support in irc clients, and I'm sure that support for non-ascii nicks is even more brittle than the mess we see with channel traffic.

I'd love to be able to reliably use utf-8 on irc, but it's just too ...
by Nugget
Mon Jun 14, 2004 4:47 pm
Forum: Unreal 3.2 Support
Topic: Can I hide my idle time ?
Replies: 17
Views: 17502

I presume the goal is to obscure the potential situation where all the IRCops on a network are idle and therefore unable to respond to abuse. Channels that don't have complete Op coverage are often subject to this sort of abuse where the lamers wait until all the channel ops go to sleep before ...