Slashdot Mirror


User: sporty

sporty's activity in the archive.

Stories
0
Comments
1,913
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1,913

  1. Re:Oh look, it's all "Me, me, me!" on Geek Christmas Gift Ideas · · Score: 2
    Given that it's not ever likely that people are going to be nice to each other all the time, isn't it a good thing that they are more nice for even a couple of weeks of the year? What kind of Scrooge are you, anyway?


    That's called hypocrisy my friend. You aren't being nice for the sake of being nice. You are being nice because someone else or society tells you to be nice.

    That's like brushing your teeth for everyone else's sake. You should be doing it because you want to keep your teeth.
  2. Re:Chase the Chuckwagon is crap! on Top Ten Most Collectible Video Games · · Score: 2

    Define worth. Worth money? Worth joy of having? Worth of rarity?

  3. Re:AOL is a court winner on AOL Awarded Millions in Spam Case · · Score: 2

    Nonoono.. you got it wrong. They got awarded ANOTHER 7 million. They should be up to 14 million. ;)

  4. Re:Well obviously that should be the case on Geek Christmas Gift Ideas · · Score: 2

    Heh, realists of the world unite! We should just form our own damned holiday. Call it everyday, copyright and patent it. :)

  5. Re:Oh look, it's all "Me, me, me!" on Geek Christmas Gift Ideas · · Score: 2

    This will come off bitter, but hear me out before you just think 'troll'. The human race is flawed.

    It's not about group survival.. it's about good ol' #1

    It's not about good will to all man, but just so long as it makes ourselves look good.

    It's about feeling guilty because your parents taught you better.

    It's not about keeping jobs in the US instead of hiring in India, or having our president elected by a corrupt system, or dumping our electronics in China.

    The people I love, and I care about, I make sure htey know it every day.. and if not every day, at least once a week. And if not every week, as soon as fesably possible. X-mas has become a cookie cutter holiday where everyone is supposed to be nice, and then go back to the daily grind.

    When people start to change their ways, maybe i'll see x-mas as a real holiday, where we all celebrate as a reminder of the ones we love vs a day to nag our consciouses to "do good".

  6. Re:Holds the Cake? on DSL Rising · · Score: 2

    Well, if you wanna eat your cake, who would you rather holding it? :)

  7. Re:cable IS better on DSL Rising · · Score: 3, Interesting
    ...between loosing connectivity due to crappy PPOE software, inability to host web services on the line for the same reason,


    That is dependent on your DSL provider, no? I have a dsl bridge, so my traffic is raw. Unfortunately, acedsl, in ny, is a shitty provider as well. I see other people's arp requests. They use a software router that will ban arp's that aren't listed in their db at a 5 minute refresh rate. Stupid stupid stupid.

    pain in the ass phone filters all over my house


    Sounds like your place didn't have dsl installed on a particular extension in your house. It was done like that for me. One jack had it installed, one phone filter.. don't notice anything.

    Now add to that the fact that Cable is Faster and works invisibly to my machine (DHCP) gives me an accesable IP and has no additional hardware (phone filters) yada yada yada.... Why WOULD i want DSL...


    Depends on where you live. Because your line becomes dedicated in DSL, you can have guaranteed line speeds TO your isp. With cable, correct me if I'm wrong (nicely), hubs/switches are installed regionally. Small regions... like 1 per house or set of houses. They can become saturdated if you are in an apt building and have a lot of downloaders. Some places, 1.5Mb/s is about $40. In nyc, it is a bit pricier.

    Why would you want dsl? Some cable providers filter, manipulate and/or track. I can't speak for who-does-what, but I've heard stories. You can't find a mom-and-pop cable provider that has nice restrictions. I don't like AceDSL? I can go to clound9, or speakeasy or nyct.net. There are more than a dozen out in brooklyn. Cable? All i have is cablevision. I don't care for them much, but i have more choices.

    Maybe cable is great for you, but dsl does have its merits and advantages depending on who you are :)
  8. Re:Think of it as Democracy in action. on Keeping An Eye On Total Information Awareness · · Score: 2

    Is you is, or is you ain't, ma' consituancy? Sorry.. couldn't help it :)

  9. Re:.porn on Plans For New TLDs · · Score: 0, Offtopic

    Egress filtering for content. Allow out only what you want out.. or there.. or something :)

  10. Re:googling on Googling For Dates? · · Score: 3, Funny

    Holy marklar, marklar!

  11. Re:Now for Phase 2 on Spammer Gets Spam Mailed · · Score: 2

    3. Profit!

    We've finally gotten it! It's like the monkeys.. and shakespear thing.. I knew it wasn't an NP problem :)

  12. Re:All would've been different... on MacAddict Tracks Down eBay Scam Artist · · Score: 2

    Ah, but it was done via cheque that the UPS took, in good faith, to be a payment. It wasn't cleared until he tried to deposit it.

  13. Re:Maybe the magager is right. on Information for Managers - Understanding pthreads? · · Score: 2

    Well, that's probably a good reason the manager is asking for resources, nuh? Not to say that the manager won't be right in the end, but at least he/she is willing to become more informed.

  14. Re:But separate processes ARE better. on Information for Managers - Understanding pthreads? · · Score: 3, Interesting
    >>If i need to split off the process once per day, forking is fine.

    Bullshit.


    Some context switches are cheaper than others :P Point being, fork has had a long running history of more expensive context switches copying code from a written to memory block and process creation vs threads. :P

    This is the only time I'll respond to an AC since "bullshit" is apparently an argument now-a-days.

  15. Re:Oi? on Information for Managers - Understanding pthreads? · · Score: 2

    Ah, but the cost of fork is higher in the process creation.... process :) What's worse, is the copying of memory on the changing of variables in a fork'd process. With threads, you know ahead of time what will be changing and can compensate for it.

  16. Re:But separate processes ARE better. on Information for Managers - Understanding pthreads? · · Score: 2

    Better is always relative. It's relative to what you are doing, how you are doing it, where and how.

    Forking has a context switch to deal with. That's a fact. Now if I was doing some heavy mathematical computation that required new processes every second for a long period of time, threads would win out.

    If i need to split off the process once per day, forking is fine.

    As for protection, it's a mutex lock. Learn to use them properly, no deadlocks or ill use of resources, and you are fine. It's extra work for using threads, but isn't it worth it if you save thousands of context switches on fork()ing per second if you need to do parallel processing to that scale?

  17. For you managers out there... on Information for Managers - Understanding pthreads? · · Score: 2

    For you managers out there, it's good to listen to your developers and let them show you things. Sometimes when they wish to use a technology or method, it's for VERY good reason.

    There are a lot of managers out there who distance themselves... so be happy they are learning the technology vs a 2 minute shpeel on why they should use something.

  18. It's software engineering! on Giving the Customer What They Wanted? · · Score: 1, Redundant

    You should take a look at a software engineering course and a few books.

    They describe exactly what you are talking about, from writing specs to implementation. From forming teams, to prototyping a product before you start doing the hard parts.

  19. Re:Steve Gibson on Large IDE Drives as Long-Term Archival Media? · · Score: 2

    True.. but having say, a raid system, and periodically swapping out one of the mirror drives for blank one is a quick-and-dirty solution. At least then, you aren't using your drives all the time. And if one fails, you still have two :)

    No, not an ideal, but it works. Btw, drop a tape, you scratch a corner. Drop a drive, drop a few tears :)

  20. Re:Please be quite! on Should Every Retail Outfit Have A Webpage? · · Score: 2

    Good! If a company that uses some sorta CGI/program that doesn't have the money to spend on maintaining it due to cost, shut it down! I don't want MY information being shared with some blackhat.

  21. Re:Quark can't afford to make a mistake on Reprieve for Booting New Macs With Mac OS? · · Score: 2

    But they have entire libraries to do the transition with! Using carbon won't be the end of the world, especially for a large shop like Quark.

  22. Re:Accessibility on Should Every Retail Outfit Have A Webpage? · · Score: 3, Interesting

    You forgot to bold one other word. should. It depends on whether or not the company sees an advantage of putting up a site. Does it generate revenue or is it a waste?

  23. Various translations... on Optical Camouflage · · Score: 2

    Since we all don't speak the native languages of English or Japanesse, here are the translated versiosn from....

    English to Japanesse

    and...

    Japanesse to English

    We can't let those scientists have the fun of putting up bilingual pages up. After all, what's science without bad translations, eh?

  24. Re:what's it good for? on SmartEiffel 1.0 Released · · Score: 2

    How about ruby? I don't know what comes first, but ruby, you can do stuipd things like 1.toOctalString( ) or the equiv :)

  25. Re:This might just be a good thing on End In Sight For Alpha · · Score: 1, Flamebait

    Same thing is why Apple and macs shine, and IBM and OS/2 floundered.