Slashdot Mirror


User: superpulpsicle

superpulpsicle's activity in the archive.

Stories
0
Comments
3,169
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 3,169

  1. Re:EQ2 - best mmporg of the year on Developer Retrospective on the MMORPGs of 2004 · · Score: 1

    The problem with all these games is they can't appeal to the regular joe. That's why Matrix Online will have a rare opportunity to appeal to anyone. Except so far, I haven't heard one good thing out of the beta testing.

  2. Rivel PSP on Nintendo DS Game and Music Composer All in One · · Score: 3, Insightful

    Is this Nintendo's way to prove that the DS can be more than just a video game player? I think they are beginning to regret not launching the DS like the PSP as a multi-purpose video/mp3 player out of the box.

    It'll be a matter of time before they realize the DS was launched similar to the N64 missing CDrom capabilities. Go ahead laugh at the PSP battery issue. Watch that be the only weakness.

  3. Re:Mature students generally do well on Advice for Returning to School After Long Break? · · Score: 1

    That was the problem I had with school. If you REALLY know your material. Then you'll know most professors can't teach. College professors are there to do research for the university. Not to teach you squat.

    Which comes back to my original point. If all the professors do is give you assignments. Why not just take the easiest major to graduate and earn that degree / piece of paper. After all, I can assign myself my own damn assignment.

  4. Re:Sauce for the Goose on US To Push Criminalization of IP Violations · · Score: 1

    Like most laws in the U.S, this is built to punish lower and middle class citizens only.

    Rich folks that are proven guilty will be punished with lobster dinners and prisons with arcades, ps2 and golf courses.

  5. Re:Car List Please on Gran Turismo 4 JP Launch · · Score: 1

    Those lists were pretty good. But where the hell is the Dodge Neon and Volkswagon Jetta? They are so common in the U.S.

  6. Re:Turbo Tax, AGAIN on Tax Time Again: Any Linux Solutions? · · Score: 1

    I think I am the only person who likes to pay $100 for the H&R block service. I used to do Turbo tax too, but my returns were never remotely close to the H&R block service. They make recommendations that I would never dig up in a million years.

  7. Re:What is it with nintendo and mario? on Mario to Shake His Groove Thing · · Score: 1

    That's the problem with Nintendo. Once they knew Mario worked, they abuse it by putting him in every game.

    They are not creating new and better gameplay. They're not even creating sequels here. They are just trying to market the same damn thing again and again. And see who's stupid enough to keep paying.

  8. Re:Sadly, my old one still works. on Sales Data Indicates GameCube Underperforming · · Score: 1

    I know of one person in all my years who own a Gamecube. Everybody else owns a PS2 and xbox.

    Nintendo should admit defeat, close the console division down. Concentrate on the handheld battle with Sony.

  9. Re:3D0? on Xbox 2 for $400? · · Score: 1

    Well, the NeoGeo was $1000 at debut. Look where 3D0 and NeoGeo now. It's only natural for xbox2 to follow the same track.

    I don't even see the need for an xbox2? Doesn't xbox1 have insane underutilized hardware anyways. The console market is about software, not hardware superiority like PCs.

  10. Car List Please on Gran Turismo 4 JP Launch · · Score: 2, Interesting

    Someone from Japan with the game PLEASE post a Car List somewhere! There are too many hyped-up lists that are fakely floating about the internet. I am dying to see if my favorites made it. I don't want 40 versions of Nissan Skyline!

  11. Gran Turismo on Wired's 2004 Vaporware Awards · · Score: 1

    Expect 2 versions of Gran Turismo.

    1.) The regular new gran turismo version. Probably won't make it in March 2005, I'd say May.

    2.) The online version in 2006.

    They are milking it for money.

  12. Re:Animation & films on From DM6 to Park City: Machinima at Sundance · · Score: 1

    The ultimate package would be like a 3D filmmaker studio.

    1.) screen writing tools
    2.) 3D script animation engine
    3.) 3D film editing like adobe premiere
    4.) DTS sound editor.
    5.) mpeg compiler to make one big movie

  13. Convert iTunes file to mp3 on iTunes User Sues Apple Over Lock-In · · Score: 5, Informative

    This script is readily available on the internet. This is part of the hymn project, which is LEGAL. I DID NOT write this script!

    Just download hymn.exe, faad.exe, lame.exe in the same folder as this VB script. Name it something.vbs. Drag your iTunes .m4p files onto this script, and out comes mp3 with all your personal credentials deleted. You can play this anywhere, and share at will without worry.

    'coded by man on street

    Set oFs = CreateObject ("Scripting.FileSystemObject")
    Set oShell = WScript.CreateObject("WScript.Shell")
    Set id3Options = CreateObject("Scripting.Dictionary")

    binDir = oFs.GetFile(WScript.ScriptFullName).ParentFolder & "\"
    workingDir = binDir & "working\"
    decodedDir = binDir & "decoded\"

    id3Options.Add "title", "--tt"
    id3Options.Add "artist", "--ta"
    id3Options.Add "album", "--tl"
    id3Options.Add "date", "--ty"
    id3Options.Add "track", "--tn"
    id3Options.Add "genre", "--tg"

    makeDirectory(workingDir)
    makeDirectory(decoded Dir)

    For Each arg in WScript.Arguments
    walkArguments(arg)
    Next

    removeDirectory(workingDir)

    Sub convertFile(fileName)
    Set protectedFile = oFs.GetFile(fileName)
    albumName = protectedFile.ParentFolder.Name
    albumDir = decodedDir & albumName & "\"
    makeDirectory(albumDir)
    protectedFile.Copy(workingDir)
    trackName = oFs.GetBaseName(protectedFile)
    return1 = oShell.Run(quote(binDir & "hymn") & " " & quote(workingDir & trackName & ".m4p"), 1, TRUE)
    return2 = oShell.Run(quote(binDir & "faad") & " " & quote(workingDir & trackName & ".m4a"), 1, TRUE)
    Set LaunchedApp = oShell.Exec(quote(binDir & "faad") & " -i " & quote(workingDir & trackName & ".m4a"))
    tagInfo = LaunchedApp.StdErr.ReadAll

    For Each tag in id3Options.Keys
    tagSwitches = tagSwitches & " " & id3Options.Item(tag) & " " & quote(getTag(tag, tagInfo))
    Next

    rem return3 = oShell.Run(quote(binDir & "lame") & tagSwitches & " " & quote(workingDir & trackName & ".wav") & " " & quote(albumDir & trackName & ".mp3"), 1, TRUE)
    return3 = oShell.Run(quote(binDir & "lame") & " --ignore-tag-errors " & tagSwitches & " " & quote(workingDir & trackName & ".wav") & " " & quote(albumDir & trackName & ".mp3"), 1, TRUE)
    End Sub

    Sub walkArguments(arg)
    If oFs.FolderExists(arg) Then
    Set thisDir = oFs.GetFolder(arg)
    Set subDirs = thisDir.SubFolders
    Set theseFiles = thisDir.Files

    If subDirs.Count > 0 Then
    For Each dirName in subDirs
    walkArguments(dirName)
    Next
    End If

    For Each fileName in theseFiles
    walkArguments(fileName)
    Next

    ElseIf oFs.FileExists(arg) Then

    If oFs.GetExtensionName(arg) = "m4p" Then
    convertFile(arg)
    End If

    End If
    End Sub

    Sub makeDirectory(dirName)
    If Not oFs.FolderExists(dirName) Then
    oFs.CreateFolder(dirName)
    End If
    End Sub

    Sub removeDirectory(dirName)
    If oFs.FolderExists(dirName) Then
    oFs.GetFolder(dirName).Delete
    End If
    End Sub

    Function quote(myString)
    quote = Chr(34) & myString & Chr(34)
    End Function

    Function getTag(frameName, tagString)
    Set oRegEx = New RegExp
    oRegEx.Pattern = frameName & ".+\n"
    frameNameAndValue = oRegEx.Execute(tagString).Item(0).Value
    frameValue = Mid(frameNameAndValue, InStr(frameNameAndValue, ":") + 2)
    getTag = Left(frameValue, Len(frameValue) - 2) 'Strip CR/LF
    End Function

  14. Re:Nintendo V Sony on PSP North American Launch Date · · Score: -1, Flamebait

    I am just happy to see anybody compete with Nintendo in this monopoly market of theirs.

    Call me evil, but I want to see Nintendo tank the same way Sega did with dreamcast. Like it or not, they'll have to make Zelda, Metroid and Mario available on all other platforms to survive.

  15. Re:How many movies, MP3s can one possibly use? on Hitachi to Release Half TB Drive Soon · · Score: 1

    Yeah my collection is used to study Art and human anatomy.

  16. Define cost less on Are Nanotube Monitors In Your Future? · · Score: 3, Insightful

    If it's not in the sub $250 range, most people won't buy it. And just because they say it is cheaper, doesn't mean it'll be affordable until 5 years after it hits the market.

  17. Re:Only 25 years? on Laser Painting Could Lead to 25-Year Prison Term · · Score: 1

    My goodness, it's a complicated issue far beyond extending rights / I hate you / you hate me. You watch too much American-money-driven news.

  18. Re:Lower the price tag? on PlanetSide Community Takes Action to Market Game · · Score: 1

    I am looking at gamerankings.com, and most sites rate this game a 80% out of 100%. Compared to UT2004 or COD or HL2 or Doom3, it's not even in the same league description wise.

  19. Re:Wont work on Hewlett-Packard To Offer Linux-based Media Hub · · Score: 1

    I was almost sold to the idea of TiVO.

    Then MythTV came by.

    Then I heard Comcast would be doing something.

    Then I heard SBC would offer something.

    But M$ media center has been around.

    But it's technically no different with regular XP and snapstream Media.

    Then this HP wannabe device is coming out.

    Did I miss anything?

  20. Re:What about..... on Look Ahead to the RPGs of 2005 · · Score: 1

    Man these are horrific news. I guess it's back to everquest for everybody.

  21. Re:Let's Boycott EA on Infogrames Could Help Ubisoft vs. EA · · Score: 1

    Fire? If they hostile take over a new company everyday, it'll be a nuclear catastrophe of biblical proportion.

  22. Re:Fulltext search in 2005 on Google Desktop API Released · · Score: 1

    I can't believe we are in 2005. And M$ Outlook can only integrate 1 hotmail account at a time.

  23. Re:Easier the other way on Linux+Windows Single Sign-on · · Score: 1

    Problem with Samba and Windows NT. I never figured out how to get this thing working without sending the password credentials as "plain text" in the registry. Which absolutely defeats the purpose of even logging in if you have no security anyways.

  24. Other way around on Moving An Embedded Project From x86 to PowerPC · · Score: -1, Troll

    Shouldn't it be the other way around where I want to migrate everything to x86 instead. Since it is the series with the fastest and most continuous growth.

  25. Re:uh oh. on eBay Shuts Down Ultima Online Charity Auctions · · Score: 1

    Yeah they found out the 8 million donated bottles of potions of dexterity didn't feed anyone.