Slashdot Mirror


User: tokizr

tokizr's activity in the archive.

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

Comments · 9

  1. JetBrains on Ask Slashdot: What Is Your View On Forced Subscription-Only Software? · · Score: 1

    I like the JetBrains model, the subscription part is what entitles you to updates, but every product version you have owned for more than six months is yours to keep as well. That way you are never unable to use the product but have a large incentive to keep the subscription.

    It helps that the pricing is super reasonable.

    Personally I believe the subscription strategy is a more reliable source of revenue, as opposed to huge spikes after every release and not much money in between. This security likely allows for priorities to shift from new features to maintenance and polish.

  2. Re:Trusting a binary from Cisco on Firefox 33 Integrates Cisco's OpenH264 · · Score: 1

    I don't know exactly how this verification is usually done but I would assume it would involved a more relaxed search checking for instance that the same system calls which are implicit in the source are in the provided binary (and only those), or that the symbol table matches what is expected. An not a direct byte to byte comparison.

    But I could be wrong so I hope someone else with experience in this area can enlighten us further.

  3. Re:Screw you, Lawrence on Lessig's Mayday PAC Scrambling To Cross Crowd Funding Finish Line · · Score: 1
    If I got it correctly he (or whoever else is with him) will match the remaining 6.

    And if we meet that goal, we'll get it matched, for a total of $12 million raised.

  4. Re:~$7500 per transaction? on Cybercrooks May Have Stolen Billions Using Brazilian "Boletos" · · Score: 1

    The value of the Boleto is part of the code and can be altered by the payer(for instance if you have to pay a fine because the payment is late, or if you have a discount for paying early) so if you can yank the transaction you can probably also alter the value.

  5. Re: I don't get it. on Cybercrooks May Have Stolen Billions Using Brazilian "Boletos" · · Score: 1

    They only get the goods *after* you pay, so it is safe for them. If you go to a store and take a product home they will give you other payment options instead such as credit/debit, cash or some other type of *ensured* payment. Or they will collect all personal information (including your CPF (SSN equivalent)) which is all they need to the hell out of you if you don't pay (much like if you payed with a cheque and had no backing funds).

  6. Re:It's 2014 on Bug In Fire TV Screensaver Tears Through 250 GB Data Cap · · Score: 2

    It migh have in the sense that the data cap limits how much people actually browse/stream/etc, so they don't go over it. Which in turn reduces the total bandwidth.

  7. Re:Wow on The Profoundly Weird, Gender-Specific Roots of the Turing Test · · Score: 1

    I would imagine his intent was not that the machine would achieve success, the experiment is simply a nice framework to analyse weather the machine is able to comprehend information. Weather the machine is convincing or not, if the machine can abstract concepts in the same we do then you'd have a thinking machine. The pretending scenario seems just like a simple way to make it harder for someone to make a cheap solution to the problem (i.e. a chatbot).

    Ultimately producing real intelligence is what is sought, not passing the damned test.

  8. But will they regenerate? on Fishing Line As Artificial "Muscle" · · Score: 1

    Strain and exposure tends to destroy nylon from my experience, when a muscle fiber is broken it gets replaced by one or more new fibers, how would you efficiently replace broken coils on a artificial limb?

  9. Explicit memory management. on Why JavaScript On Mobile Is Slow · · Score: 2, Insightful

    You could just 'force' people to use a language with explicit memory management, like by offering [better] support for that particular language (C/C++ is best but I understand people do not enjoy these lower level languages as much). I always thought that the best form of garbage collection is not having garbage collection at all, but managing your memory efficiently and having good allocators. Yet even on languages such as Java/Javascript you can be smart about your objects so to minimize the underlying allocations. I would suppose javascript may be a little harder since it's not strongly typed but it should still be possible.