
is on 5 Live going on about "This England team concede too many goals. The defending is slapdash"..er...Graham, are you suffering from Alzheimers you useless fuckdolphin?
( , Wed 8 Sep 2004, 20:42, archived)

Hoof.
That is all.
Oh and in case anyone thinks theyve stumbled onto a football messageboard by mistake - KITTENS!
( , Wed 8 Sep 2004, 20:46, archived)

have anyone to play us at this rate
I love the fact the ref booked a player for kicking off too early...must be English
( , Wed 8 Sep 2004, 20:49, archived)

Savage was sent off for being a cnut
( , Wed 8 Sep 2004, 20:53, archived)

then give me complete and total rights to use it and never give you a bean and totally exploit your talent for my own purposes?
( , Wed 8 Sep 2004, 20:32, archived)

that costs nothing to make.
And saxamophone isn't creepy.
So I can't do it.
Unless it's miditastic
( , Wed 8 Sep 2004, 20:41, archived)

*breathe*
ahahahahahahahahahahahahaha
fanfuckingtastic!
( , Wed 8 Sep 2004, 20:46, archived)

or is it just me?
( , Wed 8 Sep 2004, 20:56, archived)

the link doesn't work also - tom.walsham.org/
Did you send it into Rob for the newsletter?
( , Wed 8 Sep 2004, 21:00, archived)

I just made it to the Domo Level at last and it reminded me of this easyspace.netmag.easyspace.com/images/domobix.gif :)
( , Wed 8 Sep 2004, 21:05, archived)

I had seen a few domobixes though.
tom.walsham.org is b0rked at the moment (my server is deaded)
And I had not sent it to Rob yet, though was going to.
( , Wed 8 Sep 2004, 21:08, archived)

that's how they do it for films I think.
( , Wed 8 Sep 2004, 20:52, archived)

nice.
I may have to resort to merely heavy breathing.
Which is a hobby of mine anyway
( , Wed 8 Sep 2004, 20:53, archived)

for just such an occasion actually. Possibly part of flashkit.com
( , Wed 8 Sep 2004, 20:57, archived)

but was looking more for longer thingies...seems to be fx there rather than music.
Will do it myself with midi and reverb i think
( , Wed 8 Sep 2004, 21:04, archived)

if you want it, you can have it, provided you mention me in whatever you're going to do with it.
it's truly crappy but it might work in an 80's style friday the 13th way.
( , Wed 8 Sep 2004, 21:16, archived)

quite how wonderful Pablo Honey actually was
/wanders off mutttering
( , Wed 8 Sep 2004, 20:29, archived)

I can only connect that with strange mutterings of "fitbah" from Mr Hidden, followed by his sudden, mysterious absence.
( , Wed 8 Sep 2004, 20:35, archived)

as only getting commentary online. Blimming foreign tv rights. arse
( , Wed 8 Sep 2004, 20:37, archived)

but it's more difficult for Mr Hidden as a Scot living in Englandcestershire (hello 118 enquiries? Pubs showing the Scottish game? Faaack offf you Northern Monkey, you're 'aving a larf)
( , Wed 8 Sep 2004, 20:42, archived)

You don't complain when your multiplex is not showing the 117th best film, but you'd expect them to have one of the top 5
/crap metaphor
( , Wed 8 Sep 2004, 20:45, archived)

One match a genius, the next couldnt hit the proverbial cows arse
( , Wed 8 Sep 2004, 20:33, archived)

except for that quality goal against fulham.
Fucksticks arsecunts, David James woulda fucking saved that muppet fuck idiot bastards
( , Wed 8 Sep 2004, 20:34, archived)

