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:Written by someone born in the 90s? on A Brief History of Modems · · Score: 1

    Actually, what he recalls was partially true. The courier line supported HST mode, which was able to do 19.2K+ when the sportster (and everyone else) was still doing 2400. The later sportsters were able to support V.32 (9600 baud), but still weren't able to do HST mode, which for the majority of people meant only being able to run at 2400 still, as most BBS's were doing HST only.

  2. Re:Markups on No More Fair-Price Refund For Declining XP EULA · · Score: 1

    Your mistake is you assume the customer's purchase price and the companies cost must be the same thing. What is to keep ASUS from claiming that your purchase price for windows is $0.

  3. Re:Markups on No More Fair-Price Refund For Declining XP EULA · · Score: 1

    So... If I buy a copy of the Superduper World of Warcraft expansion pack, that comes with a teeshirt, and a figurine, and 2 mana drink potions, and log into wow, and I disagree with the terms of service, I can return the game portion of the superduper expansion pack and get a refund for the full price of the game? No, of course not.

  4. Re:Markups on No More Fair-Price Refund For Declining XP EULA · · Score: 1

    Your mistake is you assume the customer's purchase price and the companies cost must be the same thing. What is to keep ASUS from claiming that your purchase price for windows is $0.

  5. Re:IE on Microsoft Aims To Close Performance Gap With Internet Explorer 9 · · Score: 2, Informative

    No, you didn't say it was unique to a Mac, however, you did say "In Windows, each window is basically a running process.", which isn't correct. It's not even close, almost all applications run multiple windows in a single process on windows.

  6. Re:It will be different this time on Wait For Windows 7 SP1, Support Firm Warns Users · · Score: 1

    The first versions of Windows could only task switch DOS apps, but could multitask windows applications via cooperative multitasking.

    Windows NT was the first pre-emptive multitasking Windows OS.

    Most people consider pre-emptive multitasking to be "true" multitasking. I believe you are thinking of cooperative multitasking where each application calls a special function often, and only while inside that function may the OS switch to another task.

    Qemm was a memory manager, you are most likely thinking of DesqView or one of it's later incarnations.

  7. Re:Economies? on Learning About Real-World Economies Through Game Economies · · Score: 1

    Actually it is common in the real world that "crafted" items are less expensive than their raw parts. For example, go to a car dealer and order every part needed to make a car. It'll cost you 500% more for the parts than a fully assembled car itself. Or take the US penny, that is worth more in copper than it's face value. Even some raw diamonds can be worth more than if they are cut into a type that isn't popular.

  8. Re:I dont' see it this way on Analyst Predicts Android Overtaking iPhone In 2012 · · Score: 1

    OTOH, if Apple doesn't start letting other companies than ATT into the game so that rural areas can have the phone, there will always be an opening for other phones.

    I don't think apple is all that concerned the rural areas, to be honest. There just isn't the justification to let go of a lock like they have between AT&T and Apple for the measly few % of people you are referring to.

  9. Re:So let me get this right... on Null-Prefix SSL Certificate For PayPal Released · · Score: 1

    Sorry, that should have been:

                    Public Overloads Function Eval(ByVal expression As String, ByVal format As String) As String
                                    Dim container As Object = Page.GetDataItem
                                    Dim obj2 As Object = DataBinder.Eval(container, expression)
                                    If ((obj2 Is Nothing) OrElse (obj2 Is DBNull.Value)) Then
                                                    Return String.Empty
                                    End If
                                    If String.IsNullOrEmpty(format) Then
                                                    Return Server.HtmlEncode(obj2.ToString)
                                    End If
                                    Return Server.HtmlEncode(String.Format(format, obj2))
                    End Function

                    Public Overloads Function Eval(ByVal expression As String) As Object
                                    Dim result As Object
                                    result = MyBase.Eval(expression)
                                    Return Server.HtmlEncode(result)
                    End Function

  10. Re:So let me get this right... on Null-Prefix SSL Certificate For PayPal Released · · Score: 1

    Not really hard if that is what you want, just put the following code in the class your pages derive from, and problem solved for your entire project:

            Public Overloads Function Eval(ByVal expression As String, ByVal format As String) As String
                    Dim container As Object = Page.GetDataItem
                    Dim obj2 As Object = DataBinder.Eval(container, expression)
                    If ((obj2 Is Nothing) OrElse (obj2 Is DBNull.Value)) Then
                            Return String.Empty
                    End If
                    If String.IsNullOrEmpty(format) Then
                            Return Server.HtmlEncode(obj2.ToString)
                    End If
                    Return String.Format(format, obj2)
            End Function

            Public Overloads Function Eval(ByVal expression As String) As Object
                    Dim result As Object
                    result = MyBase.Eval(expression)
                    Return Server.HtmlEncode(result)
            End Function

    First, let me say I don't agree with this approach. You shouldn't be letting contaminated data into the database in the first place. That is your problem. Not encoding it on the way out is only a problem if you allowed the data to get into the database with embedded html in it. There are protection mechanisms in place that help prevent xss type code getting submitted, but I'm guessing you disabled it. The boundfield control also allows encoding HTML. It's been a while since I've used a form control, but I would typically use the literal control instead of a label. It's a lighter weight control, and as you see, it's more appropriate for outputting data in the manner you expect. Something like:

    <asp:Literal ID="lblNotes" runat="server" Mode="PassThrough" Text='<%# replace(system.Web.HttpUtility.HtmlEncode(Eval("Notes")),chr(13),"<br />") %>'></asp:Literal>

    Except here I've used the passthrough mode, encoded the string myself, so that I can convert CR's to an html BR.

    I've read your other posts, and what I see is the typical programmer who claims to know better, then turns around and complains when his code doesn't work well. Turning off security features, then complaining how insecure his app is, is your fault. It's the equivalent at saying how insecure a bank is, and blaming the vault manufacturer, cause the manager who knew better left the front door and the vault door open over night. Oh, and how insecure perl must be cause, slashdot didn't properly html encode my post by default.

  11. Re:Amazing on Vista Share Drops for the First Time In Two Years · · Score: 1

    Correction: You need to read the article, because no, it doesn't count those things.

  12. Re:Amazing on Vista Share Drops for the First Time In Two Years · · Score: 1

    Correction, the latest, and still unreleased version of Windows has 50% more market share than every flavor of linux combined (1.52% vs .95%).

  13. Re:where is OS 10.6? on Vista Share Drops for the First Time In Two Years · · Score: 2, Informative

    OS 10.6 is up on their survey, and is included, please read the article.

  14. Re:Reading some comments on Wolfenstein Being Recalled In Germany · · Score: 1

    No thank you Tom.

    If you want to continue eating dog poop, that's fine. But if you put a label on it calling it caviar souffle and try to pass it on to others, don't whine when I point out that it isn't a souffle because souffles are made from egg whites.

  15. Re:Reading some comments on Wolfenstein Being Recalled In Germany · · Score: 1

    The United States did not go to war in Vietnam. Only congress can declare war, and it had not. The president can make police actions without congresses approval, but it limits the amount of power he has. Therefore, the United States involvement in Vietnam was that of a police action, and you may call it an insult, but it is the truth. The difference is clear, and while you may think it diminishes the sacrifices the men and women in the military made, that is your own fault not understanding the difference.

  16. Re:Reading some comments on Wolfenstein Being Recalled In Germany · · Score: 1

    The white house was burned in 1814. Last I checked the revolutionary was for the US independence was back in 1776. It was officially recognized 1783.

    There is only one body in the United States that may declare war, and that's the congress. Congress made no declaration of war for Vietnam, which means it was a police action (for the US). There is a difference between a police action and a war. Congress declares war. The president can do police actions without congresses approval, but it limits his rights what he can do.

  17. Re:Reading some comments on Wolfenstein Being Recalled In Germany · · Score: 1

    See my above post regarding mental age.

    Perhaps I should also include that you should not comment on your own countries laws if you don't know them very well. Apparently the whole world knows about Germany's anti-nazi laws, but you don't. Also, you do realize that constitution of a country is it's highest law, correct? If there is no such law perhaps you should tell that to your judges, because they sure think it is.

    Your interpretation of anti Nazi laws
    I have made no interpretation of Germany's anti nazi laws, so you can stop right there. I said they look silly to those of us not under the influence of your countries laws. I have read and followed a fair number of cases involving those laws, including cases from google, ebay, and electronic arts. The outcome in each case, as someone who believes in freedom of speech and expression find quite silly, but it is your country, your laws, you do as you please over there.

    In addition, you can not claim you are innocent from libel by declaring you believed something is true. So the original posters comment as he made it is simply false. That's not how it works. There is a defense based on that, but only if you have proof that you were told that by a reputable source that the average person would reasonable expect to be an expert, authority, or to have checked beyond a reasonable doubt. In that case, then the libel suit would have to be filed against the originator of the libel, not a repeater of such.

    On the other hand, the anti-nazi laws are pretty simple in cases like this. Just google (if they aren't censored as well) over all the cases involving german anti-nazi laws involving not only their own citizens, but citizens and corporations of other countries. It's really not that difficult.

    Now please take your pompous eurotrash anti-American sentiments back to your own (censored) country.

  18. Re:Reading some comments on Wolfenstein Being Recalled In Germany · · Score: 3, Informative

    Sorry, I should have mentioned that I am of German descent. A large portion of my family still resides in Germany, and I have spent significant time there, starting from childhood, albeit I haven't been there in many years. Some of Germany's civil laws are pretty silly, or at least were. Being able to drink pretty much as soon as you can ask for it, but it's illegal to play pinball or video games in public at least until you turn 18. You can't have minors in movie theaters in the evening, even if accompanied by their parents, watching PG movies?

    Odd, but I don't necessarily disagree, I also saw a large 4-5 story building with a mural of a naked/bare chested lady. Naked/bare chested women on public tv during the evening. I remember watching (sorry, my german is pretty poor, so my cousin was translating some), about some plot to make bras that secretly blow up like balloons. A rather silly plot line, but plenty of gratuitous nudity during prime time. Personally, I find that fine as well, but I find it odd that as open minded as that is, the great lengths the country has gone to hide it's own history.

    Just some of the absurdities I encountered while there.

  19. Re:Reading some comments on Wolfenstein Being Recalled In Germany · · Score: 3, Insightful

    I would agree that some of the people posting not only have a mental age of about 13, but are likely chronologically 12-15 as well. That doesn't change the fact that the anti-nazi laws in Germany look pretty silly for those of us that don't actually live there. You shouldn't comment on other countries laws if you don't know them very well. Your interpretation (or at least your statement) of the libel, slander, and tort laws within the US makes for a nice sound bite, but it's not nearly that simple. Simply believing a statement to be true, or the proclamation of such isn't a valid defense. Just an FYI - the US libel laws are based on the original British defamatory laws, and are very similar at their core.

    You should really brush up on your history a little bit, because the US was invaded. The white house burned down to the ground. We don't ban flags, symbols, or discussions about the subject. We don't ban the confederate flag, or other civil war era material. Vietnam wasn't a war, it was a police action -- big difference. Burying your head in the sand and pretending something didn't happen or doesn't exist doesn't make you better, it just raises a new generation of ignorant citizens.

  20. Re:Stability on Why Users Drop Open Source Apps For Proprietary Alternatives · · Score: 1

    Here is an unbiased report on firefox being "rock stable":

    Firefox has stopped working 169 time(s), last occurring on 9/11/2009 3:05 AM.

    That's 169 crashes. I don't call that stable, let alone rock stable. That is however, my own personal experience using firefox on my own hardware. Your experience may vary, but for me firefox isn't stable at all. Today I had issues with hulu's queue in firefox, and I cut and pasted the url into chrome, and the problems all went away. I don't consider hulu that unpopular, so I don't know what the issue is, and I don't really care other than again, firefox fails to "just work".

  21. Re:OK, let's talk perspective... on Microsoft Interns Still Feel the Love · · Score: 1

    I've been in software for close to 25 years, and I was making more than that my first day out of college, and it was worth a lot more in 1991. I would hardly consider that a BIG salary for a seasoned professional, and I don't live in a coastal state, unless you consider lake michigan part of a coast. Sorry, but if you are only making that with 10 years of experience and an MBA, you either picked the wrong field, or well, you need to change jobs.

  22. Re:Stability on Why Users Drop Open Source Apps For Proprietary Alternatives · · Score: 1

    Firefox 3.5.2 had issues with facebook, monster, and dice. It ran those site so slowly it might have well been a crash. Literally minutes to respond to clicks.

    Another site I use caused firefox to crash everytime. Not only taking down the tab, but the entire process and it has no java or flash. Firefox 3.5.3 fixed the last issue completely, and I haven't checked the others, but it was crashing multiple times per day, and I couldn't use it on quite a few sites.

    I don't consider that "rock stable", unless that rock is teetering on a smaller rock at the top of a hill.

  23. Re:Wow on Military To Spend $42M To Build Advanced Network Control · · Score: -1, Redundant

    Lol. You do realize that DARPA created the internet, right? The whole TCP, UDP, IP protocols were created by them.

  24. Re:Why is this a surprise? on EA Spends 3x More On Marketing Than Development · · Score: 1

    Yes, this is slashdot. One of the few places where when you talk about having a woman in a car with you, it is assumed that she is a professional.

  25. Re:what to do, what to do on Initial Tests Fail To Find Gravitational Waves · · Score: 1

    Yes, you are a conspiracy theorist. Your inability to see that you actually do fall into that category shows that you have little understanding of the scientific process or true science. The rest of what you go on about is irrelevant to the discussion.

    Please, if you want to teach your kids about Christianity, please feel free to do so. There are special places where they devote themselves to the teaching of Christianity, around here we call them "Church". Personally, I don't want school to be extended or time taken away from other subjects so that religion can be taught. Of course, every religion would have to be taught in order to provide equal treatment -- all 15,000 of them with more being added every day. Christianity is NOT based on science, or scientific principles, and therefore should not be taught during science regardless if you believe in separation of church and state or not. Anything else you've said doesn't stray from those simple facts. I understand you believe in your faith, and you believe so strongly that you assume what you are saying is all true. But things based on assumptions don't make things a fact, no matter how much you believe in them. If you can't prove it, then it isn't fact. Please, you may be passionate about the subject, but that doesn't make you right.