hungariantoast's recent activity
-
Comment on What's your video game comfort food? in ~games
-
Comment on What is your 'Subway Take'? in ~talk
hungariantoast Lmao want you to know you're not the only one who feels this wayAfter I was apprehended by the fun police
Lmao want you to know you're not the only one who feels this way
-
Comment on What is your 'Subway Take'? in ~talk
hungariantoast My personal favorite is "youns" (or "yinz" I guess) -
Comment on What is your 'Subway Take'? in ~talk
hungariantoast (edited )Link ParentSure, but there's nothing automatically wrong with wanting to sound fancy. In some contexts, utilizing "utilize" might have a more appropriate effect on the text than using "use". In technical...Sure, but there's nothing automatically wrong with wanting to sound fancy. In some contexts, utilizing "utilize" might have a more appropriate effect on the text than using "use".
In technical documentation, for example, "utilize" might be used to describe something the software makes use of, while "use" might be used to describe something the user makes use of.
"The software utilizes this function...".
"The user uses this button...".
I like that we can have multiple words that mostly mean the same thing and can mostly be used interchangeably for different effects, or to give reference to different things.
-
Comment on Financial collapse? in ~finance
hungariantoast Depends on what you hunt, where you live, and who you know. I don't know about other states, but Texas at least has few restrictions on who can hunt exotics, or how many they can bag. There are...Depends on what you hunt, where you live, and who you know. I don't know about other states, but Texas at least has few restrictions on who can hunt exotics, or how many they can bag. There are parts of Texas that are practically overrun with exotics, and it's quite possible to hunt your way to a year's supply of meat for little more than the price of bullets and a hunting license.
The most difficult part is just finding a place you can hunt for free.
-
Comment on Glide is a keyboard-focused Firefox fork that is infinitely extensible with TypeScript in ~comp
hungariantoast So yesterday I finally got Glide installed successfully on NixOS using a few fancy tricks. In my flake.nix I added this input: nixpkgs-glide.url = "github:nixos/nixpkgs?ref=pull/447604/merge";...So yesterday I finally got Glide installed successfully on NixOS using a few fancy tricks. In my
flake.nix
I added this input:nixpkgs-glide.url = "github:nixos/nixpkgs?ref=pull/447604/merge";
That takes nixpkgs, patches it with the open pull request to add Glide as a package to nixpkgs, and assigns the new, patched version of nixpkgs as a unique input (named
nixpkgs-glide
).Then, using an overlay in
configuration.nix
, I can bring theglide-browser
package from thenixpkgs-glide
input into the actual/realnixpkgs
input:nixpkgs.overlays = [ (self: super: (let nixpkgs-glide = import inputs.nixpkgs-glide { inherit (self) system; }; in { glide-browser = nixpkgs-glide.glide-browser; })) ];
Finally, I can just add
glide-browser
to my system packages list inconfiguration.nix
and Glide will build and install the next time I rebuild my system.Unfortunately, building Glide requires building Firefox. That takes over thirty minutes on my system (Ryzen 5800X). However, the maintainer of Glide did say he's going to write a flake for it, so there might be cached builds available in the future.
-
Comment on What's a product or service that you use but don't want to pay for and why? in ~life
hungariantoast Roads. Being in Harris County, I'm not super jazzed about paying taxes to fund the endless highway expansions and "asphaltization" of the area. I'd rather they use that money to build a half...Roads. Being in Harris County, I'm not super jazzed about paying taxes to fund the endless highway expansions and "asphaltization" of the area. I'd rather they use that money to build a half decent city with half decent public transit. I'm not just talking about Houston itself, but the entire county. In a civilized country, I'd be able to take a train from Mont Belvieu to Katy (and then promptly evacuate).
RSS reader. This is a service I could self-host, I just... haven't yet. Instead, I've paid for Inoreader and then BazQux for the past few years because "I'll get around to it one day".
I actually miss the semi-social popularity scoring of Inoreader. It would show, for each feed item, how many other people read that feed item. The read count would also be colored gray, yellow, or red, depending on how popular that feed item was relative to other items from the same feed. It was a useful way of identifying popular items in each feed, such as actually important news stories or great blog posts.
I've always thought it would be neat to build a minimally federated RSS reader that replicates that social feature of showing "how many people have read this, how popular is it compared to other items in this feed". Almost like the Pinboard of feed readers, but self-hosted and open-source.
-
Comment on Travel essentials: eight items to pack for your next trip – and what to leave at home in ~travel
hungariantoast Probably referring to: https://tailscale.comwhat you mean by tailnet?
Probably referring to: https://tailscale.com
-
Comment on We’re seniors. It’s not our responsibility to fix the housing supply. in ~society
hungariantoast Archive link: https://archive.ph/JYUuVArchive link: https://archive.ph/JYUuV
-
Glide is a keyboard-focused Firefox fork that is infinitely extensible with TypeScript
23 votes -
Comment on DIY haptic input knob: BLDC motor + round LCD in ~tech
hungariantoast (edited )Link ParentWhile we're at it, there's also this video that showcases a similar DIY project with some home automation features: https://www.youtube.com/watch?v=nZa-Vqu-_fU Ploopy, maker of DIY and open-source...While we're at it, there's also this video that showcases a similar DIY project with some home automation features:
https://www.youtube.com/watch?v=nZa-Vqu-_fU
Ploopy, maker of DIY and open-source hardware trackballs (and mice, and trackpads, and headphones apparently) also started selling a knob at some point. Ploopy currently isn't shipping to the US thanks to tarrifs, but it's still open hardware that you could make yourself if you wanted to:
https://github.com/ploopyco/knob
https://ploopy.co/shop/knob/I think these DIY knob thingies are really neat. I like the idea of having a knob with software defined physical properties, and I like the idea of being able to use something like that to control the environment around me.
-
Comment on DIY haptic input knob: BLDC motor + round LCD in ~tech
hungariantoast Scott (the guy who made this video) posted a comment two years ago that Sparkfun has a bunch of these motors. They are still in stock:...Scott (the guy who made this video) posted a comment two years ago that Sparkfun has a bunch of these motors. They are still in stock:
https://www.sparkfun.com/three-phase-brushless-gimbal-stabilizer-motor.html
cc @fional in case you're interested
-
Comment on Deimos Loading Screens mod for Fallout: New Vegas in ~games
hungariantoast Bunch of neat artwork that's worth sharingBunch of neat artwork that's worth sharing
-
Deimos Loading Screens mod for Fallout: New Vegas
32 votes -
Libghostty is coming
14 votes -
In Neovim, C-a and C-x will increment/decrement a number under the cursor in Normal mode
Also works in Vim. Thought this was neat. Wanted to share. Thanks @spicyq. It turns out Emacs does have this feature built-in (via Org-mode) with the commands org-increase-number-at-point and...
Also works in Vim.
Thought this was neat. Wanted to share.
Thanks @spicyq. It turns out Emacs does have this feature built-in (via Org-mode) with the commands
org-increase-number-at-point
andorg-decrease-number-at-point
.The commands:
- Work in any mode, not just
org-mode
- Support prefix arguments with
C-u
- Do not have a default keybind
I bound the commands to
C-z <up>
andC-z <down>
, since I had previously unboundsuspend-frame
fromC-z
:(keymap-global-unset "C-z" 'remove) ; suspend-frame
Keep in mind you can repeat your last executed command with
C-x z
(and then just keep pressingz
to repeat the command however many times you want).Of course, now that I've got this far, I'm realizing that typing out either
C-u 10 C-z <up>
orC-z <up> C-x z
+z
* 9 is probably a lot more keystrokes than just changing the number myself. (At least for a single number at a single point in the buffer.)I don't think there is a built-in Emacs feature that does the same thing. You can find several custom Emacs Lisp solutions by searching online though.21 votes - Work in any mode, not just
-
Factorio Space Exploration 0.7 released
27 votes -
Comment on Jimmy Kimmel to return to ABC on Tuesday after show’s controversial suspension in ~tv
hungariantoast "This is extremely dangerous to our democracy" -
Comment on US FBI readies new war on trans people in ~lgbt
hungariantoast Okay but shaggy Wikipedia Ezra Klein or smooth Dan Souza-lookalike New York Times Ezra Klein?Okay but shaggy Wikipedia Ezra Klein or smooth Dan Souza-lookalike New York Times Ezra Klein?
-
Comment on What's a setting that you'd recommend? in ~tech
hungariantoast On Windows there's an open-source program called AltSnap that allows you to move/resize windows with Alt+left/right click. On Linux, this behavior is standard. I don't actually know of any window...On Windows there's an open-source program called AltSnap that allows you to move/resize windows with
Alt+left/right click
.On Linux, this behavior is standard. I don't actually know of any window managers or desktop environments that don't implement it, though the modifier key might differ between them (but is almost certainly Alt, Super, or maybe Control).
If you like Endless Sky then Starsector might also scratch that itch. You can download the game for free from their website (it isn't on Steam) and get a CD key from the end of Sseth's Starsector review video.