Slashdot Mirror


User: tigersha

tigersha's activity in the archive.

Stories
0
Comments
1,610
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1,610

  1. "Illegal Alien Hunter" is probably no going to go down well on that card.

  2. Re: lol know nothings on Are App Sizes Out of Control? · · Score: 2

    This. And in order to render HTML one library happens to be an entire browser. This is the case for Electron apps

  3. Re:With all this hate... on Systemd Named 'Lamest Vendor' At Pwnie Security Awards (theregister.co.uk) · · Score: 1

    I am still sad that I can't get a 160 wide Hercules Graphics Card that can drive my 24 Inch monitor in monochrome :(

  4. Re:With all this hate... on Systemd Named 'Lamest Vendor' At Pwnie Security Awards (theregister.co.uk) · · Score: 1

    OS/X is OS/X. The Audio API, to use your example, is the best there is and in widespread commercial use. There is a reason they did their own Audio API. The one In Linux and BSD sucks. Completely.

    As for Graphics, OS/X was always based on a PostScript/PDF rendering pipeline for reasons that it widely used in Desktop Publishing. OS/X is OS/X, not BSD. It works very well for the tasks it was designed for. FreeBSD works well for the tasks it was designed for. There is quite a bit of overlap, sure, but they are not the same

  5. Re:With all this hate... on Systemd Named 'Lamest Vendor' At Pwnie Security Awards (theregister.co.uk) · · Score: 1

    Since when is ThreadRipper on the market? Where did you buy one?

  6. Marketers subscribe on Sweden Accidentally Leaks Personal Details of Nearly All Citizens (thehackernews.com) · · Score: 5, Insightful

    > ..the transport agency then emailed the entire database in messages to marketers that subscribe to it.

    This sentence makes no sense. What did the marketers subscribe to? The top secret database??!! This must have been quite a large database, I doubt that you can attach and mail it. Who mailed what to whom?

    The whole article reads like something Google translate did on a day when the server was drunk or half asleep.

  7. Re: Lingua Franca on IEEE Spectrum Declares Python The #1 Programming Language (ieee.org) · · Score: 1

    Since when is docker written in Python? It is written in Go as far as I know.

    Ansible is written in Python.

  8. Re: Lingua Franca on IEEE Spectrum Declares Python The #1 Programming Language (ieee.org) · · Score: 1

    That is true. I work for a niche industry. We sell one device every two years.

  9. Re: Lingua Franca on IEEE Spectrum Declares Python The #1 Programming Language (ieee.org) · · Score: 1

    Yes but if you do use the syn version of readFile all the Nodies freak out. And there are NO syn version of thing like accessing mongodb, which, incidentally I needed today (for initializing my program with settings, in case you ask).

    Javascript's continuation passing style is total crap. The problem is that is pretty hard to modularize programs because you can't fit pieces of program together properly. It was a really, really bad design decision. And don't get my started on promises. No, they are not the answer to all the world's problems, at least not at the scale they are used in Node to fix all the problem with continuation callbacks.

  10. Re: already had circuit elements that could do thi on A New Sampling Algorithm Could Eliminate Sensor Saturation (scitechdaily.com) · · Score: 1

    With a tube iPhine XLR sockets is probably better

  11. Re: It's a matter of time... on Navy Unveils First Active Laser Weapon In Persian Gulf (cnn.com) · · Score: 1

    The laser would typically be used to target incoming anti shipping missiles or ICBMs in boost phase. If you think a hypersonic missile or an ICBM is going to shoogle like a mad bastard in a few Milliseconds I have a bridge to sell you. Cheap.

  12. Re:Or Ada. Or Erlang... on TechCrunch Urges Developers: Replace C Code With Rust (techcrunch.com) · · Score: 1

    > disclosure: I personally always liked PL/I

    Are you kidding?
    Ok, serious question: is PL/I still being used somewhere?
    I remember the thing from back in the late 80s but never bothered to learn it. I met the wife of a colleague in 95 and she claimed to be working it, which surprised me a bit, even then.

  13. Maybe you have weird kids but playing with my children beats the hell out of the nagging b1tch3s at work!

    I will take a shorter commute BECAUSE i have kids any day

  14. Who, me?

  15. Re:Still better than Android on Windows Phone Dies Today (theverge.com) · · Score: 1

    Agreed, although the Bluetooth sucks

  16. Re: It's not April 1st... on Windows Phone Dies Today (theverge.com) · · Score: 1

    That is something all of the Apple haters tend to forget. Apple is a hardware company. The make money from slick expensive hardware, not from user data.
    Their software is very cheap for what it does, actually, unlike Microsoft.

    They do NOT sell user data like Google or Facebook because it is not part of their business model. Which is the main reason I use my iPhone even though I like my Windows Phone more.

    Strangely, this puts Apple at a disadvantage in the big neurocomputing AI thing that seems to be coming on like a Tsunami: Google has a hell of a lot more data to trains their networks since they have all the data about searches , scans peoples emails and are not ashamed about it.

    If AI is the future Apple better start watching their backs.

  17. Re: It's not April 1st... on Windows Phone Dies Today (theverge.com) · · Score: 1

    No, he's right. I have an Android, a iPhone and a WinPhone lying around. I like the WinPhone, and am looking around for a cheap Lumia. It is really a nice phone.

  18. Re: Doesn't work well with glasses on The Oculus Rift Still Isn't Selling, In a Worrying Sign For VR (technologyreview.com) · · Score: 1

    So that would be another 200 bucks then

  19. Re:A little bit more background on Scientists Have Detected a New Particle At the Large Hadron Collider At CERN (bbc.com) · · Score: 1

    Top and Bottom honey

  20. So that guy in the desert who got another message 600 years or so later, he is just talking crap then?

  21. Re:Javascript pushing it down on Is Ruby's Decline In Popularity Permanent? (computerworld.com.au) · · Score: 1

    > That's not a problem anymore since javascript promises.

    You must be kidding me. Have you actually ever used promises?

    The problem with promises is that a very deeply fundamental construct is broken in Javascript. The ides of "First do X and then do Y. Eveyr other programming language (except Haskell) does this by writing the X and then Y on another line next to it, or separated with a semicolon.

    This makes good sense since you can, well, read the code from top to bottom just like a real book. Callbacks totally breaks this fundamental thing, and now promises is supposed to fix it. Problems aplenty:

    a) Promises need to wrap the "things that comes after X". This is pretty bizarre, and adds a hell of a lot of overhead just so the computer can go on with its task. Both CPU and mental on the programmer side
    b) There are multiple promise implementations, many libraries, that you might want to use, do NOT use promises (the node filesystem lib for one!) which means some of your code wirkt with them and some do not. I know ES6 is supposed to rectify this but it is still half baked and browsers do not run it necessitating a whole build chain to get Javascript to properly do things one after the other with a sane syntax.

    If JS really, really wants to use callbacks to sequence things it should be a syntactical construct with no more complexity than a semicolon, like in any other language. It is too basic a thing to be left to multiple independent half-compatible complex libraries.

  22. Re: learning new languages: fool's errand on Is Ruby's Decline In Popularity Permanent? (computerworld.com.au) · · Score: 1

    Does implementing your own invented functional language in 10K+ of Prolog count? Even when it was in 1989 and the language is a pre-Haskell lazy pure language?

  23. Re: Javascript pushing it down on Is Ruby's Decline In Popularity Permanent? (computerworld.com.au) · · Score: 1

    Bingo.

    Call me a simple farmboy if you like but I prefer the real things ng, not a string of promises. Miss node always promises me a lot, but Ruby? She gives me the goods straight away!

  24. Re: Javascript pushing it down on Is Ruby's Decline In Popularity Permanent? (computerworld.com.au) · · Score: 1

    RoRs main attraction is not the Web layer. It is ActiveRecord, the dblayer.

  25. Re: One Thing Is Certain on Is Ruby's Decline In Popularity Permanent? (computerworld.com.au) · · Score: 1

    Maybe so but we still have all the money and that compensates for therest.