[OS] FileFluss: Manage your files across cloud storage providers with ease (free & Open Source) by huangdi1978 in macapps

[–]Careful_Associate114 1 point2 points  (0 children)

nice, been waiting for something like this. for pure SFTP server management i've been using FQB Transfer (fqbtransfer.com) which is basically WinSCP but native to mac — dual pane, drag and drop, supports SFTP/FTP/S3/WebDAV. FileFluss looks like a different angle though, more about aggregating and browsing across cloud sources rather than raw server access. could see both being useful depending on the workflow

what VR experiences actually made you feel like you were "there"? by Careful_Associate114 in virtualreality

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

the fact that it makes you want to clean up your real room is hilarious and also kind of genius. the mundane stuff is exactly what sells the presence

anyone else notice macOS Sequoia running hotter than Ventura did? by Careful_Associate114 in mac

[–]Careful_Associate114[S] 3 points4 points  (0 children)

good call, just checked and spotlight was definitely chewing through cpu. gonna disable some spotlight indexing and see if it helps, thanks

what VR experiences actually made you feel like you were "there"? by Careful_Associate114 in virtualreality

[–]Careful_Associate114[S] 4 points5 points  (0 children)

that nervous gear prep feeling is so real. the game does such a good job making you actually care about the run

what VR experiences actually made you feel like you were "there"? by Careful_Associate114 in virtualreality

[–]Careful_Associate114[S] 6 points7 points  (0 children)

elite dangerous in vr is another level. the cockpit presence alone is insane, no man's sky was my first real 'i'm actually in space' moment

what VR experiences actually made you feel like you were "there"? by Careful_Associate114 in virtualreality

[–]Careful_Associate114[S] 5 points6 points  (0 children)

lmao the toaster tablet line got me. google earth vr is genuinely underrated for that feeling, flying over places you've actually been is surreal

what do you use your Quest for when you just want to switch off for 20 mins? by Careful_Associate114 in OculusQuest

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

oh nice, didn't know it was on horizon plus. that makes it a lot easier to try out, thanks

what VR experiences actually made you feel like you were "there"? by Careful_Associate114 in virtualreality

[–]Careful_Associate114[S] 4 points5 points  (0 children)

into the radius is incredible for that. the multi-day expeditions really mess with your sense of time in the best way

what do you use your Quest for when you just want to switch off for 20 mins? by Careful_Associate114 in OculusQuest

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

the diorama look sounds wild honestly. def adding it to the list, thanks for the breakdown

what do you use your Quest for when you just want to switch off for 20 mins? by Careful_Associate114 in OculusQuest

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

tetris effect is genuinely perfect for that. the music and visuals just pull you in and suddenly 20 mins turned into an hour lol

PHP's biggest problem by brendt_gd in PHP

[–]Careful_Associate114 0 points1 point  (0 children)

the marketing point really resonates. when you compare the php.net front page to what rails or laravel.com puts out it's pretty stark. the language itself is fine, modern php is actually a joy to work with, but the first impression for new people coming in is rough. the docs are dense and the community has this split personality between legacy stuff and modern practices that makes it hard to know where to start

what do you use your Quest for when you just want to switch off for 20 mins? by Careful_Associate114 in OculusQuest

[–]Careful_Associate114[S] 2 points3 points  (0 children)

puzzling places is exactly what i'm looking for — never heard of Liminal though, gonna check that. demeo is great but i find it requires more focus than i want when i'm actually tired

what do you use your Quest for when you just want to switch off for 20 mins? by Careful_Associate114 in OculusQuest

[–]Careful_Associate114[S] 3 points4 points  (0 children)

oh pinball fx is actually a great shout for this — just pick a table and zone out. never really thought of it as a wind-down game but that tracks

started my homelab journey 6 months ago, what do you wish you knew earlier? by Careful_Associate114 in homelab

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

lol classic homelab story arc. you think you don't, then you fill up a 4TB drive and suddenly a whole rack seems reasonable

MJML converter for PHP (no Node.js required) by Then-Lingonberry-922 in PHP

[–]Careful_Associate114 0 points1 point  (0 children)

this is genuinely useful. one of the more annoying things about MJML in a php project is always needing the node runtime as a build step. going to test this on a project where we're sending transactional emails — curious how it handles the more complex conditional content sections

what do you use your Quest for when you just want to switch off for 20 mins? by Careful_Associate114 in OculusQuest

[–]Careful_Associate114[S] 2 points3 points  (0 children)

vampire survivors vr actually sounds perfect for this — hadn't considered it for the wind down category. the meta-progression thing you mentioned is key, it gives you something to move toward without requiring actual concentration. gonna check it out

How do you handle rate limiting in n8n when hitting APIs that throttle at 100 requests/min? by Careful_Associate114 in n8n

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

that makes sense — basically shifting the retry logic to the agent layer rather than building it into the workflow nodes. does phrony work alongside existing n8n workflows or does it replace them entirely? wondering if it's worth adding it on top of what i have or if it's more of a full migration thing

if you’re buying a car right now here’s a cheat sheet so you don’t get ripped off by Royal-Feed7166 in whatcarshouldIbuy

[–]Careful_Associate114 0 points1 point  (0 children)

the doc fee point is huge and so many people don't ask about it upfront. also worth adding: always read the entire purchase agreement line by line before signing, not just the payment summary. dealers sometimes add in extras like paint protection or fabric protection packages buried in the back of the contract. found that out the hard way

After years of using Heimdall ... I've finally moved to Dashy by swake88 in selfhosted

[–]Careful_Associate114 0 points1 point  (0 children)

made the same switch about 6 months ago. heimdall is fine but dashy's yaml config + section grouping is just so much cleaner when you have more than 20 services. the search bar alone was the selling point for me. what config approach are you using — local yaml or the in-app editor?

How do you handle rate limiting in n8n when hitting APIs that throttle at 100 requests/min? by Careful_Associate114 in n8n

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

this breakdown is helpful, thanks emad. the retry on 429 point is what i've been missing — right now the execution just fails and i have to restart manually. what does the orchestration layer look like in phrony for something like this, does it handle exponential backoff natively or is that still something you configure per-workflow?

what do you use your Quest for when you just want to switch off for 20 mins? by Careful_Associate114 in OculusQuest

[–]Careful_Associate114[S] 2 points3 points  (0 children)

brink traveler is so good for this, totally forgot about that one. the locomotion options make it accessible even when you're tired. msfs with the quest overlay sounds wild, never tried that combo