Slashdot Mirror


User: KingMotley

KingMotley's activity in the archive.

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

Comments · 3,282

  1. Re:But they spend 20 billion on making windows sec on Highly Critical Hole Found in IE · · Score: 0, Troll

    Tool.

  2. Re:"Passing"? 70 percent is a D- on Internet Explorer Not Dead Yet · · Score: 1

    You should have gone to a better school. 100-93 Was an A 92-86 Was a B 85-80 Was a C 79-75 Was a D 74-below was an F

  3. Re:It's not age, it's the unknown on U.S. Internet Growth Stalling · · Score: 1
    In college, I memorized settings for each shirt type, and never experimented.
    There are settings?
  4. Re:In the next episode of Ask Slashdot... on Is Visual Basic a Good Beginner's Language? · · Score: 1

    Visual Basic 1.0 first come out on DOS. It was very similiar to quick basic, and it had a "GUI" (Character based) that you could place forms, windows, command buttons, lists, etc. The nice thing was that you could then take the VB 1.0 for DOS app and load it up in VB 1.0 for Windows and it'd work. Although there was some minor issues with things being in a frame. Apparently, controls at coordinates 0,0 in a frame under DOS meant just inside the frame (OK, it's character based, so 1 character down, and 1 to the right), in windows, it meant right on top of the frame (And actually a bit left and up from being "inside"). So while it would run, it was pretty ugly, but 5 minutes later of re-placing the controls and you had an application that ran in both DOS and Windows (natively -- no DOS Box).

  5. Re:Yes, look at King Kong on George Lucas Predicts Death of Big Budget Movies · · Score: 1

    Maybe it's time the movie producers realized that they should distribute their movies themselves online? Then they could keep all the money, rather than only the 25% you suggest.

  6. Re:Not everyone cares about Coding... on Open Source vs. the Database Vendors · · Score: 1
    Stored procedures are BAD BAD BAD, I'm glad you have a hard time promoting those. Why? You can't easily migrate to another database-vendor. Maybe you want to switch. Maybe you have to because of technical reasons. Maybe you have to because your company is being bought by another, which uses a different system and wants to maintain only one platform. Whatever the reason, your stored procedure is going to really, really hurt.
    Heh, I'd have to completely disagree there. By using stored procedures exclusively in an application, you abstract the database inconsistancies from the application. If you want to replace the database (or run on multiple databases), then just call the new database's stored procedures passing the same parameters that you always have. It shouldn't require a change to the application, plus you get reduced network traffic, increased responsiveness, and decrease the load on the database.
  7. Re:If Only the SQL 2003 Standard Was Followed on Open Source vs. the Database Vendors · · Score: 1

    Don't blame the SQL Vendors, blame the SQL Standards which are always 5-7 years behind what the database vendors actually implement featurewise.