Slashdot Mirror


User: BollocksToThis

BollocksToThis's activity in the archive.

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

Comments · 332

  1. Nice one! on New KOTOR2 Trailer Released · · Score: 2, Funny

    The original was my fav non Final Fantasy RPG in recent memory, so I can't wait for this one.

    Ha ha, Final Fantasy an RPG! Nice one, CmdrTaco!

  2. Re:So what? on UK High Court Rules Modchips Illegal · · Score: 1

    At least for the PS1, it was possible to create mod chips that didn't allow backups (or internet downloaded ISOs) to be played, but did allow playing games from other regions. I prefer the other kind, because I will be having children one day, and there's no way I'm letting them get their uncoordinated grubby hands on my original discs that cost so much. I *will* make backups of my games, and I *will* do whatever is necessary to let my children play the backups. If they snap a DVD-R, or smear it with sandwich filling, I can repair the damage by burning a new copy for $1. I'm glad I don't live in the UK at this point.

    The judge is right (to an extent) - he is making a ruling consistent with the law. He's being rather narrow-minded, assuming that the lawmakers have done their job properly, but ultimately it's the law that is wrong - it lumps legal and morally acceptable activity together with illegal activity.

  3. Ha ha! on Gnome 2.6 Usability Review · · Score: 2, Funny
    I'm amused by the actions of the experienced unix guy, because this is *exactly* what I do, every time I sit down in front of a linux desktop (and the first thing I did trying out MacOS X in a store):

    1. Opens terminal
    2. 'ls' in home


    (On MacOS X, step 1 was the hardest, because there's either no console icon by default, or the store had removed it)

    It doesn't matter what I'm trying to achieve, I always do this. Does anyone else do the same?
  4. Re:Build software first. on Building a Cheap HUD for a Wearable Computer? · · Score: 1

    You're right that software is the place to make a difference...

    but what good is software that you can't test, because you don't have a wearable device? The place software is going to make the biggest difference in wearable computing is in the user interface, and that absolutely must be tested without using a keyboard and mouse setup, otherwise you're writing desktop software.

  5. Re:In a word on Top Ten Linux Configuration Tools? · · Score: 1

    If perl is your friend, then python is your girlfriend's hot cousin.

  6. Re:What about IE? on PC Magazine Reviews Firefox, Opera · · Score: 2, Insightful

    Their "rating" is just a subjective opinion anyway. There's no info in either review to explain how the 3.5 and 4 ratings were given. In fact, there's no reference to the rating at all. I had a hard time even spotting the 3.5 and 4 scores that I read about, because it just looked like page decoration.

    Basically, the scores are meaningless, and the reviews just say both are great browsers (which means I don't have to go trolling slashdot over how Opera should have scored better than Firefox).

    Also, can someone tell me where this session management in Firefox is? I can't seem to see it. Is it brand new to 0.9.1, or is it an add-on I haven't installed?

  7. Re:Self-execution on Favorite Programming Language Features? · · Score: 2, Informative

    I'm not sure what you mean by 'valid', but I'm going to go with 'useful'.

    Say you have a database with multiple tables that all require user data entry. You can write code for each and every data entry screen (apparently the "visual basic" school of thought), or you can write a generic data-entry screen and include pieces of code for specific field validation in the database itself - so in effect, based on structural tables, the program builds the correct code for each screen. This also saves having to distribute a new version of your app every time you update or add a new table.

    Another good reason might be embedding pieces of code in an XML document or some such, but that seems a little less useful than the database idea.

  8. Re:Self-execution on Favorite Programming Language Features? · · Score: 1

    Err, oops, cVar wouldn't really have any value after that block executes - that'll teach me to change my example halfway through...

  9. Self-execution on Favorite Programming Language Features? · · Score: 4, Informative

    My favourite thing is languages that can execute strings of their own code.

    For example, clipper can do this via blocks:

    cVar := &("{ || nVar += 43")

    Python has the same thing via "exec":

    >>> b
    NameError: name 'b' is not defined
    >>> exec "b=2"
    >>> b
    2

    This means you can build up strings of code at runtime and execute them, or store field-specific database logic in another database table, and fetch it when needed.

    C# is not quite so convenient - you have to build up a complete class and compile it, but it can all be done in memory at runtime so it's just a little more work. Clipper and python can both affect the current scope directly (which can be both bad or good, I suppose).

    I believe ruby has blocks similar to clipper (probably better), but I don't use it, so I'm not sure. I also don't use perl, so I have no idea if it supports this...

  10. Re:Opera was here first on Outfox, Outsearch With Firefox · · Score: 1

    Sure! Close Opera and edit the search.ini file (closing Opera may not be a requirement, but it often is for other ini files, so it's better to be safe). There are multiple copies of this file strewn about, so which one you edit depends on whether you asked Opera to use the same settings for every user. If so, use the file in programs\Opera, otherwise use the file in your profile's application data\Opera folder.

    I've removed every default item they gave me (except google of course), and added items for IMDB, dictionary.com, google images, and more. I think Opera just had trouble coming up with a nice UI for editing these - most users aren't going to like or be capable of adding URLs with variable placeholders.

  11. Re:Opera was here first on Outfox, Outsearch With Firefox · · Score: 1

    (although it isn't infinitely configurable like Firefox)

    Can you explain what you mean by this? I've not had any trouble adding new search engines, or using them as defaults...

  12. Re:Shopping is a battlefield on Best Buy Says Customers Not Always Right · · Score: 1

    Fuck you!

    Love,
    500000+

  13. Hey, wait a minute on Titan's Surface Revealed · · Score: 1

    I recognise that white spot... that's a specular fucking highlight! They're using POVRay!

    Man, first they faked the moon landing, and now they're faking satellite pictures... bastards!

  14. Re:If it's broke but generating adviews, don't fix on Videogame Nostalgia Isn't What It Used To be · · Score: 1

    Except Gamespy is pushing the 90% envelope pretty hard :P

  15. If it's broke but generating adviews, don't fix it on Videogame Nostalgia Isn't What It Used To be · · Score: 5, Insightful

    This article is about the level of uselessness I've come to expect from a Gamespy article.

    Claiming that nostalgia is somehow to blame for lame knockoffs is as retarded as claiming Richard Simmons is responsible for bombing Iraq (well, maybe he is, that PRICK).

    The "90% of everything is crap" rule certainly applies to old games, but we didn't waste our childhoods on the crap games, so we don't get nostalgic about them.

  16. Re:Slight complication on Linux vs. Windows: What's The Difference? · · Score: 1

    FOR %x in (C:\SomeDir\*.jar;C:\SomeDir\*.zip)

    Yep, that's fine. I think it's safer to use a space than a semicolon as DOS usually separates it's arguments by spaces, but I just tried a quick test and it worked fine.

    For multiple subdirs, if you want EVERY subdir, you can use FOR /R %x in (c:\Rootdir\*.jar), but do the loop with an echo first to make sure the output is what you expect - this loop will give you a fully explicit pathname, not a relative one.

  17. Re:Loop with file list? on Linux vs. Windows: What's The Difference? · · Score: 1

    Except I keep seeing File Not Found at the end of it, even though it appears to work.

    I think your problem is this:

    `dir /s/o/b jars ; dir /s/o/b jars2`

    DOS doesn't use the semicolon to separate commands, so you're effectively running one DIR command with 4 or 5 parameters. Change the semicolon to &&

  18. Re:Loop with file list? on Linux vs. Windows: What's The Difference? · · Score: 1

    Check out CMD /? and SET /? for the details - you need delayed expansion turned on for this to work. The problem is that without it, %CLASSPATH% would be expanded before the loop executes, altering the in-loop command line. Turn on the delayed expansion (CMD /V:ON) and do this:

    IF %CLASSPATH%x==x THEN SET CLASSPATH=(space)
    FOR %x in (C:\SomeDir\*.jar) DO (
    SET CLASSPATH=%x:!CLASSPATH!
    )

    The first line is needed, because for some %&$&^#&* reason, CMD will use the literal "!CLASSPATH!" if that variable doesn't exist :(

  19. Re:Can you make a commercial product? on Microsoft Launches Visual Studio Express, VS 2005 Beta · · Score: 1

    But then inevitably the question would arise whether the Visual C++ Standard license allowed you to write commercial software and for some reason the answer was never very clear. Most people thought the answer was no (see Google Groups), but MS's website never managed to include that most frequently asked question in its FAQ, despite year after year of people asking the question.

    You can download, completely for free, the command line compilers and the runtime, and use them to create software that you can sell or give away as you see fit.

    The 'Visual (x) Standard's are little more than pumped up text editors. Do you really think Microsoft want to sell you Notepad+.exe and then turn around and tell you they have some kind of claim to the content you just wrote? Even the license agreement for the standard edition restricts itself to the product and packages that come with it - no claim is ever made about ownership of a product YOU create.

    Sorry to have to appeal to logic, but when I investigated this issue (our company wanted to know whether shelling out for VS was necessary over purchasing a few copies of the much much cheaper standard edition) I did find the answer to that question in a FAQ on Microsoft's site, and the answer was "Yes, you can most certainly sell your own work".

    Unfortunately, as always seems the case with microsoft.com, now that I need to find that info the pages have been re-arranged and I can't find it.

  20. Re:one of the reasons they prospered w/the PC? on Next-Gen Xbox To Lack Backwards Compatibility? · · Score: 1

    you cant push B and X at the same time

    Sure you can. What kind of crap talk is that?

    Oh, you can't push them both at once with your THUMB? So how often are you pressing circle+square on your PS controller using only your thumb? If you can do that with more than 33% accuracy, I'll give you the "Longest Skinniest Thumb Ever" award.

  21. Re:If you can stand waiting... on How To Avoid Viruses At Windows Install Time? · · Score: 1

    Funny, I never agreed to any license before downloading the file. I also never agreed to a license before I installed it, because I used a command line install.

    So if the license fell in a forest, installed successfully, and no-one ever saw it, does it really exist? Or is it maybe just a crooked lawyer's wet dream with no legal backing whatsoever?

  22. Re:Try going here instead... on How To Avoid Viruses At Windows Install Time? · · Score: 1

    That was what I thought too... but when I was looking for the URL for my post above, both Firefox and Opera were fed broken HTML that shows a blank screen, after which nothing happens >:(

    This happened visiting windowsupdate.microsoft.com and www.windowsupdate.com using FF 0.9 and Opera 7.11 (on XP). I'm not keen enough to try multiple systems/browser versions...

  23. Re:If you can stand waiting... on How To Avoid Viruses At Windows Install Time? · · Score: 1

    I feel your pain... sometimes it does seem they don't want you to download things directly. I got a little sick of constantly being directed to the windowsupdate site, especially when I'd already been there and they'd told me I couldn't use it without IE.

    For DirectX, look near the bottom of the page for the link to "DirectX 9b Redist".

    The Media Player 9 download is the only one linked in the download section - it's 13Mb, so I'm pretty positive it's not one of their stub downloaders.

    For IE6... XP comes with it, so that shouldn't be a problem. SP1 for IE6 is bundled in with XP SP1.

  24. Re:If you can stand waiting... on How To Avoid Viruses At Windows Install Time? · · Score: 5, Informative

    The only problem is you need a computer with IE.

    If you go to the Microsoft download center, you can download every patch with (almost?) any browser. I downloaded service pack 1 and every patch after that using nothing but Opera.

    It was less convenient than using WindowsUpdate/IE, but it would still have worked on a linux machine. The best part is, when friends give me their computers to reinstall XP, I don't need to spend four hours downloading patches from scratch.

  25. Re:They aren't the only ones. on Beastie Boys' New Album Silently Installs DRM Code · · Score: 1

    That's not what "mixed content" does, either.

    You'll note the default action for mixed CDs is to prompt the user to pick an action - when was the last time you were prompted to install your Beastie Boys DRM, or to run your application's SETUP.EXE? Never - it always does it, regardless of what you set any of those options to.

    The controls Microsoft gave you to control Autoplay behaviour do not apply to actual autorun data CDs (or data tracks on mixed CDs).