| Teratogen | a club a brake lock |
| jalex | yeah I have gas cap and wheel locks too =) |
| Teratogen | a hidden coil disconnect switch |
| jalex | geeesh, you dont even live in the ghetto do you? |
| Teratogen | funny thing is I had a hood lock in storage that I've been MEANING to put on the jeep I put it on today, required installation of two bolts a little bit late =( well, I don't necessarily live in the ghetto |
| simcop2387-tv | GumbyBRAIN, SEX |
| Teratogen | but it's an open-air jeep |
| GumbyBRAIN | Itym alt.sex.stories. |
| simcop2387-tv | yay! eightbitbastard, did you get perl to run on a z80 |
| eightbitbastard | a z80? |
| jalex | http://www.savannajones.com/categories/jeep_body_frame/ -- funny it even mentions stolen batteries ..hood lock haha crazy world |
| eightbitbastard | i'm looking for the shortest/fastest/easiest way to set all list values of a certain value to another value |
| Teratogen | that lock won't fit my 1994 jeep I have an older type lock |
| dondelelcaro | eightbitbastard: map eg. map {$_ eq 'bar'?'baz':$_} LIST; |
| simcop2387-tv | map++ |
| eightbitbastard | ok, i figured that's what everyone would say, i was wondering if there was anything better |
| Jmax- | you could use a for/foreach loop but that would be larger tahn a map |
| jalex | supermap is better than map |
| eightbitbastard | naw, too much work |
| jalex | and ubersupermap is even better |
| dondelelcaro | I mean, you could do other things, but if you want to take a list and return a list, map. (or grep for special cases of map) |
| eightbitbastard | hmm, just to make sure, map returns the modified array, correct? |
| simcop2387-tv | yes, unless you modify $_ in which case you can do it inplace but its non-obviou s |
| eightbitbastard | can you show me a quick inplace example with $_ modified |
| simcop2387-tv | eval: @a=qw(1 2 3 4 5); map {$_++} @a; @a; |
| buubot | simcop2387-tv: 5 |
| simcop2387-tv | eval: @a=qw(1 2 3 4 5); map {$_++} @a; \@a; |