TheQuinbox

@TheQuinbox@dragonscave.space

Cybersecurity student by day, programmer nerd who yells at computers to do things by night. Lover of cats, books, tea, synthesizers, and programming. I'm always either hacking on something, reading, or petting a cat. Come say hi!

This profile is from a federated server and may be incomplete. Browse more on the original instance.

TheQuinbox, to random

The M3 MacBook Air is the BEST MAC for EVERYBODY! Watch Video"
Unless you're blind, yeah.

TheQuinbox, to random

Computer rebooted to install a Windows update a couple days ago without asking me. In the process, it seemingly just reset some of my settings. My turn off computer combo box was set to never for both, but after the update ,my box was sleeping super shortly after I'd leave it. Go and check, and sure enough, the values are set to 10 and 30 minutes. Oh, Microsoft, how you have so not changed. I remember a windows 10 update back in 2017 nuking some values out of my registry. Nice to see that a bug that involves erasing user configurations hasn't been solved in 7 years, but at least we have a hallucinating AI model accessible with a single key, right?

TheQuinbox, to random

Sighted friend helped me set up a switch down stairs and start taking advantage of the CAT5 ports on my wall to hook up ethernet to my Apple TV and main devbox, and holy actual shit, this is what I've been missing for over a decade? I have never, until now, used a computer over ethernet for any extended period of time, and holy shit. A consistent, reliable 8 MBPS down, 4 MBPS up? I'll take it. A cap of 100 megabits is mildly annoying, but it's stable. I'll take stability.

TheQuinbox, to random

A few years ago, I wrote a program in Go that would get the RSS feed out of an Apple Podcasts link. I've been using it the past couple years, but I didn't like dragging around this 4.1 MB executable that's not stored anywhere convenient and I was bored, so ended up rewriting it this morning. Usage is pretty simple. Run it, paste in URL, get shown RSS feed link. https://quinbox.xyz/files/Podfeed.exe

TheQuinbox, to random

Interesting observation: almost all of the blind hackers in my friend circle are bookworms, me included. I mean, some of us like audio over epub or vice versa, same with genres, but we're all bookworms. Wonder why?

TheQuinbox, to random

Some program interfaces just don't need changed. #Justsaying

TheQuinbox, to random

Today I learned: if your WSL is ever having a problem reading/writing your Windows-mounted drives, wslhost.exe probably died. Run wsl --shutdown and then bring it back, all should work after that.

TheQuinbox, to random

My laptop's sound driver, among many others, has this absolutely infuriating behavior where it puts the sound card to sleep after a particular amount of silence (mine's seemingly after 5 seconds), causing a screen reader user to miss the beginning of speech, an audio file, a notification, or anything else they may be trying to listen to. To solve this, I wrote this little program. Simply run it, and it'll start piping silent audio through your default sound card, which has fixed it on every machine I've tried. It should also respect device changes (e.g. unplugging headphones). To close it, simply click on the tray icon. It doesn't get much simpler than that. https://quinbox.xyz/files/SleepSoundly.zip

TheQuinbox, to random

Computers are cool. I can download a random installer of a program I'm curious about, grep it for "SetupVersionData" to determine if it's InnoSetup, extract it with innounp, and boom, you have a portable version you can browse around. As long as you know what to look for, there's almost nothing that's impossible.

TheQuinbox, to random

My dad's out of town at the moment on a business trip, and he sent me a checklist of things I need to do to help my mom with after her surgery. He sent it as an Apple Notes link. SO to access it from my Pixel, I had to:

  1. Click the link and try to sign into my Apple ID.
  2. Get a verification code, except I have no Apple devices around at the second and the text option had to be clicked like 5 times before it worked.
  3. Verify I have... access to be invited to the note, whatever that means. SO they had to text me a link, and I had to click it.
  4. After clicking it, I had to, you fucking guessed it, sign in again, including the same problem with sending a code, even though I hit trust this browser the first time.
  5. Dismiss the 15 modals that popped up across the two tabs, and try to access the note. It doesn't work.
  6. Close the entire browser and click the link again.
  7. Finally scroll down to the notes contents, and realize that Apple really doesn't care about you, because all you can read is the first line!
    Seriously, fuck, you! It feels like this entire world is now just broken, inaccessible garbage everywhere you look.
TheQuinbox, to random

selling some stuff, DM for details if you want a particular product:
An echo dot third generation ($20.00).
Google Nest Hub First generation ($50.00).
An iPad Mini 1 ($100.00).
A Samsun Meteor USB microphone ($30).
Prices aren't set, if you're being reasonable we can talk. More to come soon.

TheQuinbox, to random

