Skip Navigation
Jump
What are some things that Linux can't do, but Windows can?
  • I had to literally give up on a windows install that worked itself into an update hole, run the update, cant log in, undo the update, it tries to update at night. Endless cycle, no possible fix.

    I don't want to berate you, but just know with enough practice, you'll be able to fix that linux install. Windows wont let you fix it.

    13
  • Jump
    What's your favorite music player on Linux?
  • I'm a fan of cmus. simple and easy.

    5
  • Jump
    Friendly reminder
  • Sorry cant hear you, too busy computing with the safety switched off and the action set to full auto.

    7
  • Jump
    Me vs my ISP
  • Idk how it works in china, is the wire coming from the wall a thin sorta stiff wire? or is it a thicker wire(5-10mm across) that is bendy?

    If the latter, you can just plug that ethernet cable into your own router.

    If its a fiber cable then I dont know if you can have your own ONT.

    1
  • Jump
    Me vs my ISP
  • Is your service fiber? Is your router a combined ONT and router? If its not and you have an ONT serving ethernet to the router, you can just plug your own router in.

    You said it's through china mobile so is it a cell modem/router?

    0
  • Jump
    GitHub Desktop or Git CLI?
  • Yeah I actually just prefer the command line, I've never had to force myself to use it. I even tried using VSC for a bit recently but i couldn't get myself to like it. I just use nvim with some plugins in a tmux session now and its productive as hell.

    Of course I don't browse the web with the command line. For merging branches, I always merge main into the working branch first, check conflict files, and go through the file finding the diffs and resolving them. I've used merge tools before that were sorta nice but I had my own issues with them.

    Maybe it's the type of programming I do. I don't do any web stuff, so file count is down. For larger code bases I keep a non editor terminal up and will grep -re for word/phrase searching, find to look for specific files, etc. I'll occasionally use an IDE, typically eclipse based because embedded, but I don't find myself missing the features they add.

    4
  • Jump
    GitHub Desktop or Git CLI?
  • Thanks for the explanation, that does sound useful.

    1
  • Jump
    GitHub Desktop or Git CLI?
  • That's fair, there's plenty of uses for source control.

    I was speaking from a programming context though, as this is a programming community.

    4
  • Jump
    GitHub Desktop or Git CLI?
  • I really never understood why one would need a GUI for git except for visualizing branches.

    I feel like I'm crazy seeing so many people using clicky buttons for tracking files. I need like 4 commands for 95% of what I do and the rest you look up.

    You're already programming! Just learn the tool!

    And now there's a github CLI tool? I hate to beat a dead horse but Microsoft pushing their extended version of an open source tool/protocol is literally the second step of their mantra.

    34
  • Jump
    People from dystopian western regimes enjoying Chinese freedom and humanity. This is why western regimes are so scared of western people visiting China.
  • I have yet to meet an American who visited china who did not come back screaming praises for that country. When you mention their visits, they always grin even if it was a grueling work trip.

    51
  • Jump
    God I wish there was an easier way to do this
  • Programming humor on reddit used to be excellent bits like this but then it devolved into new learners jumping straight to the irony they didn't understand and flooded the sub with nonsense.

    I miss these bits.

    btw it does get easier

    import math
    def is_even(num):
        if num in [i for i in range(1000) if float(i)/2.0 == math.floor(float(i)/2.0)]:
            print("true")
        else:
            print("false")
    

    Obviously one would need to increase the range for bigger numbers but this code is optimized.

    18
  • Jump
    What is the most exotic meat you've eaten? How was your experience?
  • I believe it. Once big work horses were more available, people stopped tearing down the moose on-location and just dragged it home. In more modern times, they'll use a 4x4. This particular area was extremely rutted so they couldn't get anything wheeled back there, and where do you even find a Clydesdale rental service this day and age?

    4
  • Jump
    What is the most exotic meat you've eaten? How was your experience?
  • I had some moose that was given to me by my friend who was present at his friends moose hunt. They had to break the animal down at the location and make multiple meat sack trips to the game warden for tagging. The warden said they hadn't seen someone do it like that for a century.

    7
  • Jump
    Google Maps widely rolling out new color palette
  • I do think that the highway emphasis is important, as you're typically traveling faster and you don't want to take your eyes off the road more than you have to. Having the bright yellow highway for things like complex offramps has been helpful to me in the past. I'll just have to see how it goes.

    1
  • Jump
    Google Maps widely rolling out new color palette
  • looking again, the greater contrast for smaller roads is nice.

    2
  • Jump
    Google Maps widely rolling out new color palette
  • Why would you change the roads to grey from yellow? What? What is the primary thing your eye is seeking when using a GPS app?

    7
  • Jump
    Merge then review
  • A typo in the first paragraph of the article in a wiki wont make the 5th paragraph tear down the entire wiki.

    9
  • Jump
    If you had to choose one programming language that you had to use for the rest of your life, what would it be?
  • Web assembly isn't quite the same as a js frontend though, is it?

    It's typically for complex single page apps and has some weirdness with normal usecases, no?

    I could be wrong but I was looking into it a few months ago and it seemed immature.

    5