a_fancy_kiwi

joined 1 year ago
[–] [email protected] 6 points 1 month ago* (last edited 1 month ago) (1 children)

I’ve been trying actual page numbers since those are what matched up at first

Edit: I haven’t extensively gone through it all yet. Are they mixed between page numbers and pdf page numbers?

[–] [email protected] 16 points 1 month ago* (last edited 1 month ago) (5 children)

I’ve been skimming through the listed page numbers so maybe I missed it but where in pg 545-581 does it talk about “[ending] marriage equality”? That whole section seems to be talking about the FBI and DOJ

[–] [email protected] 6 points 2 months ago* (last edited 2 months ago) (1 children)

Does Cromite have support for auto-filling from 3rd party password managers? When I last used Bromite, it couldn't so I never ended up using it as my main browser

[–] [email protected] 1 points 3 months ago

I disagree. The 20-30% interest a lot of credit cards have is enough of a reason to pay on time.

[–] [email protected] 6 points 3 months ago

I've seen some youtubers recommend OnShape. It's a browser based CAD app so it should work fine.

[–] [email protected] 3 points 3 months ago* (last edited 3 months ago)

I know you didn't ask but just in case you (or anyone reading this) don't know about it; Good Lock from the Samsung store. Once downloaded, you can create a routine in the settings app to reconfigure the bixby/power button to do whatever you want

[–] [email protected] 13 points 3 months ago

I'm glad my bitterness can bring joy

[–] [email protected] 123 points 3 months ago* (last edited 3 months ago) (7 children)

This just in, Google will he deprecating their phone app fart button in 18 months for the new and improved Android Poots button.

Wait, we're just now getting word that in 7 more months, Android Poots will be replaced with Google Toots. All 3 buttons will be active at the same time while Google works on feature parity.

You'll never believe this, insiders are telling us that 4 months after Google Toots, Google will be introducing Google Farts to replace Google Toots. Google Farts will be different than the original Fart button, not sure how but we are expecting it'll be a worse experience.

And finally, 6 months later, after hundreds of millions of dollars spent, somehow none on marketing, and after generating a healthy user base that defied all odds, Google will begin to shutdown all 4 buttons and lay off all the teams that worked on them.

[–] [email protected] 15 points 3 months ago* (last edited 3 months ago) (7 children)

I always forget. Can we do a release upgrade to this or do we have to wait until 24.04.1?

Edit: Nvm. You can update today

sudo do-release-upgrade

[–] [email protected] 35 points 6 months ago* (last edited 6 months ago) (2 children)

They should have cast Randall Park as Mr. Fantastic. Lean real hard into the multiverse

 

I've been interested in building a DIY NAS out of an SBC for a while now. Not as my main NAS but as a backup I can store offsite at a friend or relative's house. I know any old x86 box will probably do better, this project is just for the fun of it.

The Orange Pi 5 looks pretty decent with its RK3588 chip and M.2 PCIe 3.0 x4 connector. I've seen some adapters that can turn that M.2 slot into a few SATA ports or even a full x16 slot which might let me use an HBA.

Anyway, my question is, assuming the CPU isn't a bottle neck, how do I figure out what kind of throughput this setup could theoretically give me?

After a few google searches:

  • PCIe Gen 3 x4 should give me 4 GB/s throughput
  • that M.2 to SATA adapter claims 6 ~~GB/s~~ Gb/s throughput
  • a single 7200rpm hard drive should give about 80-160MB/s throughput

My guess is that ultimately, I'm limited by that 4GB/s throughput on the PCIe Gen 3 x4 slot but since I'm using hard drives, I'd never get close to saturating that bandwidth. Even if I was using 4 hard drives in a RAID 0 config (which I wouldn't do), I still wouldn't come close. Am I understanding that correctly; is it really that simple?

 

PSA

After updating to TvOS 17, my Sonos Beam sound bar started making weird crackling sounds and music sounded tinny. Turns out, I had to change the audio format in the Apple TV settings from Stereo to Dolby Digital 5.1 for the issue to be fixed.

Not sure what I had that setting set to before but I’m leaning toward the idea that the update reset the audio format back to default settings. If you are having sound issues after updating, that might be the issue.

 

My garmin has it set up like this:

Z1 = 50-60%
Z2 = 60-70%
Z3 = 70-80%
Z4 = 80-90%
Z5 = 90%+

As of right now, I’m seeing my Z3 improve but improving Z2 is going to take me a while. I can have a conversation in Z3 using the Garmin percentages.

I’ve also seen other forums/websites have different percentages. Ex.

Z1 = 68-73%
Z2 = 73-80%
Z3 = 80-87%
Z4 = 87-93%
Z5 = 93%+

If I used this method, then my Z2 is the one that has been improving this whole time. This one ‘feels’ right to me when I’m running but I’ve only been running for a few months at this point (was running last year but got sick a few times and had to basically start all over) so maybe I just need to stick to it and the garmin method will start to make more sense.

So I was just curious how everyone has their percentages set up. What do you all actually train at?

a_fancy_kiwi

 

I'm relatively new to MacOS and I frequently find myself needing to copy a file to my clipboard so that I can paste it somewhere else. Every time I click the share icon, I'm disappointed to see no "copy to clipboard" extension.

This is most frustrating when editing a screenshot or opening up a file in safari.

Anyone have a recommended app for this? I found this one but haven't tried it yet

 

I occasionally find myself reinstalling home assistant and every time I do, I get stuck on two steps because I forgot the commands and didn't write them down from the last time. I'm writing them below mainly for myself but also for anyone else who may get stuck. For future reference, I'm using Ubuntu 23.04 with Virt-Manager.

Before you begin the installation of the provided qcow2 image, you might want to resize that image from 32G to whatever size you want. ex:

qemu-img resize haos_ova-10.3.qcow2 +68G

Next, you might want to make a network bridge device. Navigate to your netplan folder and backup the yaml file that's in there (your file may be named differently)

cd /etc/netplan

cp ./01-network-manager-all.yaml ./01-network-manager-all.yaml.old

Edit the yaml config.

nano ./01-network-manager-all.yaml

Change the renderer to networkd and add the bridge device (br0). Your ethernet device may not be named enp12s0, make sure to use your ethernet device name. If you are on wifi, look up a netplan wifi config and make adjustments as needed.

network:
  renderer: networkd
  ethernets:
    enp12s0:
      dhcp4: true
  version: 2
  bridges:
    br0:
      dhcp4: yes
      interfaces:
        - enp12s0
      parameters:
        stp: true

save the file. generate and apply the new netplan. WARNING - If you are hosting this on your own network, it's possible the Ubuntu host IP could change. If you were doing these steps over SSH, you might need to find the new IP and reconnect. Static IPs can be set in the netplan config but I usually just do it from my router settings afterwards which is probably why the IP changed.

netplan generate

netplan apply

Now just go through the installation process and when you select your network device, make sure you select "Bridge Device" and the device name is "br0"

Edit 12/15/23 - well, I rebuilt my server again. I used regular Ubuntu desktop this time and I for the life of me I couldn’t get networking to function properly. I ended up buying an Ethernet card and passed it through to the VM

view more: next ›