our (Southend United's) was on local radio giving advice to David James. So if James came flying out for a cross,flapped at it and missed, that would have been his contribution.
( , Wed 8 Sep 2004, 20:37, archived)

the Leyton Orient 3rd keeper.
/tenuous claim to fame
( , Wed 8 Sep 2004, 20:38, archived)

being a combined Cambridge United / Man City fan. The bloody arse Orient nicked our (cam) manager, jsut after he's sold them our best players for a song.
Shitters
( , Wed 8 Sep 2004, 20:43, archived)

are playing in Berlin. Referee is Urs Meyer.
( , Wed 8 Sep 2004, 19:59, archived)

BOMBS AWAY!
*runs in, pulls out Dietmar Hamann, runs back out*
( , Wed 8 Sep 2004, 20:02, archived)

bloody television.... I my day we had sock puppets and magic lanterns... grumble grumble..
( , Wed 8 Sep 2004, 20:03, archived)

You're not wrong, y'know.
What the hell are you doing here? Get out of my house!
( , Wed 8 Sep 2004, 20:00, archived)

recommend me a reasonable audio editing program?
( , Wed 8 Sep 2004, 19:44, archived)

depends what for.
wavelab or soundforge for simple wav cut/splice and processing.
cubase/nuendo/logic for multitrack recording and production.
the only free one i can recall of the top of my head is called audacity.
( , Wed 8 Sep 2004, 19:45, archived)

audacity.sourceforge.net/
EDIT: new version! *click*
( , Wed 8 Sep 2004, 19:52, archived)

anyoen know how to work preg_split to nick weather off the bbc site? I need to get it to ignore everything above and below what I want and define the content I am nicking as a variable
( , Wed 8 Sep 2004, 19:32, archived)

If you're getting the page as a variable, you're probably better to trim() off the bits you don't want or left() and right() the bits you do. Then you can play with the good stuff.
preg_split -- Split string by a regular expression
Description
array preg_split ( string pattern, string subject [, int limit [, int flags]])
Returns an array containing substrings of subject split along boundaries matched by pattern.
If limit is specified, then only substrings up to limit are returned, and if limit is -1, it actually means "no limit", which is useful for specifying the flags.
flags can be any combination of the following flags (combined with bitwise | operator):
PREG_SPLIT_NO_EMPTY
If this flag is set, only non-empty pieces will be returned by preg_split().
PREG_SPLIT_DELIM_CAPTURE
If this flag is set, parenthesized expression in the delimiter pattern will be captured and returned as well. This flag was added for 4.0.5.
PREG_SPLIT_OFFSET_CAPTURE
If this flag is set, for every occuring match the appendant string offset will also be returned. Note that this changes the return value in an array where every element is an array consisting of the matched string at offset 0 and it's string offset into subject at offset 1. This flag is available since PHP 4.3.0 .
Example 1. preg_split() example : Get the parts of a search string
// split the phrase by any number of commas or space characters,
// which include " ", \r, \t, \n and \f
$keywords = preg_split ("/[\s,]+/", "hypertext language, programming");
Example 2. Splitting a string into component characters
$str = 'string';
$chars = preg_split('//', $str, -1, PREG_SPLIT_NO_EMPTY);
print_r($chars);
Example 3. Splitting a string into matches and their offsets
$str = 'hypertext language programming';
$chars = preg_split('/ /', $str, -1, PREG_SPLIT_OFFSET_CAPTURE);
print_r($chars);
will yield
Array
(
[0] = Array
(
[0] = hypertext
[1] = 0
)
[1] = Array
(
[0] = language
[1] = 10
)
[2] = Array
(
[0] = programming
[1] = 19
)
)
Note: Parameter flags was added in PHP 4 Beta 3.
See also spliti(), split(), implode(), preg_match(), preg_match_all(), and preg_replace().
( , Wed 8 Sep 2004, 19:48, archived)

I happened to have php docs locally. They're very hard to find.
( , Wed 8 Sep 2004, 20:05, archived)

thank god I use perl, which has stuff like this
( , Wed 8 Sep 2004, 20:06, archived)

in most languages. The above is the PHP docs on the function he was asking about.
perl is certainly powerful, but due to being processed inline, I think PHP might be more suited to this type of work. It's not a matter of better or worse, but different means to an end.
( , Wed 8 Sep 2004, 20:13, archived)

Caught in her sockets and making her cry
Filthy Love Milk in my babies eye
Melting her peepers, indescribable pain
Caustic boy bleach burning her brain
Caught in her nostrils and making her sneeze
Filthy Love Milk nasel disease
Frothy sinuses... congestion grows
My load's been blown twice once it's cum out her nose.
( , Wed 8 Sep 2004, 19:23, archived)

( , Wed 8 Sep 2004, 19:35, archived)

I currently have:
Giant Bee
Zoology dragon
We like the moon
Fishy song
Half a Guava
( , Wed 8 Sep 2004, 19:20, archived)

Lalalalalala, oo-hoo-hoo.
Lalalalalala, oo-hoo-hoo.
(Repeat several times, then add a "rib-a-lib-a-lib-a-lib" and repeat some more)
( , Wed 8 Sep 2004, 19:44, archived)

www.btinternet.com/~crillboy/property_morephotos.cfm.htm
( , Wed 8 Sep 2004, 19:19, archived)

and they always have to keep one arm on their little trolley thing. even if that involves putting their arm around me to do it. dont know why they dont just sit on the outer seat. urrrgh
( , Wed 8 Sep 2004, 19:16, archived)

I agree. Still, it seems to be short on gmail invites, shit poetry* and isketch rooms at the moment.
*Not for long though.
( , Wed 8 Sep 2004, 19:16, archived)

Apparently the trained monkeys up at Warrington Borough Council are on holiday or something, as apparently it takes a month and a half to process a cocking bus pass. I believe they shall be getting their tickets back again, then they can send me a cheque in re-imbursement.
( , Wed 8 Sep 2004, 19:19, archived)

some bastard has registered yarr.org and made it the unspeakable
( , Wed 8 Sep 2004, 19:09, archived)

goatse. please warn of things like this.
no-one wants to see it.
( , Wed 8 Sep 2004, 19:10, archived)

edit: that fucking hurt and my arse is bleeding, you cunts.
( , Wed 8 Sep 2004, 19:13, archived)

Anyone want 200 glowsticks?
( , Wed 8 Sep 2004, 19:15, archived)

how shit are they? i feel a project coming on anyway..
( , Wed 8 Sep 2004, 19:17, archived)

About 8inches long, and to be fair they do glow, but I was hoping for something a bit brighter.
( , Wed 8 Sep 2004, 19:20, archived)

i once tried to buy a pack of 25 diamonds for 15 quid. needless to say they never came.
( , Wed 8 Sep 2004, 19:59, archived)

I'd rather make a shit project than loose the hard earned money I spent on them.
Edit: or give them to my sister for christmas.
( , Wed 8 Sep 2004, 19:25, archived)

me, i can think of a million uses for it which i wouldn't be prepared to do with my own.
( , Wed 8 Sep 2004, 19:18, archived)

could buy me a Hifi, a new PC, a dvd player + a TV, some CDs, a ride on lawm mower (even tho i have the smallest garden ever), a monkey in a fez, some other stuff too.
edit: and i need some new clothes too.
( , Wed 8 Sep 2004, 19:26, archived)

be whatever time i turn the TV on hoping to find something worth watching, only to be diappointed by seeing Dale winton or some other loser twat presenting some shitty gameshow wasting 1 hr over what could be over and done with in 10 mins.
( , Wed 8 Sep 2004, 19:08, archived)

i just bought a graphics tablet worth 280 quid for 40 quid on fleabay :D
( , Wed 8 Sep 2004, 19:00, archived)

link please? i want to see what a bargain looks like
( , Wed 8 Sep 2004, 19:13, archived)

I know you just want it so you can simulate the thrill of making thousands of people late for work every day.
( , Wed 8 Sep 2004, 18:59, archived)

all those recent rail crashes / plot some new ones.
( , Wed 8 Sep 2004, 19:04, archived)

i've spent a few hours recording an acoustic guitar track. only now do i discover that i can't sing it.
so, if any of you can sing circles by incubus (transposed down -3 steps to B), the backing is here
Bah!
( , Wed 8 Sep 2004, 18:09, archived)

believe me i tried. and i'm not brave enough to make the results public.
( , Wed 8 Sep 2004, 18:13, archived)

of which,
does anyone have the "come to norway it's better than kenya" version link thing?
( , Wed 8 Sep 2004, 18:20, archived)

a look on glassco.cx but i couln't find it last time i looked.
( , Wed 8 Sep 2004, 18:26, archived)

your googling skillz.
Ahh it's still as great as i remember it.
( , Wed 8 Sep 2004, 18:32, archived)

okay, i'll just have to download the song and then sing it really really badly myself.
( , Wed 8 Sep 2004, 18:24, archived)

Then pitch shift it in Wavelab. At worst it'll
either sound like a munchkin or the cookie monster.
( , Wed 8 Sep 2004, 18:34, archived)

i pitch shifted the guitars already, and still can;t sing it. it's not really the pitch (this song in B is fine for me), but it's just so damn difficult.
( , Wed 8 Sep 2004, 19:05, archived)

Colin Pilinger is becoming something of a bogeyman for space probes isn't he? Pilinger is behind Beagle - Beagle gets eaten by Mars. Pilinger is to analyse data from Genesis - Genesis make heap um big hole in desert.
Maybe we should sell him to Al-Qaeda.
( , Wed 8 Sep 2004, 17:52, archived)

veepers.budlight.com
I think it's been blocked from here since someone sent malicious emails using the bosses email address. I could just be paranoid and the site might be down though.
( , Wed 8 Sep 2004, 17:38, archived)

news.bbc.co.uk/1/hi/health/3637130.stm
Well of course not, they're mad. Duh.
( , Wed 8 Sep 2004, 17:29, archived)

they'd find out that the problem is actually deliberate understaffing due to a vast conspiracy headed from Mars by Elvis Presley. Simple.
( , Wed 8 Sep 2004, 17:30, archived)

be used as 'Marital Aids' either.
There'd be a huge demand for them ... !!!
'Spice up your sex life with a free Mental Patient'.
You'd be crushed in the rush.
( , Wed 8 Sep 2004, 17:39, archived)
« Older messages | Newer messages »