Slashdot Mirror


User: fisted

fisted's activity in the archive.

Stories
0
Comments
2,925
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2,925

  1. Re:Dependencies on Ask Slashdot: Feature Requests For Epoch Init System 1.3.0? · · Score: 1

    You should try and read the link in the comment you replied to

  2. Re:Dependencies on Ask Slashdot: Feature Requests For Epoch Init System 1.3.0? · · Score: 1

    So what is a sane init system to do in case of a broken disk? Pretend everything's good and mount its filesystems r/w so that we might get away with starting sshd anyway?
    A broken disk is a broken disk. Dropping into a single-user console makes sense because "broken disk" comes in too many machine-indistinguishable flavours for a program to meaningfully take care of and the consequences of "just trying something" could be severe.

    If you need this kind of robustness, use a RAID.

  3. Re:Please explain a passage from the article on Past a Certain Critical Temperature, the Universe Will Be Destroyed · · Score: 1

    Would it be more correct to say "Spacetime began with the Big Bang"?

    That's the general idea, yes, as far as we (don't) understand it. Of course, whether that's true or not is an entirely different issue, but this model at least allows us to explain a few things (e.g. CMB).

    Assuming "Spacetime began with the Big Bang", I see no room for reasoning about what came "before" it. Of course, our spacetime might embedded into something else, but that's shifting the question rather than answering it, IMO.

  4. Re:*BSD on Ask Slashdot: Feature Requests For Epoch Init System 1.3.0? · · Score: 1

    It might be the fact that the BSDs already have a mature and sound dependency-based init system.

  5. Re:Dependencies on Ask Slashdot: Feature Requests For Epoch Init System 1.3.0? · · Score: 1

    The NetBSD init system (which was introduced way back in 2001, and I think ended up being adopted by the other BSDs) has a simple way of solving this. There's a tool called rcorder that parses REQUIRE and PROVIDE lines in each startup script (it's tsort, essentially) and determines the order to run each script. If you wanted to debug something, you could run this yourself and check the output.

    Came here to say this.

  6. Re:Worth reading the whole article on Toshiba Introduces a Cortana Keyboard Button For Windows 10 · · Score: 1

    Thanks for the headache

  7. Re:What's the onomatopoeia for an eye roll? on Toshiba Introduces a Cortana Keyboard Button For Windows 10 · · Score: 1

    But this is big. It's right there in TFA.

  8. Re:Escape on Toshiba Introduces a Cortana Keyboard Button For Windows 10 · · Score: 1

    Now we remap the damn key to produce an Escape keysym.

  9. Re:Simple fix on Toshiba Introduces a Cortana Keyboard Button For Windows 10 · · Score: 1

    Cardboard? Fucking casual.

    The correct solution is to glue a drawing pin onto the keycap, upside down.

  10. Re:Please explain a passage from the article on Past a Certain Critical Temperature, the Universe Will Be Destroyed · · Score: 1

    before the Big Bang

    bzzzzt.
     
    It's not known whether the universe was created by the Big Bang, or the Invisible Pink Unicorn, but if we assume the Big Bang model, then I don't see how there can be any "before" it.

  11. Re:so lean, many small on M0n0wall Fork SmallWall Has First Official Release · · Score: 1

    [...] on link-local unicast address fe80::<interface identifier>.

  12. Re:so lean, many small on M0n0wall Fork SmallWall Has First Official Release · · Score: 1

    You'd normally just wait for a router advertisement (ICMPv6) message arriving for the "all link-local nodes" multicast address (ff02::1).
    If you don't feel like waiting for one, send a router solicitation to the "all link-local routers" multicast address (ff02::2), the router(s) will respond with router advertisements (possibly via unicast in this case, not sure).
    The router advertisement contains the (64 bit) interface identifier; the router is then reachable on the link-local unicast address fe80::.

    In unix, you can query information about all this after the fact using ndp(8).

    HTH

  13. Re:so lean, many small on M0n0wall Fork SmallWall Has First Official Release · · Score: 1

    I hope you don't mean on the client end, because that would make a ridiculous claim.

    Or on the server end, because that, well, would make a ridiculous claim.

    I'm not against offering a browser-or-whatever-based GUI, I just find it a stretch to call that a "small and lean" firewall.

  14. so lean, many small on M0n0wall Fork SmallWall Has First Official Release · · Score: 2

    small and lean firewall

    improvements to the GUI

    Uh-huh.

  15. Re:Reddit.... on Reddit Removes Communities To Address Harassment, Users Respond · · Score: 0

    got modded funny and troll you lost karma.

    Oh noes, an integer in a database, on a site that is bordering on the irrelevant anyway. I certainly see how accidentally losing karma could completely destroy lives here. Sheesh.

    It's thus the most dangerous kind of comment to post... and my favorite.

    Same here, and for some reason I've been at Karma: Excellent for years; high UID and questionable username notwithstanding. And I don't even give a shit about it. You might want to try that.

    That said, I do recognize your signature and I generally like your comments. Most of them, anyway. Keep it up, and care less about karma.

  16. Re:Reddit.... on Reddit Removes Communities To Address Harassment, Users Respond · · Score: 2

    I kind of wish Slashdot has Reddit's threading features, where you'd be notified when replies were made. I think it encourages active discussion.

    You do realize that you can get email for replies, right? It's in the account settings.

  17. Re:Reddit.... on Reddit Removes Communities To Address Harassment, Users Respond · · Score: 2

    The sliders above the comment section.
    Move them.

  18. Re:Infecting HD BIOS, other flash? on German Parliament May Need To Replace All Hardware and Software To Stop Malware · · Score: 0

    but it's not worth you paying for my time to do so when we can replace it for around the same cost.

    You realize that doesn't make sense, right? Why should they care who they're paying, if it's the same cost...

  19. Re:Parliament will discuss this? on German Parliament May Need To Replace All Hardware and Software To Stop Malware · · Score: 1

    For instance, the law of gravity says that things fall down

    Oh please.

    I'm an engineer

    A "software engineer" by any chance?

  20. Re:End to end connectivity? on How Ready Is IPv6 To Succeed IPv4? · · Score: 1

    It is fine for it to travel through a gate, a firewall inspect whether its source address has a pass or not

    Finally someone who actually understands what they're talking about rather than just making loud, uninformed claims.

  21. Re:Perl still around? on Perl 5.22 Released · · Score: 1

    the exec + is asking for trouble. exec \; is asking for slow.
    the correct way is, as you mentioned, -print0 | xargs -0

  22. Re:Perl still around? on Perl 5.22 Released · · Score: 1

    for f in python perl shell script; do printf '%s: %s\n' "$f" "$(find /{,usr/{,pkg/,local/}}*bin -type f -print0 | xargs -0 file | grep -Fi "$f" | wc -l)"; done
    python: 11
    perl: 39
    shell: 260
    script: 314

  23. Re:Perl still around? on Perl 5.22 Released · · Score: 1

    I wrote my sig in perl

  24. Re:Perl is for luddites. on Perl 5.22 Released · · Score: 1

    Considering this suggestion I'm glad to see that you did improve a bit.

  25. Re:have lot's of crowbars on hand on Prospects and Limits For the LHC's Capabilities To Test String Theory · · Score: 2

    ...he was making a game reference, and what he got are unforeseen consequences. Sounds about right to me.