Slashdot Mirror


User: CommanderK

CommanderK's activity in the archive.

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

Comments · 41

  1. Re:Lies, bullshit, and more lies ... on With H-1B Cap Hit, Zuckerberg and Ballmer-Led Groups Press For More Tech Visas · · Score: 1

    The H1B visa is dual intent and allows you to apply for a green card. The process in many cases is H1B -> green card -> starting a company. It just takes a few years (in some cases, 5 to 7) to actually get the green card.

  2. Re:Repo Man on UK Announces Hybrid Work/Study Undergraduate Program To Fill Digital Gap · · Score: 1

    I think its also crap how you can buy an imported car at times with nearly 1% APR, but an education that does not depreciate or get repossessed must not only accrue ridiculous finance fees, it now must also involve indentured servitude.

    I believe you answered your own question: in case of default, a car can get repossessed and sold, an education can't. If you were in the lender's position, why would you lend money to students knowing they could default and walk away from the debt?

  3. Re:Apple on Popular Smartphones Hacked At Mobile Pwn2Own 2014 · · Score: 1

    No, PC browsers (with the possible exception of Safari?) don't do anything nearly so braindead, nor do any of the other kinds of PC software that use a JIT (a few examples: Java, .NET, Flash). You allocate the memory, with pages mapped R/W. You emit JIT-compiled code into a page. You re-map the page to R/X! Repeat as more pages are needed. You never, even have a R/W/X page.

    For Chrome, at least, you're completely wrong. Chrome (or more specifically V8) maps all code pages as RWX, then starts writing and modifying code in-place in those RWX pages. Having writable code is required for several V8 features, like inline caches and code garbage collection. Chrome is just as bad in this regard as Safari. However, it's not allowed to do this on iOS, only on desktops and Android (AFAIK).

  4. Re:English? on Facebook Introduces Hack: Statically Typed PHP · · Score: 1

    All that effort could have been put into creating a PHP-to-Java converter or something along those lines.

    They have created a PHP-to-C++ translator called HPHP (or HipHop), years ago. The code that it generated wasn't really human-readable or maintainable.

  5. Re:Criminality can be relative on Gates Warns of Software Replacing People; Greenspan Says H-1Bs Fix Inequity · · Score: 1

    Much poorer countries than the US have far fewer felons (in fact, the US has the highest incarceration rate in the world). Poverty isn't correlated with the number of felons. I think it's ignorant for a citizen of the world's top superpower (and one of the richest countries on the planet) to argue about desperation. I grew up in a developing country, with many more poor people and in worse situations than any I've heard about in the US, and yet they don't go around murdering others for food (except if they're criminals). By the time the US is in that bad a shape, much poorer countries will already be much worse off and probably invading.

  6. We get plenty of systemic legalized taking from the poor to give to the rich.

    Such as? If you're going to say "taxes", I'll object; taxes hit poor people the least.

  7. Then murder is definitely not justified (or even theft). Like it or not, you're competing against that group for money/resources, so you have to beat them in reasonable and legal ways.

  8. The Russian Revolution was a disaster, and brought about a century of poverty, crime and suffering (in Russia and a lot of Eastern Europe). Also, the revolutionaries killed not just the "rich oppressors", but also a lot of people they just didn't like: intellectuals, artists, scientists, small business owners and so on (including some of their own). Personally, I'm fine with preventing something like that from happening again, but not by giving into their demands.

  9. To me, the only valid provocation for violence is preceding violence (the only justified violence is self-defense). Someone not giving you their money is not "provocation" in my book. The difference between justifying and predicting it is simple: if it's just a prediction, then you also accept measures to prevent it (any measures, such as everyone arming themselves against these thieves).

  10. No, you know what he can, should, and will do? He'll fucking murder you, and take your stuff. If your world view relies on the underclass laying down and dying for your convenience, you're going to be in for a rude, and fully deserved, awakening.

    That is a horrible and seriously criminal attitude. You're arguing that if others don't give you something you need, it's fine to just murder them (your words, not mine). Unprovoked violence is never justified; whatever your problems might be, you have to solve them peacefully (unless you get attacked first). This kind of Robin Hood-style violence does not belong in a civilized, developed society.

  11. Re:Need for long-term view of society on Gates Warns of Software Replacing People; Greenspan Says H-1Bs Fix Inequity · · Score: 3, Insightful

    How does this "true communism" you speak of differ from the one that's been tried, and has failed over and over and over?

  12. Re:Need for long-term view of society on Gates Warns of Software Replacing People; Greenspan Says H-1Bs Fix Inequity · · Score: 1

    we will have human level ai in 10 years, but even if you are not, 25-50 years is easily more than enough time to complete it

    That's what people have been saying for the last 50 years or more, and I don't think we're any closer now than we were back then.

  13. Re:Seems reasonable on Russia Backs Sending Top Students Abroad With a Catch · · Score: 1, Insightful

    University is effectively free, and you get a part-stipend, part-loan for your living expenses

    It's not effectively free, you just pay for it later through higher taxes (schools cost money to operate, and that money has to come from somewhere).

  14. Re:Seems reasonable on Russia Backs Sending Top Students Abroad With a Catch · · Score: 2

    In the case of the US, a legal mechanism already exists to force foreign students to return to their countries. If a student studies in the US on a J1 visa, he/she cannot get another visa from certain categories (like J1 and H1B) or a green card for 2 years after the J1 expires. There's a way to get an exemption from this, but it requires that the student's own government signs off on it.

  15. Re:Well it's not like they could get a visa to sta on Russia Backs Sending Top Students Abroad With a Catch · · Score: 1

    That actually exists, it's the J1 visa. It has a 2-year period where you can't get another US visa (from certain categories, like J1 and H1B), and the only way to get an exemption is with approval from your own country.

  16. Re:What a disaster. on Code.org: Give Us More H-1B Visas Or the Kids Get Hurt · · Score: 1

    The reality is that any individuals interested in immigrating are going to do so via the traditional means, and that's assuming they didn't come here to study first.

    What would those "traditional means" be?

  17. Re:My own proposal for fixing H1-B on Code.org: Give Us More H-1B Visas Or the Kids Get Hurt · · Score: 1

    That actually exists, it's called an investment-based visa (code EB-5) and it takes $500k to get (by investing that money in businesses in certain areas). Most foreigners don't have $500k though.

  18. Re:MOST games/media apps are implemented this way. on The Challenge of Cross-Language Interoperability · · Score: 2

    WoW uses Lua, which is actually known for having a very simple and easy to use interface with C code. I even found an example on the Wikipedia page: http://en.wikipedia.org/wiki/Lua_(programming_language)#C_API

  19. Re:TFA does a poor job of defining what's happenin on How Your Compiler Can Compromise Application Security · · Score: 1

    The original x86 had 4 ring levels and segmentation, and at the time we got AMD64 no one was using them (or at least Windows/Linux/*BSD weren't using them). AMD removed security measures because they weren't popular.

  20. Re:Computer programming is not IT! on Justice Department Slaps IBM Over H-1B Hiring Practices · · Score: 1

    Here's a hint: there are parts of the US outside of the bay area. Bay area provincialism may have blinded you to that fact, so consider this a helpful reminder.

    So? I don't get your point. Are programmers from outside the Bay Area prevented from applying to work at companies like Google/Facebook? Quite the opposite. However, if you're looking for a guy to write your next database engine/compiler/OS kernel/Internet-scale search engine, you will hit a shortage.

  21. Re:Computer programming is not IT! on Justice Department Slaps IBM Over H-1B Hiring Practices · · Score: 1

    They do fit in, but there's a huge distinction and there are different levels of "IT worker". Not everyone has the same skills or gets paid the same. In some categories there is a real shortage. For example, most "IT workers" can use a database engine (like Oracle or MySQL), but very very few of them could also write that database engine efficiently (how many sysadmins know what a B+ tree is?)

  22. Computer programming is not IT! on Justice Department Slaps IBM Over H-1B Hiring Practices · · Score: 5, Funny

    Both the summary and some commenters make the same huge mistake by putting IT people and programmers in the same bucket. A C++ programmer has completely different skills and responsibilities from a PHP/HTML programmer, who has a completely different job from a network/system administrator. The latter could be considered IT (and their pay is usually lower), whereas the former are developers (requiring extra creativity and more skill, and are better paid). In my experience working in the Bay Area, there really is a shortage of competent high-skill systems developers/programmers (the kind of guys who design Google and Facebook infrastructure, like Big Table), but not a shortage of PHP or Java programmers or sysadmins.

  23. Re:If not NaCl or JS, then what? on Google Dropping Netscape Plugin API Support In Chrome/Blink · · Score: 1

    I also mentioned Flash, which was the same bad idea with a good implementation.

  24. Re:If not NaCl or JS, then what? on Google Dropping Netscape Plugin API Support In Chrome/Blink · · Score: 1

    Two words: Java applets. This is exactly how they work, and it's a mess. You have to start the JVM every time you load an applet (or load it with the browser and keep it around), and then the UI is a mess. JavaScript inside a browser (with access to the DOM) is so much cleaner and faster (relatively) than the previous mess that were applets. Also similar is Flash, but Adobe got Flash performance to a decent level. However, both Flash and Java applets are going away (for good reason), and the future is probably HTML5 + JavaScript.

  25. Re:Don't need anonymity ... on Bitcoin Perfectly Anonymous — Until You Spend It · · Score: 2

    Or others such as buying an engagement ring, tampons, laxatives and many others. Do you really want others to know about everything you spend money on?