Jonkman Microblog
  • Login
Show Navigation
  • Public

    • Public
    • Network
    • Groups
    • Popular
    • People

Notices by Verius (verius@community.highlandarrow.com), page 21

  1. Verius (verius@community.highlandarrow.com)'s status on Sunday, 11-Feb-2018 05:38:10 EST Verius Verius
    @purplehippo True, but I've found the game not to be quite up my alley anyway so this was actually the most fun part of the game for me. :D
    In conversation Sunday, 11-Feb-2018 05:38:10 EST from community.highlandarrow.com permalink
  2. Verius (verius@community.highlandarrow.com)'s status on Sunday, 11-Feb-2018 05:02:52 EST Verius Verius
    Got Uplink. Got a bit annoyed at the pace of the game. Decided to apply the theme of hacking properly. Fired up gdb. Now I'm rich and can do the story missions without fear of missing hardware. :P
    In conversation Sunday, 11-Feb-2018 05:02:52 EST from community.highlandarrow.com permalink
  3. Verius (verius@community.highlandarrow.com)'s status on Saturday, 10-Feb-2018 11:38:01 EST Verius Verius
    in reply to
    • Annah
    @maiyannah More like get kicked up the nuts or get shafted through the rear. And like with VBA vs JS you'll find few people who prefer the former and quite a few people who prefer the latter. </bad-analogy>
    In conversation Saturday, 10-Feb-2018 11:38:01 EST from community.highlandarrow.com permalink
  4. Verius (verius@community.highlandarrow.com)'s status on Saturday, 10-Feb-2018 10:53:16 EST Verius Verius
    TIL Office 2016 allows add-ins to be written in JavaScript. I'm trying to figure out whether that's better or worse than VBA.
    In conversation Saturday, 10-Feb-2018 10:53:16 EST from community.highlandarrow.com permalink
  5. Verius (verius@community.highlandarrow.com)'s status on Saturday, 10-Feb-2018 06:03:16 EST Verius Verius
    • mangeurdenuage
    @mangeurdenuage Yes, but only in Dutch.
    In conversation Saturday, 10-Feb-2018 06:03:16 EST from community.highlandarrow.com permalink
  6. Verius (verius@community.highlandarrow.com)'s status on Saturday, 10-Feb-2018 05:53:59 EST Verius Verius
    The best use of a 1 petaflop supercomputer in a Russian nuke research center? According to some scientists there: mining bitcoins. Unfortunately for them they got caught, that center actually has decent opsec and connecting the computer to the internet caused set off a warning. Whoops.
    In conversation Saturday, 10-Feb-2018 05:53:59 EST from community.highlandarrow.com permalink
  7. Verius (verius@community.highlandarrow.com)'s status on Saturday, 10-Feb-2018 05:48:56 EST Verius Verius
    Also, hurrah for expanded post limit and QVitter no longer eating my newlines.
    In conversation Saturday, 10-Feb-2018 05:48:56 EST from community.highlandarrow.com permalink
  8. Verius (verius@community.highlandarrow.com)'s status on Saturday, 10-Feb-2018 05:48:25 EST Verius Verius
    I find it hard to completely blame Github for this, but it's new to me that they allow username reuse: https://donatstudios.com/GithubsTotalSecurityFacepalm

    Combined with rather dumb package managers which treat Github as part of their security model that's gonna lead to security issues.

    I guess it just goes to show how bad it is to rely on just URL's. A proper system relies on some form of cryptographic signing instead to indicate that the author of an artifact is indeed the owner of the expected key.
    In conversation Saturday, 10-Feb-2018 05:48:25 EST from community.highlandarrow.com permalink

    Attachments

    1. Invalid filename.
      GitHub Shouldn't Allow Username Reuse
      from Donat Studios
  9. Verius (verius@community.highlandarrow.com)'s status on Wednesday, 07-Feb-2018 03:32:32 EST Verius Verius
    • Jon Valdés
    @jonvaldes Oh, that, I agree on. It's not really a C++ thing that invalid-pointer dereference can trigger undefined behavior (https://doc.rust-lang.org/reference/behavior-considered-undefined.html) but in C++ it's really easy to mess up if you don't have a good static analyzer and are serious about using it. This is why raw pointers in modern C++ are generally considered tricky and the core guidelines have a lot to say about when to use them (pretty rarely if you combine all the guidelines), e.g. https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rf-ptr-ref (you may disagree about that note about null references being uncommon I guess). However as with any old language that has undergone significant backward compatible changes there's a lot of existing crappy code out there written by programmers with only half a clue of what they're doing (which is easy in C++ given how hard it is to understand even half the language), so I understand where you're coming from.
    In conversation Wednesday, 07-Feb-2018 03:32:32 EST from community.highlandarrow.com permalink
  10. Verius (verius@community.highlandarrow.com)'s status on Tuesday, 06-Feb-2018 11:54:59 EST Verius Verius
    • Jon Valdés
    @jonvaldes Now that I'm being a proper computer I can add one additional data point: Rust has nullable references too: https://godbolt.org/g/9aegxS  Yes, it involves unsafe but `let ptrref: &i32 = &*ptr;` isn't really that much different than your C++ code. The main thing Rust adds is a warning sign for code review.
    In conversation Tuesday, 06-Feb-2018 11:54:59 EST from community.highlandarrow.com permalink
  11. Verius (verius@community.highlandarrow.com)'s status on Tuesday, 06-Feb-2018 10:29:35 EST Verius Verius
    • Jon Valdés
    @jonvaldes That's true. But it still doesn't mean that gat C++ has nullable references. What it does mean is that it's ridiculously easy to get into undefined land and peek through the abstraction curtaib. That's something Rust, C# and pretty much all other modern languages do better. But references cannot be null in a correct program (and yes, I am very aware how little that means in practice) and for a statement about languages, as I have made, thar is the relevant criterium.
    In conversation Tuesday, 06-Feb-2018 10:29:35 EST from community.highlandarrow.com permalink
  12. Verius (verius@community.highlandarrow.com)'s status on Monday, 05-Feb-2018 12:14:45 EST Verius Verius
    in reply to
    • Annah
    @maiyannah Doesn't an insanity plea just change your sentence from prison to guarded mental hospital? At least hereabouts many criminals actively avoid being examined for mental issues in order not to end up in a guarded mental hospital, mainly because a prison sentence is finite but the criminally insane only get out if they pass a review and can be kept indefinitely if judged to remain a danger to society.
    In conversation Monday, 05-Feb-2018 12:14:45 EST from community.highlandarrow.com permalink
  13. Verius (verius@community.highlandarrow.com)'s status on Monday, 05-Feb-2018 10:24:27 EST Verius Verius
    • Jon Valdés
    @jonvaldes Ok, I guess you can technically make a frankenconstruct in some implementations. Note that per the standard you cannot do that in a well defined program. The problem here comes from pointer dereferencing, once you dereference a nullptr all bets are off (undefined behaviour). So technically C++, the language, doesn't have null references even if there are C++ implementations that allow creating them through undefined behavior.
    In conversation Monday, 05-Feb-2018 10:24:27 EST from community.highlandarrow.com permalink
  14. Verius (verius@community.highlandarrow.com)'s status on Monday, 05-Feb-2018 02:38:19 EST Verius Verius
    How do you distinguish a seasoned engineer from an inexperienced one? Ask them about the downsides of their favorite tool and when they'd use their least favorite tool.
    In conversation Monday, 05-Feb-2018 02:38:19 EST from community.highlandarrow.com permalink
  15. Verius (verius@community.highlandarrow.com)'s status on Monday, 05-Feb-2018 02:36:09 EST Verius Verius
    • Jon Valdés
    NPE's don't impact memory safety though and aren't undefined behaviour. Regardless, I agree that default nullability is a bad thing. So do the C# designers, they said they'd remove them if it wasn't for backward compatibility. And C++? Doesn't have nullable references (pointers, yes, references, no). I think Rust isn't trying harder to be perfect, it just has a different idea of perfection and little worry about backward compatibilty yet.
    In conversation Monday, 05-Feb-2018 02:36:09 EST from community.highlandarrow.com permalink
  16. Verius (verius@community.highlandarrow.com)'s status on Sunday, 04-Feb-2018 12:54:13 EST Verius Verius
    in reply to
    • lnxw48a1
    • Annah
    @maiyannah @lnxw48a1 Frankly, when it comes to currencies, I very much prefer those that central banks control. If anything the eurocrisis has taught us that too little control over a currency by a central bank is a bad thing (Greece couldn't devalue its currency to help fix its economy).
    In conversation Sunday, 04-Feb-2018 12:54:13 EST from community.highlandarrow.com permalink
  17. Verius (verius@community.highlandarrow.com)'s status on Sunday, 04-Feb-2018 12:50:52 EST Verius Verius
    in reply to
    • Annah
    @maiyannah Ok, let me be more precise. They don't like economic issues where they don't make a profit on first.
    In conversation Sunday, 04-Feb-2018 12:50:52 EST from community.highlandarrow.com permalink
  18. Verius (verius@community.highlandarrow.com)'s status on Sunday, 04-Feb-2018 08:54:36 EST Verius Verius
    Nice art style. But it takes shoehorning to a whole new level: https://docs.microsoft.com/en-us/powershell/digital-art
    In conversation Sunday, 04-Feb-2018 08:54:36 EST from community.highlandarrow.com permalink
  • After
  • Before
  • Help
  • About
  • FAQ
  • TOS
  • Privacy
  • Source
  • Version
  • Contact

Jonkman Microblog is a social network, courtesy of SOBAC Microcomputer Services. It runs on GNU social, version 1.2.0-beta5, available under the GNU Affero General Public License.

Creative Commons Attribution 3.0 All Jonkman Microblog content and data are available under the Creative Commons Attribution 3.0 license.

Switch to desktop site layout.