tfw someone just steals feelings out of your brain and puts them to words
  • JackbyDev JackbyDev 9h ago 100%

    What did you write then? I'm confused. You showed how to solve the problem and got it marked wrong?

    3
  • tfw someone just steals feelings out of your brain and puts them to words
  • JackbyDev JackbyDev 10h ago 87%

    It doesn't matter if you use mental math or not, you just need to write what you did in your head on the paper.

    6
  • WinAmp's Open Source Story Is Over
  • JackbyDev JackbyDev 13h ago 100%

    Any details on that case you remember? Sounds fascinating.

    2
  • linux
    Linux 23h ago
    Jump
    Nonfree software found in GNU Boot releases again, many distros affected.
  • JackbyDev JackbyDev 13h ago 96%

    Look, when you're trying to get your computer working I agree. I don't mind having to use nonfree stuff if I literally cannot boot otherwise. But if we don't have strong ideological fighters pushing for things like totally free systems then we wouldn't be where we are today and we would always have to use non free stuff. So it's definitely important we have people who are more ideologically idealist.

    31
  • Should you trust that doctor?
  • JackbyDev JackbyDev 14h ago 100%

    I should trust Zoidberg more than Dr. Phil?

    5
  • Quitting the game
  • JackbyDev JackbyDev 14h ago 100%

    Imagine doing this but then having to stare at the main menu for 8 hours lmao

    5
  • WinAmp's Open Source Story Is Over
  • JackbyDev JackbyDev 2d ago 100%

    Wouldn't an end user of something that should be GPLed be able to request the source?

    1
  • Wikimedia's instant-runoff 2024 board election (mbin doesn't support SVGs so I uploaded the 2560px PNGrender)
  • JackbyDev JackbyDev 2d ago 100%

    Ahhhh I see. It makes more sense when you remember there are multiple winners.

    2
  • Browsing "All" and images of nsfw-nature
  • JackbyDev JackbyDev 2d ago 100%

    If I see something I think should be marked NSFW I report it. I let the relevant mods/admins decide if it should be or not.

    1
  • [Meta] Should we consider moving this community to another instance?
  • JackbyDev JackbyDev 2d ago 100%

    Why do you think wouldn't move to this community if there was a pinned post here pointing to it?

    Some people don't view the community directly, just their subscribed feed.

    2
  • Hungry 9
  • JackbyDev JackbyDev 2d ago 100%

    ADHD (not even a diagnoses anymore IIRC - it's all ADD now)

    Other way around.

    1
  • Hungry 9
  • JackbyDev JackbyDev 2d ago 100%

    If you said squirrel I would've called you ableist.

    1
  • Hungry 9
  • JackbyDev JackbyDev 2d ago 100%

    IT IS ILLEGAL TO WRITE LIES IN ITALLIBOLD.

    3
  • Hungry 9
  • JackbyDev JackbyDev 2d ago 100%

    No, it's not an ADHD thing.

    2
  • Hungry 9
  • JackbyDev JackbyDev 2d ago 100%

    This isn't even an ADHD thing.

    2
  • Hungry 9
  • JackbyDev JackbyDev 2d ago 100%

    Yep, and what happens is that when kids need help they can't explain the "new" way from the beginning and only half remember stuff which is extremely confusing to hear as a parent so then the parents get mad at the method.

    3
  • Hungry 9
  • JackbyDev JackbyDev 2d ago 100%

    Yeah, this has nothing to do with ADHD.

    4
  • WinAmp's Open Source Story Is Over
  • JackbyDev JackbyDev 2d ago 100%

    Yeah, like one of the few things GitHub actually requires you to let people do is press the dang fork button.

    3
  • 196
    196 JackbyDev 7d ago 96%
    wormule
    229
    10

    I hear that a lot but, how bad is it really? Does it affect you (if you use Debian)? Aren't there ways to install newer versions of most things that actually matter?

    28
    51

    ![](https://lemm.ee/api/v3/image_proxy?url=https%3A%2F%2Fprogramming.dev%2Fpictrs%2Fimage%2F6a6b4292-f7d6-4b37-bc6e-611310db21f8.jpeg) Two different webs very close together. I like to imagine they'd chat about their days of they could!

    54
    4

    ![](https://lemm.ee/api/v3/image_proxy?url=https%3A%2F%2Fprogramming.dev%2Fpictrs%2Fimage%2F289d1a70-60a9-472b-80e2-2db7a8b472be.jpeg) For the unaware, there is a thing people do at Dragon Con (and possibly other conventions) called Swag and Seek where people make trinkets and leave them around the convention for people to take. This is probably the coolest one I found this year.

    15
    8
    stackoverflow.com

    Link to a (frustratingly) deleted question on Stack Overflow. Text and image copied below incase you don't have the ability to see it. (Not sure why the image shows multiple times.) --- Is there any way to more granularly control IntelliJ IDEA's inspections' "Nullability and data flow problems" option "Treat non-annotated members and parameters as `@Nullable`"? Preferably for unboxing specifically? I am aware I can use a variety of `@Nullable` annotations in a variety of places in the code to make the warnings appear. That's not always an option as the place the boxed primitives are coming from may be other libraries you don't have control over. *(Imagine if the `Holder` record below was from a different project.)* I included other examples below to illustrate my point. public class Sample { private final Boolean value; public Sample(Boolean value) { this.value = value; } private boolean isValue() { return value; // I would like a warning here } private static Boolean boxedTrue() { return true; } private static boolean unboxedTrue() { return boxedTrue(); // No warning here, but that's understandable since never null } private static Boolean boxedNull() { return null; } private static boolean unboxedNull() { return boxedNull(); // Only warning in the file (by default) // "Unboxing of 'boxedNull()' may produce 'NullPointerException' } public record Holder(Boolean value) {} public boolean openHolder(Holder holder) { return holder.value(); // I would like a warning here } } When "Treat non-annotated members and parameters as `@Nullable`" is enabled, the following gives warnings. While that makes sense given the name of the option, there is code like this literally everywhere. It adds hundreds of warnings to my project. I'm trying to find more granular choices. public static ZonedDateTime timeStuff(LocalDateTime localDateTime, ZoneId zoneId) { return localDateTime.atZone(zoneId); // I do not want warnings for this } I see that the Java Class Library has JetBrains annotations despite not actually being annotated. Is there perhaps some way to add these automatically to libraries if there is no better way to control the inspection? ![Showing `@NotNull` and `@Contract` annotations on `LocalDateTime.atZone(ZoneId)`](https://lemm.ee/api/v3/image_proxy?url=https%3A%2F%2Fi.sstatic.net%2F3KU4Iqbl.png)

    3
    2
    https://qntm.org/clean

    Seeing that Uncle Bob is making a new version of Clean Code I decided to try and find this article about the original.

    145
    72
    movies
    Movies JackbyDev 3mo ago 84%
    Barbie

    If you'd told me five years ago that there would be a Barbie movie that somehow was not only just not a cash grab or nostalgia bait but also a genuinely amazing piece of cinema with an amazing message to boot I'd never believe you.

    82
    38

    Opening your router to the Internet is risky. Are there any guides for the basics to keep things secure? Things like setting up fail2ban? My concern is that I'll forget something obvious. Edit: I haven't had much of a chance to read through everything yet, but I really appreciate all these long, detailed responses. ❤️ Thanks folks!

    118
    25
    https://jtnimoy.cc/item.php%3Fhandle=14881671-tron-legacy.html

    This part of this blog post has always made me happy and I come back it from time to time. This is regarding the scene in Tron Legacy when one of the characters stops another from hacking. If you'd like to see the scene for context here it is. The time code is when the particular portion is. https://youtu.be/Qeh3E67brBs&t=231 > In addition to visual effects, I was asked to record myself using a unix terminal doing technologically feasible things. I took extra care in babysitting the elements through to final composite to ensure that the content would not be artistically altered beyond that feasibility. I take representing digital culture in film very seriously in lieu of having grown up in a world of very badly researched user interface greeble. I cringed during the part in Hackers (1995) when a screen saver with extruded "equations" is used to signify that the hacker has reached some sort of neural flow or ambiguous destination. I cringed for Swordfish and Jurassic Park as well. I cheered when Trinity in The Matrix used nmap and ssh (and so did you). Then I cringed again when I saw that inevitably, Hollywood had decided that nmap was the thing to use for all its hacker scenes (see Bourne Ultimatum, Die Hard 4, Girl with Dragon Tattoo, The Listening, 13: Game of Death, Battle Royale, Broken Saints, and on and on). In Tron, the hacker was not supposed to be snooping around on a network; he was supposed to kill a process. So we went with posix kill and also had him pipe ps into grep. I also ended up using emacs eshell to make the terminal more l33t. The team was delighted to see my emacs performance -- splitting the editor into nested panes and running different modes. I was tickled that I got emacs into a block buster movie. I actually do use emacs irl, and although I do not subscribe to alt.religion.emacs, I think that's all incredibly relevant to the world of Tron.

    34
    1

    Literally. I open up my terminal and try to `cd Desktop` only to be told that no such file exists. I thought for sure everyone this was happening to was just not reading something correctly and were foolish. Nope! It literally began deleting my files. > Edit 2: Even once it's done and you have them locally and not "on demand", the Desktop is in `~/OneDrive/Desktop` instead of `~/Desktop`. See [this](https://programming.dev/comment/11163897) helpful comment. It looks like there *might* be a way to *sort of* disable Files on Demand but it looks like it won't let me do it until it's done uploading? I'll post updates. Not to be dramatic, but I'm really going through it. My mouse logitech mouse is suddenly chattering really bad and double clicking ***everything***. Also while Steam refuses to let me disable auto updates for all games in any sort of easy way. And DDG seems intent on only showing me results related to launching games without updating (as opposed to merely disabling auto updates until I launch). The chatter fixer I found for my mouse does not work and the other requires some logitech program to even try to use. (The repo doesn't mention the name.) This is awful. When it rains it pours, I guess. Literally can't even high light this text to wrap it in a spoiler. This is fucking stupid. Context: My parents have a family plan for Microsoft 365 they added me too and it has 1 TB of storage I can use. I wouldn't have turned it on otherwise. --- Edit: My desktop background has literally vanished and turned solid black. # ***DO NOT ENABLE ONE DRIVE.***

    597
    127

    Fuck it, `.zshrc` it is. Image transcription: - Top text: I STILL DON'T KNOW WHAT SHOULD GO IN .\*RC VERSUS .\*PROFILE - Bottom text: AND AT THIS POINT I'M AFRAID TO ASK

    240
    55
    https://useplaintext.email/

    I've been seeing comments about mailing lists. They usually want plaint text emails like these.

    54
    20
    https://git-send-email.io/

    Someone mentioned they don't know how to use email with git. I remembered this cool website.

    43
    2

    I have no idea how to title this post. Oh well. A few years back I worked somewhere that had a large breach. Many practices changed in the wake of it. Developers actually had admin access prior to the change which was very nice. In an effort to restrict access but also let folks do their jobs they deployed some tool that would start all programs that "needed" admin access as an admin. This included cmd for the devs. So every time I opened cmd I had to be careful not to break something since there was no way to launch it *without* admin access after that change.

    28
    2
    programming
    Programming JackbyDev 4mo ago 96%
    Sun Clock
    https://sunclock.net/

    (I did not make this project.) I love this website. It helps me visualize time with regards to the sun very well. If I could get my FitBit to display this as a clock face I definitely would. It's such a beautifully simple site. I'm sharing it in honor of the solstice today. It's (roughly) solar noon on the east coast. I think I found this site on Reddit prior to the Lemmy Exodus, so I'd like to share it here for everyone to enjoy. Happy solstice. Happy summer (or winter for our friends in the southern hemisphere). Also, based on the community info panel I believe this is on topic here, but if there is a better community for "cool site I found" let me know. ❤️☀️

    29
    3

    I feel like a case can really make or break a build. Or at least your enjoyment of it. My specs are below, but I sort of picked a case at random. I'm looking for suggestions. My current build has served me since 2010 and it's time to upgrade the CPU, Motherboard, and case. Everything that can be replaced easily has been and it's really showing it's age. I mention this because it's likely the case I pick will be used for the next ten years of my life! Stuff I care about - Ease of opening for cleaning/assembling. Part of why I don't clean my current on as much as I should is how annoying it is to open. - Ease of moving. I'm more interested in handles than weight, but I still don't want something stupidly heavy. - Size. I'd prefer something a little too big rather than something a little too small. I don't necessarily want a full tower though. As long as I can get in easily and there is some extra room for the next GPU I'll inevitably buy in the next 10 years I'm good. Stuff I don't care about - Water cooling. I have zero interest in getting custom water cooling. Too much effort for me. - Looks. I don't really want some crazy RBG thing, but I also don't specifically need some super minimalist thing either. - Price. So, obviously I don't want to waste money, but if I need to splurge a little I'm willing to. Within reason. [PCPartPicker Part List](https://pcpartpicker.com/list/xPVNhk) Type|Item|Price :----|:----|:---- **CPU** | [AMD Ryzen 7 5700X 3.4 GHz 8-Core Processor](https://pcpartpicker.com/product/JmhFf7/amd-ryzen-7-5700x-34-ghz-8-core-processor-100-100000926wof) | $162.00 @ Amazon **CPU Cooler** | [Deepcool AK620 68.99 CFM CPU Cooler](https://pcpartpicker.com/product/9T92FT/deepcool-ak620-6899-cfm-cpu-cooler-r-ak620-bknnmt-g) | $64.98 @ Amazon **Motherboard** | [MSI MPG B550 GAMING EDGE WIFI ATX AM4 Motherboard](https://pcpartpicker.com/product/2f4BD3/msi-mpg-b550-gaming-edge-wifi-atx-am4-motherboard-mpg-b550-gaming-edge-wifi) | Purchased For $0.00 **Memory** | [Corsair Vengeance LPX 16 GB (2 x 8 GB) DDR4-3600 CL16 Memory](https://pcpartpicker.com/product/6cZzK8/corsair-vengeance-lpx-16-gb-2-x-8-gb-ddr4-3600-cl16-memory-cmk16gx4m2d3600c16) | $54.99 @ Amazon **Memory** | [Corsair Vengeance LPX 16 GB (2 x 8 GB) DDR4-3600 CL16 Memory](https://pcpartpicker.com/product/6cZzK8/corsair-vengeance-lpx-16-gb-2-x-8-gb-ddr4-3600-cl16-memory-cmk16gx4m2d3600c16) | $54.99 @ Amazon **Storage** | [Samsung 980 Pro 2 TB M.2-2280 PCIe 4.0 X4 NVME Solid State Drive](https://pcpartpicker.com/product/f3cRsY/samsung-980-pro-2-tb-m2-2280-nvme-solid-state-drive-mz-v8p2t0bam) | $159.99 @ Amazon **Storage** | [Seagate Barracuda Compute 2 TB 3.5" 7200 RPM Internal Hard Drive](https://pcpartpicker.com/product/mwrYcf/seagate-barracuda-computer-2-tb-35-7200rpm-internal-hard-drive-st2000dm008) | $64.98 @ Amazon **Video Card** | [Zotac GAMING Trinity GeForce RTX 3070 Ti 8 GB Video Card](https://pcpartpicker.com/product/g8Z9TW/zotac-geforce-rtx-3070-ti-8-gb-gaming-trinity-video-card-zt-a30710d-10p) | Purchased For $0.00 **Case** | [Corsair 4000D Airflow ATX Mid Tower Case](https://pcpartpicker.com/product/bCYQzy/corsair-4000d-airflow-atx-mid-tower-case-cc-9011200-ww) | $104.97 @ Amazon **Power Supply** | [EVGA SuperNOVA 750 G6 750 W 80+ Gold Certified Fully Modular ATX Power Supply](https://pcpartpicker.com/product/qH4Ycf/evga-supernova-750-g6-750-w-80-gold-certified-fully-modular-atx-power-supply-220-g6-0750-x1) | $133.99 @ Amazon | *Prices include shipping, taxes, rebates, and discounts* | | **Total** | **$800.89** | Generated by [PCPartPicker](https://pcpartpicker.com) 2024-06-14 14:57 EDT-0400 |

    11
    8

    I don't get a very detailed error message but it fails and tells me to try reinserting it. I've tried a few times. It fails at different percentages sometimes. Any thoughts or ways to get a more detailed error message? I have Mac and Linux too.

    19
    7

    I failed the strength check despite being a paladin and using inspiration. I never saw him again even after getting through nearly all of act 2. I've asked this before, maybe even in this community, but no one gave a concrete answer, likely because the game was still new.

    46
    27