r3wp [groups: 83 posts: 189283]
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r3wp

[All] except covered in other channels

[unknown: 9]
24-Feb-2005
[1314]
Modesty is a disease, and it wastes time, and truncates communication, 
which are both ethical crimes.
BrianW
24-Feb-2005
[1315]
heh.
[unknown: 9]
24-Feb-2005
[1316x2]
Anyone here know anything about Kylix?
and I mean you have installed and used it.
BrianW
24-Feb-2005
[1318]
for more than 30 minutes? No.
Graham
24-Feb-2005
[1319]
I still think the ip address should be cached in case the name server 
goes down .. if that was the problem.
Terry
24-Feb-2005
[1320x2]
It is far more impressive when others discover your good qualities 
without your help.
  -- Miss Manners
“The first test of a truly great man is his humility.”
                                                John Ruskin
Graham
24-Feb-2005
[1322]
terry .. can you post these into the quotes channel instead ?  Or, 
I can rename this the quote2 channel!
[unknown: 5]
24-Feb-2005
[1323]
Anyone tried the new MS Antispyware software.  Its pretty sweet.
Graham
24-Feb-2005
[1324]
Yes, see windows group .. I tried it a couple of weeks ago.
[unknown: 5]
24-Feb-2005
[1325x2]
testing my new color
Ahh purdy
Terry
25-Feb-2005
[1327]
Graham, you may want to change the name of this group to All, but 
quotes.
Graham
25-Feb-2005
[1328]
I've generalised the exceptions
Terry
25-Feb-2005
[1329]
Well, then.. you best be getting over to the Blog Chat group and 
get on Anton's case.. I see a quote there that's obviously out of 
order.
Graham
25-Feb-2005
[1330]
I always wanted to be a traffic cop
BrianW
25-Feb-2005
[1331]
oy. Talk about a crappy duty. Sorry, Graham ;-)
Graham
25-Feb-2005
[1332]
if you get a commission for every ticket ...
BrianW
25-Feb-2005
[1333]
Yeah, that wouldn't be so bad.
Graham
25-Feb-2005
[1334x2]
I thought that traffic duties were going to be safer than policing.
The first time I tried policing .. someone broke my leg :(
BrianW
25-Feb-2005
[1336]
yow
Terry
25-Feb-2005
[1337]
If i  paid $.02 for every time someone felt the need to criticize 
my $.02 worth, I'd owe AT LEAST a $1.50 by now.
Brock
25-Feb-2005
[1338]
Terry, I must admit, you do get 'dumped on' more than most.  I feel 
for you.
Maarten
25-Feb-2005
[1339x2]
looking for qa new mobile phone and considering the SonyEricsson 
K700 or S700, does anybody have them? Or other good advice ;-)
Basically, I need a phone that can act as a simple mobile (read-only) 
email client
BrianW
25-Feb-2005
[1341x2]
mmm ... bacon cheeseburger
lunch: get burger [bacon cheese]
Sunanda
25-Feb-2005
[1343]
diet: skip lunch 1
BrianW
25-Feb-2005
[1344x4]
if empty? stomach [ loop [ pout ] ]
Then again, I could eat a little less of the monstrous cheeseburgers.
This job is reminding me more and more why "data is code is data" 
could be a good thing.
stupid edit-compile-edit-debug-edit-debug-edit-compile-edit-scream_bloody_murder 
development cycle.
Ammon
25-Feb-2005
[1348]
Then you will really love the concepts that Anvil is built on.
BrianW
25-Feb-2005
[1349]
I might. Where's Anvil?
Ammon
25-Feb-2005
[1350]
On my hard drive. ;-)
BrianW
25-Feb-2005
[1351x3]
I'll be right over ;-)
A compile stage for web apps is just not right, anyhow.
... and there's a tiny addition to the REBOL content on my site. 
yay :-)
Graham
26-Feb-2005
[1354x2]
what's the best way of restarting a server application each night 
?  Use something like launch/quit .. between certain hours, but without 
setting some flag on the file system, how to ensure that it only 
happens once daily?
( encapped application )
Terry
26-Feb-2005
[1356]
If it's windows, I'd use Q.
Micha
26-Feb-2005
[1357x4]
a:  "123.456.789"
find/any/with   a  "*.456.789" "123"
none
plis help
Geomol
26-Feb-2005
[1361x2]
The /with refinement allows you to use alternatives to * and ? wildchars:

>> a: "123.456.789"
== "123.456.789"
>> find/with a "x.456.789" "xy"
== "3.456.789"
>> find/with a "y.456.789" "xy"
== "123.456.789"
I'm not sure, what you're trying to accomplish.
Gregg
26-Feb-2005
[1363]
In some cases I've done that Graham, I've also made a special "startup" 
EXE for a script that runs, waits a bit, the DOes the script, to 
give things a chance to shut down. I've also done it where the app 
was simple and I could just DO a module to refresh it. That gets 
trickier if you have a more complex app that maintains state and 
such.