Slashdot Mirror


User: markprus

markprus's activity in the archive.

Stories
0
Comments
13
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 13

  1. Re:Full Monty on Device Stops Speeders From Inside Car · · Score: 1

    I don't know what the law is on the books, but after living in NYC for 15 years I can say I never saw an NYPD, NYFD or an ambulance wait at a red light with their lights on and a siren going. Of course they don't plow right through it, slowing down considerably at each intersection. I think I would be somewhat concerned actually if they obayed the traffice lights!

  2. Fax machine on Large-Scale Paper-To-Digital Conversion? · · Score: 5, Interesting

    Just fax the documents to a computer.

  3. Aliases on Gmail Addresses For Sale · · Score: 1

    Pretty much the only time I deal with an email address is when I create an alias for it in my mail client. Why are people so hung up about getting the name you want ... silly people.

  4. Re:SICP on Learning Computer Science via Assembly Language · · Score: 1

    I wholeheartedly agree. SICP is a great choice because it emphesizes the "computational" aspect of CS. I think starting people off with assembly is not a great idea because it imposes a specific architecture on students that just happens to be popular at the time. There is plenty of time for that in later parts of a 4-year curriculum.

  5. Re:Probably a bad idea on Learning Computer Science via Assembly Language · · Score: 2, Funny

    The language you're referring to is spelled LISP.

  6. How to get reelected 101. on USA To Return To Moon By 2015, Then Mars · · Score: 2, Insightful

    Problem: Incompetance
    Solution: Use terrorist as a scare tactic to use Congress for his own personal agenda.

    Problem: "War on terrorism" not working
    Solution: Distract people by invading a country under false pretenses.

    Problem: Occupation a complete failure
    Solution: Distruct people with promises of space travel and extra terrestial habitats.

    It's reassuring to know we have some real bright people governing this country.

  7. Re:Good News on Saddam Hussein Arrested · · Score: 1

    > This country is all about the freedom to choose and if > you assign healthcare to all, this takes away from that > freedom.

    I could not have said it better myself. The government must not be in the business of healing people. Why is it so hard for people to get it through their heads that the time to get sick is when they're working.

    Now I just wish I was given back the right to kill people. This country is all about freedom after all!

    You, sir, have made me sad today, very sad.

  8. Re:Webcam would be better, and Go instead of chess on Play GNU Chess On Your Scanner · · Score: 1

    I completely agree. It's much more intuitive, effective and elegant than pasting bar codes onto pieces and putting them on a scanner.
    It seems like a very doable image recognition problem and you could probably make the software flexible enough so that it would be board and piece independant, even for chess.

    Than again, it's easy to speak in could and would haves.

  9. Re:This is all wrong on Inside Microsoft's New F# Language · · Score: 1

    Where have all the talented white men gone?

    Thankfully they're now working alongside talented women and "non-white" men.

  10. Re:You don't want relays on Building Your Own Glowing Cyber-Balls? · · Score: 4, Informative

    A solid state relay (S101S05v) is not a mechanical switch.

  11. Re:Will we will pay for our relevance? on Google's Search Results Degraded? · · Score: 1

    The Brin/Page paper The PageRank citation ranking: bringing order to the web., which describes the PageRank algorithm, does't have any "serious" linear algebra that I could see. The PageRank implementation does become non-trivial because you have to use out-of-core sorting (disk based merge sort) and you have to optimize it for speed because of the huge size of the dataset (the web graph). Other than that there is nothing magical about Pagerank.

  12. Edsger W. Dijkstra's view on computing science ... on Feds Open 'Total' Tech Spy System · · Score: 2, Insightful

    This excerpt taken from a paper written by Dijkstra in 1986 seems very appropriate:

    "...society tolerates the computing profession because of its incompetance. It is our incopetence that makes us, though expensive, relatively harmless: were we as competent as we would like to be, we would offer the perfect implementation of the complete police state. We would be the darling of any dictatorship"

    Food for thought.

  13. Re:[ot]Google's data structure? on Interview With Google's Director of Research · · Score: 1

    I would imagine google uses a highly compressed inverted index stored probably in a flat file format. If you would like to read some academic literature on the subject you can find a great list of resources compiled by Prof. Torsten Suel.