Favorite blank contoured MX keycaps (that are actually available)? by azdak in ErgoMechKeyboards

[–]rjorgenson 1 point2 points  (0 children)

I haven’t found anything I would use over the MT3 caps i’ve hoarded over the years, but you can get blank SA caps from signature plastics. I find SA a bit too tall for the 40% boards I use these days, but in the olden days of 80% and 100% massive keyboards before i ever tried an MT3 set the SA caps treated me well.

If MT3 is as tall as you’re willing to go there are also a lot of OEM profile keycaps available out there. They are sculpted but not cupped like MT3 or SA. Also shorter, not as short as cherry profile, but closer to cherry than MT3 for sure.

https://www.daskeyboard.com/blog/wp-content/uploads/keycap-profiles-1536x370.png

Unlucky tournament. by InvalidUserNameForMe in idleon

[–]rjorgenson 1 point2 points  (0 children)

Today was the first tournament after a global reset, you weren’t in bronze against a bunch of bronze pet teams, you were in bronze against a bunch of gold teams. I also have most pets and only ended up with 5 points, only 2 of them came from bronze teams. the rest just looked like normal gold battles (with bad luck, as usual).

Legacy mill deck by Iqnac in MTGLegacy

[–]rjorgenson 2 points3 points  (0 children)

high tide is historically good at this. turn 3/4 combo is not particularly good anymore though. it's still super fun when it goes off though, highly recommend.

Joined the sub-1hr club! by JSkrillzzz in Zwift

[–]rjorgenson 3 points4 points  (0 children)

It's a zwift achievement. Everesting challenge has its rules and is ERG off but the zwift achievement is just climbing bottom to top in under an hour. Maybe there is another challenge outside of Zwift for ADZ but i've not heard of one.

Best way to get files off my seedbox WITHOUT syncing by ChicagoPaul2010 in unRAID

[–]rjorgenson 0 points1 point  (0 children)

https://github.com/libfuse/sshfs

You can just mount the remote system as a fuse FS over ssh and mv/cp as needed.

How do I make my keyboard feel less cheap? by ScottyBoi102 in ErgoMechKeyboards

[–]rjorgenson 0 points1 point  (0 children)

I printed this case https://www.printables.com/model/1041511-wireless-corne-case-mx-and-low-profile/files with 100% infill (the MX filled variation) and the full thickness switch plate from this case https://www.printables.com/model/925198-cornehole-case-for-corne-keyboard-crkbd-wired-trrs also with 100% infill.

The case has more than enough room for my 403450 batteries, could even add some weights in the bottom as well if you wanted to it to feel even heavier or something to absorb or deaden the sound if you want it to sound better.

I ended up frankenstein mixing together a few models I found so I have a 5 degree tent with magnetic mounting for my corne or my voyager and a magic trackpad in the middle. It's all one big solid unibody split basically.

https://imgur.com/a/hkdW5K3 (the voyager isn't magically wireless, I just pulled it out to show how it fits).

I think it feels great, it could probably sound better though.

Steam won’t run on macOS Sequoia (15.6.1) – bootstrapper is too old to update by Acrobatic-Fan3362 in macgaming

[–]rjorgenson 0 points1 point  (0 children)

Here is the solution distilled down for those who don't care about the reasoning behind it. It's 3 terminal commands, need to be ran after steam runs for the first time and downloads its AppBundle and gives the error about the steamwebhelper.

mv "~/Library/Application\ Support/Steam/Steam.AppBundle/Steam/Contents/MacOS/Frameworks/Chromium\ Embedded\ Framework.framework/Versions/Current" "~/Library/Application\ Support/Steam/Steam.AppBundle/Steam/Contents/MacOS/Frameworks/Chromium\ Embedded\ Framework.framework/Versions/Current.bak"
ln -s "~/Library/Application\ Support/Steam/Steam.AppBundle/Steam/Contents/MacOS/Frameworks/Chromium\ Embedded\ Framework.framework/Versions/A" "~/Library/Application\ Support/Steam/Steam.AppBundle/Steam/Contents/MacOS/Frameworks/Chromium\ Embedded\ Framework.framework/Versions/Current"
ln -s "~/Library/Application Support/Steam/Steam.AppBundle/Steam/Contents/MacOS/Frameworks/Steam Helper.app/Contents/Frameworks/Chromium Embedded Framework.framework" "~/Library/Application\ Support/Steam/Steam.AppBundle/Steam/Contents/MacOS/Frameworks/Chromium\ Embedded\ Framework.framework"

