- 2 Posts
- 37 Comments
I think that is the main thing I need to do. Check all my cloud saves for the games I want to continue. Thanks.
Excellent news.
mindlessLump@lemmy.worldto Programming@programming.dev•Recommend me a programming language3·1 year agoI would second Elixir. Either that or Rust. Sure both are popular, but for good reason.
They are completely different from the languages you use.
You will be introduced to new paradigms.
As a person who used the same stack as you (albeit typescript instead of JavaScript), I think it would be a waste of time to learn C#. It is so close to Java, and learning it may make you hate having to use Java, because it seems a bit better put together. Even though it runs on Linux, and is a good language, I don’t think there is ever a reason to chose it over Java, because M$.
mindlessLump@lemmy.worldto Health - Resources and discussion for everything health-related@lemmy.world•Preparing to Hang Up the Car Keys as We AgeEnglish5·1 year agoHaha, indeed. I was giving a satirical take of how many older people feel. It’s hard to have your independence taken away from you.
mindlessLump@lemmy.worldto Health - Resources and discussion for everything health-related@lemmy.world•Preparing to Hang Up the Car Keys as We AgeEnglish413·1 year agoFuck that. My kids (if I have any) can pry my keys from my keys from my cold dead hands.
Manjaro Gnome worked with my Lenovo T480s out of the box.
Check out exif tool. You could also incorporate jq a command line json parser, to extract data from the json file. If you are trying to do higher level sorting/organization, you may consider using a scripting language other than bash/zsh. Guaranteed there is a Python package for reading exif data.
mindlessLump@lemmy.worldto PlayStation@lemmy.world•What are you playing this week? (2024.01.12)English1·1 year agodeleted by creator
That doesn’t necessarily mean it might not fix the issue. If you can find a GPU to borrow, plug that in and see if you still get crashes.
Running Windows? You could try a clean install
Here is a real world example of someone doing some reverse engineering of compiled code. Might help you understand what is possible, and some of the processes. https://nee.lv/2021/02/28/How-I-cut-GTA-Online-loading-times-by-70/
I’ll have to check out this book. Just remember HTML cannot be parsed with regex
mindlessLump@lemmy.worldto Emacs@lemmy.ml•Looking for input regarding finding an IDE (spoilers: involves Emacs and Vim)2·1 year agoNot sure about that. There may be a plugin, or you could write maybe write a script, but that is not default behavior.
mindlessLump@lemmy.worldto Emacs@lemmy.ml•Looking for input regarding finding an IDE (spoilers: involves Emacs and Vim)2·1 year agoYes, you can debug with vim + plugins, but I haven’t taken the time to set it up. You can do the same in emacs. I haven’t tried emacs as an IDE. I’ve read that LSP support is pretty good at this point, and I’m interested to set it up. I think spacemacs makes that pretty easy. I have LSP hooked up in nvim and have near parity with VS Code, but I’ve been wanting to swap my config to a Lua based one.
I think running neovim as a standalone app is rooted in the desire to manage it with a window manager, but for me, being in the terminal is a huge plus. Pair that with tmux, and you can piece together an IDE outside of nvim as well, say, running gdb in a window compiling your app in another, and having nvim open in the next with convenient hotkeys to manage the windows and copy text fluidly between them.
mindlessLump@lemmy.worldto Emacs@lemmy.ml•Looking for input regarding finding an IDE (spoilers: involves Emacs and Vim)2·1 year agoI would roll your own config with both. I use NeoVim every day. It’s not my main IDE, mainly due to working with Java dev and needing a debugger. But need to edit a command? ctrl-x ctrl-e. Want to pipe output of a command to an editor? ‘| vim -‘ Vim macros can save you so much time, and are fun to implement. It’s an essential tool imo. As I understand it, eMacs is better used as a standalone application than in the terminal. My primary use for emacs is org mode. You can export org mode to multiple formats including markdown. Easy to share notes to a wiki or readme. You can also execute code blocks within org mode using babel. Have a csv that you want to turn into an ascii table? Org mode can do that as well, and you can add functions to columns. You’ll have to enable these packages in your config. Hint, figure out “use package” from the start. Back to my first bit of advice, figure out what you want to do in each, and pull in a few packages to your config. You’ll have the basics down. Then when you want to grab a batteries included framework, you’ll have some opinions on which one you might want to use. NvChad looks cool, but it almost seems too much for me, and I’m attached to my simple configuration. I don’t want tabs in vim because I have a cool fuzzy search for buffers. That being said, in eMacs, I have a package that implements tabs. Anyway, I say just start using them!
mindlessLump@lemmy.worldtodatahoarder@lemmy.ml•What's an elegant way of automatically backing up the contents of a large drive to multiple smaller drives that add up to the capacity of the large drive? (on Linux)6·1 year agoYou could create a Python script to do this. There is a library called psutil that would help. Basically,
- iterate over mounted drives and see how much each has available
- based on these values, iterate over your backup files and separate them into chunks that will fit on each drive
- copy chunks to respective drives
Would be a fun little project even for a beginner I think.
mindlessLump@lemmy.worldto Cult Films@lemux.minnix.dev•Growing up this was my favorite Christmas special. What are some of yours?English3·1 year agoAnother Henson classic, A Muppet Christmas Carol.
I might have to check this one out.
Hmm, another electron app? I’ll stick to Firefox.
I think there is some info missing. You’re using SSH to access the server where you are running the docker image? Why does your server have X server installed?
I have no experience running Lemmy. It could be the Lemmy instance includes X server to run some kind of GUI? Seems strange.