

Thanks for the explanation, that does sound useful.
Thanks for the explanation, that does sound useful.
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.
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.
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?
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.
A typo in the first paragraph of the article in a wiki wont make the 5th paragraph tear down the entire wiki.
I had an old arch install about 7 years ago that stopped booting, so I booted into ubuntu, mounted the ssd, used a chroot to fix it, forgot to unmount the ssd, proceeded to rm the mount dir as it was “temporary”. It took me mere seconds to realize what I did and by then it was a lost cause. I was able to use a file recovery tool to grab my precious memes, but thankfully there wasn’t much else valuable on the drive.
Worlds most roundabout rm -rf /
I remember this too, part of the name was like “tik terry tembo”
I bought a super cheap classic and did a flash mod, battery upgrade, and bluetooth mod.
The bt mod only came after I went back to wired headphones and experienced the rage of having earbuds ripped out when the wire hooks onto things. I was a bt earbud hater for a bit but the freedom is somethin else.
It does suck a lot to load music onto it, I’ve tried foobar2000 and a linux option. the former is better but windows, if you switch around you need to re-sync the entire ipod, which over slow USB2 is a many hour endeavor.
The simplicity of not being distracted by a notification when you go to change a song is undefeated.
ps -aux | grep yourmom
real fwds from FOSS grandma hours, huh.
I bought a kasa power strip for individual switching thinking TPlink kept around the no account local API.
They fuckin trashed it and I need an account to use a goddamn power strip. I’m going to have to rip this apart and see if I can reprogram it or something.
Oh don’t worry, their kids will take their place.
I’m undeniably pro-gulag so thanks for letting me know this source is for me!
Yes, vim is a command line program.
If you look up “Cli file manager”, there’s a bunch that you can check out and try.
Tree, grep, and find are usually my three go-tos. Tree to get a general view of a ton of nested files/folders, then if I know a name I’ll use find . -name "filename"
, if I know a bit of contents, i’ll use `grep -re “content string” to find files containing that.
I recommend reading the man pages because you can often chain together these in fairly powerful ways.
Damn had to call both my senators. I always hate calling because I have no doubt that it wont do anything.
I watched a lot of youtube before I dove in. There’s a LOT more content on watch repair now after covid so it should be easy. Pay specific attention to how the seasoned watchmakers use their tools. You should never have to force anything in a watch. Go as slow as possible and really savor each movement.
If you don’t have a camera with good macro abilities, grab some of those cheap clip on macro lenses for your phone.
Take a pictures at every step until you don’t need them anymore. I specifically was interested in 2-3 movements but you start to see the commonality between them if you’re just working on a simple hour/minute/second/calendar watch without extra complications.
I really suggest buying one of those little plastic trays with a clear dome on top that have dividers. With that, I divide the parts and screws by the aspect of the movement. ie I’ll use one compartment for the automatic winder components, a compartment for the stem and winding mechanism, one for the main drive, and another for the date complication. I repair a lot of misc things so I have a decent memory for where parts/screws go. If you dont, take pictures of the screw next to the hole you took it from so you can compare scale. Screws inside watches are usually at most 2-3 sizes, if not all the same but its good practice to ensure you put the right screw in the right hole.
Also check out the forum watchrepairtalk. Its an international group of old men who love to help out. It has a completely different atmosphere to watchuseek and is an endless fountain of knowledge.
God the sovteks. I also like soviet watches and two of my interests are directly fucked from the war.
I mostly play acoustic stuff now, I have an alright manouche style guitar that I play more than most of my guitars now.
I struggle with frontend too, it was a super basic jinja templates with html and a plotly js applet that I just fed data to. Its ugly but functional.
I Started to re-write the server in Go, I have like 90% feature parity with postgres instead of mongo, but I need to figure out vue when I have a chance to make something a little nicer. I have an old obsolete ipad with a bunch of touch deadzones I’d like to load up in kiosk mode for a nicer data display.
I really liked the ESP32 ecosystem. I figured out the ESP-idf and really liked the build system and freeRTOS. The examples given are really exhaustive and super useful. I basically did format strings into static HTML headers to send the data to the server since it only has like 3-4 readings.
Interfacing with any common hobbyist sensor is mostly a matter of finding a basic C driver and adapting it for the ESP build system.
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.