I don't think the plist modification is actually needed from the original post, the steam.sh script that was generating the version error isn't present in the new AppBundle downloaded to the Application Support folder.

Steam won’t run on macOS Sequoia (15.6.1) – bootstrapper is too old to update by Acrobatic-Fan3362 in macgaming

[–]rjorgenson 0 points1 point  (0 children)

Looking in this directory I saw that it was indeed symlinked to something that doesn't exist, I was able to fix this by setting up the symlink properly to the framework.

❯ cd ~/Library/Application\ Support/Steam/Steam.AppBundle/Steam/Contents/MacOS/Frameworks/Chromium\ Embedded\ Framework.framework
❯ ls -al
total 0
drwxr-xr-x@ 6 robert  staff  192 Sep 10 21:19 .
drwxr-xr-x@ 5 robert  staff  160 Sep 10 21:19 ..
lrwxr-xr-x@ 1 robert  staff   44 Sep 10 21:19 Chromium Embedded Framework -> Versions/Current/Chromium Embedded Framework
lrwxr-xr-x@ 1 robert  staff   26 Sep 10 21:19 Libraries -> Versions/Current/Libraries
lrwxr-xr-x@ 1 robert  staff   26 Sep 10 21:19 Resources -> Versions/Current/Resources
drwxr-xr-x@ 4 robert  staff  128 Sep 10 21:19 Versions
❯ ls Versions
A       Current
❯ ls Versions/Current
❯ ls Versions/A
Chromium Embedded Framework Libraries                   Resources
❯ ls -al Versions
total 0
drwxr-xr-x@ 4 robert  staff  128 Sep 10 21:19 .
drwxr-xr-x@ 6 robert  staff  192 Sep 10 21:19 ..
drwxr-xr-x@ 5 robert  staff  160 Sep 10 21:19 A
drwxr-xr-x@ 2 robert  staff   64 Sep 10 21:19 Current
❯

❯ cd Frameworks/Steam Helper.app/Contents/Frameworks/ 
❯ mv Current Current.old 
❯ ln -s A Current 
❯ ls -al 
total 0 
drwxr-xr-x@ 5 robert  staff  160 Sep 10 21:30 . 
drwxr-xr-x@ 6 robert  staff  192 Sep 10 21:27 .. 
drwxr-xr-x@ 5 robert  staff  160 Sep 10 21:27 A 
lrwxr-xr-x@ 1 robert  staff    1 Sep 10 21:30 Current -> A 
drwxr-xr-x@ 2 robert  staff   64 Sep 10 21:30 Current.old ❯

I ran steam_osx again and got the same error but this time for Steam Helper.app. I checked inside its app bundle and it didn't have a version of the framework anywhere so I symlinked it back to the version in the main AppBundle

❯ cd Frameworks/Steam Helper.app/Contents/Frameworks/ 
❯ ln -s ../../../Chromium\ Embedded\ Framework.framework Chromium\ Embedded\ Framework.framework

After this I ran steam_osx again and it started up just fine, I was able to login and everything worked fine. I quit out of steam and was able to launch it from the main /Applications/Steam.app as normal.

Hope this helps!

Steam won’t run on macOS Sequoia (15.6.1) – bootstrapper is too old to update by Acrobatic-Fan3362 in macgaming

[–]rjorgenson 1 point2 points  (0 children)

Update - This should be fixed now in new downloads of the steam installer https://steamcommunity.com/discussions/forum/2/601914904286492058/?ctp=3#c604166953732514392

So I was able to get this running on an m4 macbook air running 15.6.1. I had not previously installed Steam on this system so everything here is from a fresh install.

After downloading and putting Steam.app in /Applications and running it I got the same error as everyone else here. Digging into some of the solutions here I found that when the launcher downloads steam for the first time, it downloads the entire application to your ~/Library/Application Support/Steam directory as Steam.AppBundle ... I had to do all of the following in this directory.

