Slashdot Mirror


User: infamous_blah

infamous_blah's activity in the archive.

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

Comments · 15

  1. Re:To appease the most visitors with ease on Microsoft Silverlight 4 vs. Adobe Flash 10.1 · · Score: 2, Informative

    Agreed. Seems like basically anything using features above Silverlight 2 doesn't work in Moonlight, e.g. Netflix or kivabank.org

  2. Re:Getting screwed in both directions on Microsoft May Back Off of .NET Languages · · Score: 5, Informative

    Thank you for this, PInvoke is probably my biggest reason in prefering .Net (mainly C#) over Java.

    You can do this in Java with Java Native Access (JNA). From the JNA site:

    JNA provides Java programs easy access to native shared libraries (DLLs on Windows) without writing anything but Java code—no JNI or native code is required. This functionality is comparable to Windows' Platform/Invoke and Python's ctypes. Access is dynamic at runtime without code generation.

  3. Sounds great for virtual keyboards on Textured Tactile Touchscreens · · Score: 2, Interesting

    The biggest disadvantage of touchscreen virtual keyboards for me is that I have to look at them. On physical keys I can go by feel and muscle-memory lets me go much faster. Sounds like this could bridge that gap.

  4. Re:Google shouldn't worry on Google's Streetview Privacy Snafu Prompts Lawsuit · · Score: 1
    Leaving your door unlocked might be stupid, but it doesn't make it legal for someone to come into your home and take your stuff.

    If the same 80yr old lady had a break in with the locks bolted on vs unlocked, her insurance company sure an't gona pay shit (and I sure wouldn't feel bad for her) because she DIDN'T SECURE HER DAMN HOME!!! Her data is to be handled the same damn way.

    Here is a big difference between what happened and the break-in analogy. Intent does matter and since it appears to be accidental collection that makes it a lot different than Google intentionally collecting all that traffic.

    Uh yeah, boooo corporate America for saying they made a mistake they had NO reason to tell anyone other than they actually do care. Which is why they pulled the project from going forward till this useless data was expunged (never used for anything). This whole thing is big non-issue to people who understand what happened. At worst their system captured a network name, and a couple useless frames of data that mean jack shit.

  5. Answered Your Own Question on Should I Take Toyota's Software Update? · · Score: 1

    In the computer world, we're all taught to install firmware updates only if there is a real problem

    Based on the news, I'd say you answered your own question.

  6. Re:The Second, If Not Both on Which Math For Programmers? · · Score: 1

    But he's definitely correct. The second is going to give you practical skills in programming -- a wide array of practical skills. The first is most likely going to give you some automata theory for computers but unless you're going into theoretical research, the second is the obvious answer. Graphics and games are all vectors, the web is becoming even more so with new browser rendering technologies. Rendering is all euclidean space transposed onto a two dimensional plane (screen) using points (pixels). Differentials are huge in the vision and image processing world and again, in graphics.

    I strongly disagree with your suggested order. Algorithms are the heart of Computer Science and our representations are discrete. The first course is absolutely essential and has a lot more practical application; you must be able to understand the complexity of an algorithm and choose appropriate structures to write efficient code.

    If OP is going into graphics, physics simulation or the like, then the second course is also necessary, but not in lieu of the first. The mathematical equation at hand may be continuous, but the computer model is discrete (e.g. pixels are discrete points).

    However, as you said, taking both is really the best option.

  7. Background Reading on Whistleblower Claims IEA Is Downplaying Peak Oil · · Score: 1

    You can find some good background reading here: What You Need to Know about Peak Oil.

    There seems to be a lot of dispute over when world-wide peak oil will occur (or if it has already). On the other hand, there is consensus that US peak oil has already happened (and that's accounting for shale, Alaska, etc).

  8. Re:Sales taxes are not 'regressive' on Microsoft Tax Dodge At Issue In Washington State · · Score: 1

    Roughly 10% of states have sales tax on food when you include those that have it on the county/city level. However, the statement "they are effectively only taxed on their bad habits, EG booze and ciggs" is hardly fair. There are tons of necessary items that sales tax applies to, e.g. clothes, school/office supplies, basic household items like tissue/toilet paper, etc

  9. Re:Yep on Does Your College Or University Support Linux? · · Score: 1

    Pray tell, if I have sudo, how do I not have root?

    hint: What is the result of

    sudo su root
    password:

    That depends on the sudoers configuration for your user. sudo is not all or nothing, you can be restricted to a subset of commands and further restricted on arguments and whether or not the commands themselves are allowed to execute other commands. Read the man page for sudoers for the specifics.

  10. MyLimb.com on Hackers' Next Target — Your Brain? · · Score: 1

    Who has MyLimb.com parked and is willing to deal?

    Don't know if he's willing to deal but...

    Registrant:
    William Orr
    5707 Mountain Oak Drive
    Braselton, Georgia 30517
    United States

    Registered through: GoDaddy.com, Inc. (http://www.godaddy.com)
    Domain Name: MYLIMB.COM
    Created on: 08-Nov-06
    Expires on: 08-Nov-10
    Last Updated on: 09-Nov-08

  11. Re:CapsLock on Fifteen Classic PC Design Mistakes · · Score: 2, Insightful

    I do not recall ever having used the CapsLock key (except out of curiousity to see whether it actually does anything.) ... CapsLock was useful once upon a time, when there was no \section{} or \textbf{}, and when pressing `shift' actually required strenght. But those days are gone.

    As a programmer, I use it all the time. It's common convention in many programming languages for CONSTANT_VARIABLES to be in all caps. It may not take much for one press of the Shift key, but having to hold it down while typing words with letters from both sides of the keyboard multiplied by the number of times I need to do that in a day will cause strain in my hands.

  12. Re:Python is just a fad. on Should Undergraduates Be Taught Fortran? · · Score: 2, Insightful

    Unlike Pascal, Prolog, Smalltalk and the rest of the fad languages, Fortran is still here, and it will still be here when Python is long-forgotten.

    I would suggest teaching them C, but it may be too complex for a first language.

    Python will be 20 years old soon and is used in many, many contexts. Whatever your opinion of FORTRAN or Python's applicability for engineering students in particular, calling Python a fad is disingenuous.

  13. Re:No malloc( )s on Java Gets New Garbage Collector, But Only If You Buy Support · · Score: 1

    It keeps track of the references to objects that have been instantiated. When the counter reaches zero, the object is automagically removed from memory without explicit programming required.

    Garbage collection in Java does NOT use reference counting. Although there are various GC implementations, they are all tracing collectors. When the collector runs, it traces objects reachable from the rootset. Anything not reachable is garbage and eligible for collection.

  14. Neural Smithing on Reading Guide To AI Design & Neural Networks? · · Score: 1

    Neural Smithing: Supervised Learning in Feedforward Artificial Neural Networks http://mitpress.mit.edu/catalog/item/default.asp?ttype=2&tid=8104 Great reference for me when I was doing my senior research in CS with neural networks.

  15. Re:Bah, subtlety: on (Useful) Stupid Unix Tricks? · · Score: 1

    Mod parent fork-bomb!