Just saw this YouTube video title: "Best OS for programming? Mac vs Windows vs Linux debate settled".
Oh, to be a sighted person and to be able to choose an OS from a silly programming YouTuber talking about it as opposed to having to compare and contrast screen readers, "oh orca is garbage, oh Mac VO is garbage too, okay, guess it's Windows. Oh, but Windows has ads in the start menu! But, at least my screen reader works..."

TheQuinbox, to random

Just got home from my last ever high school class. FREE AT LAST!!!

TheQuinbox, to random

It just now hit me that tomorrow is my last actual day of high school. I've got some other things I need to do, namely on Friday and Tuesday, but what... what the fuck?

TheQuinbox, to random

In case you ever wondered what I do in my downtime, I just found the IP address for my cable modem's dashboard, and spent 30 minutes going through, reading all the addresses, and tweaking things like the front-panel lights or energy-efficient Ethernet. Now, back to drinking this coffee I completely forgot about while messing with this.

TheQuinbox, to random

The best friendships are when you can say the phrase "Well I mean..." and the other person just completely and totally understands what you mean immediately.

TheQuinbox, to random

release\lib\timeplug.dll : fatal error LNK1120: 91 unresolved externals

TheQuinbox, to random

Wow, this sleep schedule is absolutely *amaaaaazing. Laid down at 7:30, fell asleep close to 9:00, just now woke up, at 3:00. Why do I always manage to do this to myself in finals week? Hey, at least it's my last finals week in K12 though!

TheQuinbox, to random

Best thing to find on your floor randomly: a SATA cable you don't even remotely recognize. I have a lot of questions.

TheQuinbox, to random

It just occurred to me that come June 22, I'll have had a phone for 10 years. Getting my 4S was truly my entrance into online communities, and so I'm very close to having been on the internet for 10 years. I definitely, definitely had access too young. In June of 2014, I was 8. That's just a tiny bit insane.

TheQuinbox, to random

Wanted a command I could type super quickly to get my OS version on Linux, and came up with this after about 5 minutes. I just have
function osver() {
cat /etc/os-release | grep PRETTY_NAME= | cut -d'=' -f2- | tr -d '"'
}
in my .bash_profile and it all works.

TheQuinbox, to random

Today I learned, |& pipes both stdout and stderr of a process in Linux. I always would go 2>&1|, which works, but this is so much nicer!

TheQuinbox, to random

Hyperfocusing is all fun and games until you end up hyperfocusing on stuff for like 3 hours and your plan to get food at like 9:00 or 10:00 AM turns into a get food at 1:00 PM plan and then you get nauseous when you try to eat. No, this definitely didn't just happen to me, why do you ask?

TheQuinbox, to random

@jcsteh I've made a bit of headway on some of the random crashes and freezes I've been talking about with NVDA. Most recently my alt tab was bugging out majorly, so I alt tabbed and closed my WSL window. Once I did that, I started getting absolutely bombarded with NVDA error noises, and it completely froze up and was hardly reading anything, exactly like I had seen before. However, it was playing error sounds this time (because I turned them on), and this was in the log. The only way to get out of it was to restart NVDA with the desktop icon. Exception in IUIAutomationEventHandler.HandleAutomationEvent implementation:
Traceback (most recent call last):
File "comtypes_comobject.pyc", line 154, in call_without_this
File "UIAHandler_init_.pyc", line 569, in IUIAutomationEventHandler_HandleAutomationEvent
File "comtypes_init_.pyc", line 278, in getattr
File "monkeyPatches\comtypesMonkeyPatches.pyc", line 32, in call
_ctypes.COMError: (-2147220991, 'An event was unable to invoke any of the subscribers', (None, None, None, 0, None))
Not sure if there's any other useful debug info I can give here but I'm saving this log.

TheQuinbox, to random

Bottom front fan went out on my main desktop today. I was alerted of this fact quite abruptly when I started it up and was greeted with an incredibly loud grinding noise that literally shook my fairly large case. Unplugged the bottom fan and it all works again, but damn. Never had a fan give out on me like that before. Think it may be time to upgrade them. My case does support I believe 140 MM fans, at the very least it supports 120 MM ones, and I'm eyeing some that are supposed to be super, super quiet.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • JUstTest
  • InstantRegret
  • mdbf
  • ethstaker
  • magazineikmin
  • cubers
  • rosin
  • thenastyranch
  • Youngstown
  • osvaldo12
  • slotface
  • khanakhh
  • kavyap
  • DreamBathrooms
  • provamag3
  • Durango
  • everett
  • tacticalgear
  • modclub
  • anitta
  • cisconetworking
  • tester
  • ngwrru68w68
  • GTA5RPClips
  • normalnudes
  • megavids
  • Leos
  • lostlight
  • All magazines