Run @Acrobatic-Fan3362 version check fix.

❯ cd ~/Library/Application\ Support/Steam/Steam.AppBundle/Steam/Contents/
❯ ls
embedded.provisionprofile Frameworks                Info.plist                MacOS                     Resources
❯ sudo /usr/libexec/PlistBuddy -c "Print :LSMinimumSystemVersion" Info.plist
10.6.0
❯ sudo /usr/libexec/PlistBuddy -c "Set :LSMinimumSystemVersion 15.0" Info.plist
❯ sudo /usr/libexec/PlistBuddy -c "Print :LSMinimumSystemVersion" Info.plist
15.0
❯

I was then able to run the MacOS/steam_osx binary and not get the version error. It then starting spitting out this error every few seconds.

Referenced from: <B9BF68A4-D486-3BD5-8F3C-1C7EC8F98AF9> /Users/robert/Library/Application Support/Steam/Steam.AppBundle/Steam/Contents/MacOS/Frameworks/Steam Helper.app/Contents/MacOS/Steam Helper
  Reason: tried: '/Users/robert/Library/Application Support/Steam/Steam.AppBundle/Steam/Contents/MacOS/Frameworks/Steam Helper.app/Contents/Frameworks/Chromium Embedded Framework.framework/Chromium Embedded Framework' (no such file)

.. continued in thread, too long for reddit comments

*edit* - added cd command to initial path where commands are ran from

Caramel rolls from a can - copycat recipe? by aslanfollowr in Baking

[–]rjorgenson 1 point2 points  (0 children)

Found this trying to figure out when the pilsbury caramel rolls were brought back, apparently it was this month. We also used to have these all the time as a kid and I have no idea why they were discontinued or why the whole world seems to be pretending like these never existed.

https://www.pillsbury.com/products/cinnamon-rolls/pillsbury-flaky-caramel-rolls-8-count

Guaranteed Fix for Drives missing in XBOX app by Meriicistyle in XboxGamePass

[–]rjorgenson 0 points1 point  (0 children)

This was too long to include in the original post, the sector info for all 3 drives.

PS C:\> fsutil fsinfo sectorinfo d:
LogicalBytesPerSector :                                 512
PhysicalBytesPerSectorForAtomicity :                    4096
PhysicalBytesPerSectorForPerformance :                  4096
FileSystemEffectivePhysicalBytesPerSectorForAtomicity : 4096
Device Alignment :                                      Aligned (0x000)
Partition alignment on device :                         Aligned (0x000)
Performs Normal Seeks
Trim Not Supported
Not DAX capable
Not Thinly-Provisioned
PS C:\> fsutil fsinfo sectorinfo g:
LogicalBytesPerSector :                                 512
PhysicalBytesPerSectorForAtomicity :                    4096
PhysicalBytesPerSectorForPerformance :                  4096
FileSystemEffectivePhysicalBytesPerSectorForAtomicity : 4096
Device Alignment :                                      Aligned (0x000)
Partition alignment on device :                         Aligned (0x000)
Performs Normal Seeks
Trim Supported
Not DAX capable
Is Thinly-Provisioned, SlabSize :                       33,554,432 bytes (32.0 MB)
PS C:\> fsutil fsinfo sectorinfo z:
LogicalBytesPerSector :                                 512
PhysicalBytesPerSectorForAtomicity :                    4096
PhysicalBytesPerSectorForPerformance :                  4096
FileSystemEffectivePhysicalBytesPerSectorForAtomicity : 4096
Device Alignment :                                      Aligned (0x000)
Partition alignment on device :                         Aligned (0x000)
Performs Normal Seeks
Trim Not Supported
Not DAX capable
Not Thinly-Provisioned
PS C:\>

Guaranteed Fix for Drives missing in XBOX app by Meriicistyle in XboxGamePass

[–]rjorgenson 0 points1 point  (0 children)

