Linux-Powered E-Ink Tablet by Pine64 Makes a Return
  • SzethFriendOfNimi SzethFriendOfNimi Now 100%

    Nice… but what’s the max temp I can set it to for soldering?

    2
  • Anyone running ZFS?
  • SzethFriendOfNimi SzethFriendOfNimi Now 28%

    If I recall correctly it’s important to be running ECC memory right?

    Otherwise corrupter bites/data can cause file system issues or loss.

    -3
  • Hmm...
  • SzethFriendOfNimi SzethFriendOfNimi Now 100%

    , et al

    3
  • Hmm...
  • SzethFriendOfNimi SzethFriendOfNimi Now 100%

    These entanglements change us

    10
  • Is there a name for the trope where a story is high fantasy at first glance, except for it's not fantasy and is actually set in a post-apocalypse dystopian future?
  • SzethFriendOfNimi SzethFriendOfNimi Now 100%

    That’s a great summary. I’ve really enjoyed all of his books.

    I can’t wait for December 6th when Wind and Truth releases.

    I’m finishing a reread of the Stormlight Archive now.

    3
  • Is there a name for the trope where a story is high fantasy at first glance, except for it's not fantasy and is actually set in a post-apocalypse dystopian future?
  • SzethFriendOfNimi SzethFriendOfNimi Now 100%

    And the powers, as in all the Cosmere, has limits which balances it out.

    No endless pushes, flying, etc. every world has some resources or constraint so you’re not left with a “Superman” kind of scenario.

    6
  • Is there a name for the trope where a story is high fantasy at first glance, except for it's not fantasy and is actually set in a post-apocalypse dystopian future?
  • SzethFriendOfNimi SzethFriendOfNimi Now 100%

    For a pure magic example

    The Mistborn era 1 (books 1-3) are fantasty magic.

    Mistborn era 2 (books 4-7) occur hundreds of years later in that worlds “industrial/steam” age. Still, with magic.

    So, for example, some allomancers can push or pull on metals. In Era 1 that’s used for combat but also for rapid movement. An allomancer can fall from a wall, throw a coin and “push” off of it causing them to bounce forward and upwards. As they’re starting to reach the azimuth they “pull” the coin, catch it and repeat.

    They also in combat throw and then “push” coins or metal fragments like shrapnel.

    In Era 2. A sheriff (who’s an allomancer) leaps across a gully, aims and shoots a bullet into a wooden crate and then “pushes” on it to cross it.

    Another time during a shootout one “pushes” gunfire away so it deflects around him. Not guaranteed to get all of the bullets but useful in situations like that.

    There are other uses and other allomantic abilities but the entire shift of the format was just done phenomenally.

    Can’t recommend the Mistborn series enough

    9
  • Preparations for halloween with my biggest print yet
  • SzethFriendOfNimi SzethFriendOfNimi Now 100%

    I find skirts useful to make sure I’ve got consistent flow before it starts printing the object.

    This way there isn’t oozing or a delay from a previous retraction. A good purge, as you say, to get primed and ready to go.

    1
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearHO
    Jump
    How to fix this glass that is no longer in place?
  • SzethFriendOfNimi SzethFriendOfNimi Now 100%

    And as an extra aside be careful not to put pressure on the edge where it’s apt to fracture and break.

    11
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearHO
    Jump
    How to fix this glass that is no longer in place?
  • SzethFriendOfNimi SzethFriendOfNimi Now 100%

    Looks kind of like this. They suggest replacing the uchannel with clamping braces instead

    https://youtu.be/t7Pmd_Vx5FA

    9
  • Express.
  • SzethFriendOfNimi SzethFriendOfNimi Now 100%

    Feral but leashed. And the leashes came off I guess.

    4
  • Express.
  • SzethFriendOfNimi SzethFriendOfNimi Now 100%

    So… public shopping post Covid? So many people act “feral” now.

    I wish this amalgamation of various shoppers was pure fiction and not almost the norm now.

    What do you mean my snarling uncontrolled dog can’t urinate in the cart at the checkout line? And where’s that cashier? Why do I have to wait? Don’t they know I have to get back before Olsteen’s special service comes on? These kids are so lazy… why doesn’t anybody do their jobs anymore!?!

    16
  • Express.
  • SzethFriendOfNimi SzethFriendOfNimi Now 100%

    Pushed cigarettes on kids

    12
  • How are pseudo/true random numbers generated mathetmatically, what sorcery is this?
  • SzethFriendOfNimi SzethFriendOfNimi Now 100%

    I see a lot of good answers here but let’s try it from another angle.

    How do we get randomness from a function or formula?

    For starters let’s setup a few simple rules.

    Every time our random function is called we’ll

    • Take the last output from a variable we call LAST_RESULT
    • If there’s no value in LAST_RESULT we’ll assume the value is 1
    • We run a set of calculations storing the value in a variable we call X
    • We store the result of these calculations in LAST_RESULT
    • We return this new “random” number.

    So let’s call it.

    > Random()
    Since LAST_RESULT is undefined SET LAST_RESULT to the value of 1
    Set X to the result of this calculation 
       (LAST_RESULT+1) * 3
    

    X is now 6

    Set X to the result of this calculation
       (X + 7) / 2
    

    X is now 7

    Set X to the result of this calculation (rounding to the nearest whole number)
       X/LAST_RESULT
    

    X is now 7

    Set LAST_RESULT to the value of X
    

    LAST_RESULT is now 7

    Return the value of X as the result 
    

    Result is 7

    Ok. So let’s call it again

     > Random()
    Set X to the result of this calculation 
       (LAST_RESULT+1) * 3
    

    X is now 24

    Set X to the result of this calculation
       (X + 7) / 2
    

    X is now 16

    Set X to the result of this calculation (rounding to the nearest whole number)
       X/LAST_RESULT
    

    X is now 2

    Set LAST_RESULT to the value of X
    

    LAST_RESULT is now 2

    Return the value of X as the result
    

    Result is 2

    And if we call it again we get seemingly random results

    Random() Result is 4

    Random() Result is 3

    But the next time you run it you’ll get the same results in the same order. 7, then 2 then 4 then 3

    So what you need is something to “seed” the random number calculation.

    Something like

    SetRandomSeed Set LAST_RESULT to the current second of the day

    Then when you call Random after this it starts with that as the prior results and gives seemingly random results.

    Of course my calculations are rough and probably fail/repeat after so many calls but it gives you an idea of how this works.

    So the trick is to get noise for the seed. That could be the number of non leap seconds since 00:00:00 UTC on Thursday, 1 January 1970 (Unix epoch)

    Or the temperature reading of a CPU chip.

    Maybe it’s the ratio of red vs yellow from a camera feed looking at lava lamps.

    Or the current users average typing speed.

    An additional note. Many of those would not be “cryptographically” secure for encryption because they can easily be determined by a third party. We all experience the same “Unix epoch” within a few milliseconds if our system clocks are properly set for example. Or monitored from afar and reproduced (hacked webcam shows they had just typed the following letters in the previous 27 seconds that we know the “algorithm” uses, etc.

    17
  • Could use some help.
  • SzethFriendOfNimi SzethFriendOfNimi Now 100%

    I thought I’d add that it looks like it’s overextruded. So much that the filament is being “pushed” out and curling back around the nozzle.

    It could be the e steps, flow rate, etc but it could also be that your Z offset needs to be adjusted back away a smidge.

    That could be part of the inconsistent print since the tool head movement over one section of the bed vs another may be affected by the layer below based on how the filament curled there.

    If you want to do a deep dive into adjusting/calibrating the Ender I did write up a bit here (although that post does relate to Klipper and I mention settings/adjustments for Klipper it starts purely with the physical printer itself and builds on it)

    https://lemmy.world/comment/7904011

    9
  • Artist is Suing Copyright Office For Refusing to Register His AI Image
  • SzethFriendOfNimi SzethFriendOfNimi Now 100%

    Here’s more if you’d like to read about it.

    https://www.copyright.gov/engage/visual-artists/

    I remember when the DMCA was introduced and all the various issues arising from what and isn’t copyrightable when it comes to digital vs physical copies, etc.

    Again I’d like to recommend Leonard French (Lawful Masse) on YouTube and Twitch for a copyright lawyers breakdown of these kinds of issues.

    3
  • Artist is Suing Copyright Office For Refusing to Register His AI Image
  • SzethFriendOfNimi SzethFriendOfNimi Now 100%

    And therein lies the rub. When it comes to copyright every infringement case has to be adjudicated by a judge (assuming they have filed a copyright)

    I can definitely recommend Leonard French’s (a copyright lawyer) channel Lawful Masses on YouTube and Twitch for a more in-depth breakdown of copyright cases. How it works, the rights that copyright holders have, etc.

    7
  • Artist is Suing Copyright Office For Refusing to Register His AI Image
  • SzethFriendOfNimi SzethFriendOfNimi Now 100%

    I’m not Anti AI. I have fun making stuff with it.

    But the copyright laws as they are don’t apply. And if they did it would open a can of worms legally.

    The recipe can’t be copyrighted. The cake produced can’t be copyrighted. But the packaging or style of a cake with your brand could be trademarked which is a different legal ball of wax entirely

    9
  • Artist is Suing Copyright Office For Refusing to Register His AI Image
  • SzethFriendOfNimi SzethFriendOfNimi Now 100%

    It’s a good analogy but one thing to consider is that the artist is the copyright holder.

    The company that directed it only has the copyright either by explicit contract transferring rights or because it’s a work for hire where the employee’s copyright work is “automatically” transferred to their employer.

    Some interesting case law on that from Disney artists, comic book authors, etc

    https://copyright.gov/circs/circ30.pdf

    6
  • I just updated yesterday to the 1.3.5 release. Unfortunately now when I use my thumb to quickly scroll posts and comments it doesn’t respond. But if I stop, and move very slowly it does register the scroll. After it finally does scroll then for about 10 seconds or so it behaves normally. This doesn’t happen, however, in the top half of the screen. Just the bottom half. Thank you again for all the hard work you do on the app.

    12
    5
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearCA
    CAD SzethFriendOfNimi Now 95%
    Modernizing the best Woodworking Joint to use for 3D Printing
    https://youtu.be/zI8OgRRF5d8
    20
    2
    youtube.com

    From Tom Bate’s phenomenal Nigel (the tiny Wizard) and Marmalade.

    8
    1
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearCA
    CAD SzethFriendOfNimi Now 100%
    Connect 3D Printed Parts | Design for Mass Production 3D Printing
    https://youtube.com/watch?v=djm5tCFn9S0
    16
    1

    I got a singer 8606 from a yard sale and am having trouble finding a manual online and what parts work with it? E.g. compatible bobbins, needles, etc.

    6
    2
    www.eff.org

    I found this interesting and was wondering how some of the larger instances handle the issues they outline such as Copyright/DMCA Safe Harbor CSAM Law enforcement/warrants/info inquiries And not included (since it’s focus is on US legal issues) but I’m curious about would be other regulations such as EU user data retention

    60
    5
    SzethFriendOfNimi Now
    13 1.2K

    SzethFriendOfNimi

    lemmy.world