Slashdot Mirror


User: petronije

petronije's activity in the archive.

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

Comments · 19

  1. 40 on Why Coding At Fifty May Be Nifty · · Score: 5, Insightful

    ... and still coding

  2. Future of gaming on Man Open Sources His Genetic Data · · Score: 2

    step 1 - buy video game and install it
    step 2 - load your sequenced genes
    step 3 - play the game as yourself

  3. Re:hmm... on A Public Funded "Microsoft Shop?" · · Score: 1

    It is also possible that hospital management invested in ms shares and would hate to see them go down.

  4. Maybe on Silicon Valley VCs and the Gender Gap · · Score: 1

    This affirms that confirmative action needs more time to... panic!

  5. Helloworld on An Interview With F# Creator Don Syme · · Score: 1

    For those who don't have a clue but still have urge to comment, here is "hello world" in F#:

    [start snipp]

    #light

    open System

    printfn "Hello world\n"

    Console.ReadKey(true)

    [end snipp]

    And another example illustrating what would would take a highschool kid to modify physics simulation:

    [start snipp]

    #light

    open System

    let gravity = -9.81

    let euler_explicit accel pos speed delta =
    pos + delta * speed, speed + delta * accel

    let euler_implicit accel pos speed delta =
    let speed2 = speed + delta * accel in
    pos + delta * speed2, speed2

    let pos, speed = euler_explicit gravity 0.0 0.0 1.0 in
    printfn "pos = %f speed = %f\n" pos speed

    let pos, speed = euler_implicit gravity 0.0 0.0 1.0 in
    printfn "pos = %f speed = %f\n" pos speed

    Console.ReadKey(true)

    [end snipp]

    (taken from http://sharp-gamedev.blogspot.com/2008_09_01_archive.html)

    Cheers

  6. Re:WHY THE FUCK DO PEOPLE STILL USE IE? on IE Flaw Gives Hackers Access To User Files · · Score: 0, Troll

    Psychology of "facebook generation" explains this behaviour - majority of people have the urge to show themselves (through pictures, texts, videos, etc.) to others.
    This is also known as a form of exebitionism. Makers of IE know that very well and use it to their advantage - by having peepholes in their products in order to gain popularity. The percentage of people using their products just proves the theory.

  7. Amazing on Bing Gaining Market Share Faster · · Score: 1

    I have made bing.com startup page in my firefox (linux box, of course) just to drain their resources, and look what happened - they actually gained more publicity. I'll go now and shoot myself in the foot...

  8. Instead... on Turning a Cell Phone Into a Microscope · · Score: 1

    Instead of using (and possibly damaging) cellphone, make the "microscope" device usable on desktop or laptop computer:
    Buy a cheap USB webcam, take it apart and remove lens - then write a simple program (probably using opencv) to analyse image, mark different cells and count them.

  9. It's a new trend, and I want one too. on After 1 Year, Conficker Infects 7M Computers · · Score: 1

    I hate my linux box for not letting me have this shiny thingy. It is a new trend - 7mil users and growing. I want one too!!!

  10. Re:Surprised? on The US's Reverse Brain Drain · · Score: 1

    All your points are correct from my standpoint.

    After spending 7 years in sunny and colourful Berkeley, CA, I have decided to leave the states for good. Now after 7 years, I am more than glad for what I did - my kid is getting quality education and is able to play with other kids outdoors without fear of being kindapped for internal organs or shot as a bystander in random gang shooting.

    Tap water quality is fine, but I still don't have courage to drink it - I must say I didn't drink California tap water either.

    And as an software developer, I am able to complete jobs all over the world - online - sitting in my comfy chair.

  11. Re:Can we stop calling it "piracy" already? on Warez Moving From BitTorrent to Conventional Hosting Services · · Score: 1

    How about "Forger"? Although the definition is a bit different: "Forgery: The creation of a false written document or alteration of a genuine one, with the intent to defraud."

  12. Re:how are they better protected? on Warez Moving From BitTorrent to Conventional Hosting Services · · Score: 2, Informative

    Rapidshare will not go down because they remove the copyrighted files promptly - as soon as they are notified.

  13. Right on Warez Moving From BitTorrent to Conventional Hosting Services · · Score: 1

    It was about time

  14. Brave new world of danger on Why Cloud Storage Is Lousy For Enterprises (and Individuals) · · Score: 1

    All your pr0n belongs to us.

  15. Big Brother or Al Capone? on Microsoft Moves To Patent Time-Based Software Licensing · · Score: 1

    They anounced it months ago. The concept was to charge the user as much as they use their machine resources. On the other hand, who wouldn't like to charge the racket on 90% of this small planet's computers?

  16. Re:Never had problems... on Microsoft, EU Reach Antitrust Accord · · Score: 1

    Thanks, I looked it up. For others interested, here is wiki link: http://en.wikipedia.org/wiki/Tying_(commerce)

  17. Never had problems... on Microsoft, EU Reach Antitrust Accord · · Score: 1, Redundant

    installing Firefox on windows. What is all the fuss about?

  18. Re:Heh... surprised? on Null-Prefix SSL Certificate For PayPal Released · · Score: 5, Informative

    Looks like lynx (http://lynx.isc.org) is still safe.

  19. Is that... on Null-Prefix SSL Certificate For PayPal Released · · Score: 2, Interesting

    a bug or a feature?