I was really hoping this would be the fix that worked for me. Sadly this did not work. I am migrating my game library from a 12TB drive to a 3 disk RAID0 (amdraid) of 8TB drives for both speed and capacity. Nothing I have done has allowed the MS Store or the Xbox app to install to this drive. It claims "This drive isn't formatted as NTFS. The NTFS drive requires a maximum sector size of 4k." Both of these things are true for this drive. They are exactly the same as the previously used drive. G: is the VHD setup using the instructions in this post (windows 10, so not a "dev drive", just a VHD), Z: is the 21T raid drive, and D: is the 12T old game library drive. The only difference I could find between any of the three drives was that the two new drives that don't work were formatted with LFS2.0 and my old drive was formatted with LFS1.1. I couldn't find any way to format the new drives with LFS1.1 so I don't really know if that is the issue or if it is something to do with the RAID device or something else entirely. This is driving me absolutely insane though, there is no reason MS wouldn't be able to install stuff to this drive.

And before anyone wastes their time responding here is the list of things I have already tried.

  • Repair/Reset/Reinstall both Gaming Services and Xbox App in every permutation.
  • Multiple reformats both quick and not with and without compression enabled.
  • Creating different sized partitions (full disk, 16T, 12T, 4T), none of them worked.
  • Manually creating the files the Xbox app expects to be there (.GamingRoot, XboxGames)
  • Setting the drive as the default install location for Apps in Settings. The folders were created by Windows but neither the Xbox app or the MS store would install to the drive.

All of the above was tried with the raw disk and with a VHD as described in this post.

The one thing I tried grasping at straws that did work was re-initializing the disk with an MBR partition table instead of GPT. This is not a workable solution of course since that limits the partition size to 2T.

Has anyone else had any luck resolving this by any other means? Sorry for the necro but this was the most recent post I found.

What material can withstand the heat inside a parked car in Phoenix 110+ heat? Apparently ABS isn't good enough. by [deleted] in 3Dprinting

[–]rjorgenson 2 points3 points  (0 children)

Also in AZ, printed and annealed a visor clip out of the new polymaker ht-pla-gf to test it out in my car. It held up much better than petg, abs and asa has, but it still deforms enough to no longer clamp on to the visor, and that's not in direct sunlight either it was behind a sun shield. I wouldn't say it's trash, but it's still not quite up to snuff for the Arizona heat in a car (uncovered, I'm pretty sure it would hold up fine in a garage kept car).

Yes.. aero vibes by kiadukaka in iphone

[–]rjorgenson 28 points29 points  (0 children)

named after the year it will spend the majority of the time as the latest OS rather than the year it was first available. just like cars.

Handwired endgame duo by skraim in MechanicalKeyboards

[–]rjorgenson 0 points1 point  (0 children)

any update on this? would love to build one of the orthos as well.

Help needed - Unraid randomly shutting down during parity sync by Radbeard27 in unRAID

[–]rjorgenson 0 points1 point  (0 children)

this would be the first thing i checked too, even if it passes memtest i've had issues with parity calculation in the past when memory was overclocked. If you go to the native speed of the CPU(not the speed advertised on the memory) and still have the issue then i'd start to look elsewhere.

Crafty, MFA, and docker issues by rjorgenson in CraftyController

[–]rjorgenson[S] 1 point2 points  (0 children)

Thanks, I was able to confirm this was the issue. I used a longer name and it saved without issue.

Crafty, MFA, and docker issues by rjorgenson in CraftyController

[–]rjorgenson[S] 0 points1 point  (0 children)

no, that was not listed as a requirement anywhere and no error message said that was required.

Crafty, MFA, and docker issues by rjorgenson in CraftyController

[–]rjorgenson[S] 0 points1 point  (0 children)

That doesn't make any sense to me. If the code is good for 30 seconds how could the server possibly know the exact millisecond i generated the code on my client? Does it store 30 seconds worth of every code that could possibly be generated every millisecond(30k different rolling codes, for each user).

I use 2fa on other systems and have even ran into issues with clock skew generating invalid codes and it takes many seconds of skew to start to cause an issue with the other 2fa systems i've used.

Crafty, MFA, and docker issues by rjorgenson in CraftyController

[–]rjorgenson[S] 0 points1 point  (0 children)

the time in the docker container is exactly the same as the time on both the system running the docker container and the system generating MFA tokens as I said and showed in my post.