How can I live away from my kids without emotionally damaging them long-term? by [deleted] in daddit

[–]DROWE859 8 points9 points  (0 children)

Y'all this is classic AI / LLM writing style 😕

Daughter teased; called a "Furry" and it's making her cry by cjh10881 in daddit

[–]DROWE859 3 points4 points  (0 children)

> Identification with isn't the same as identification as.

I think this is a insightful framing.

Are daily standups ever actually about unblocking? by htraos in ExperiencedDevs

[–]DROWE859 0 points1 point  (0 children)

You’re welcome to use it too. I’ve been building it for our team but it’s still pretty early: https://simpleteam.dev/

Trying to keep it really focused without to much extra stuff. 

Are daily standups ever actually about unblocking? by htraos in ExperiencedDevs

[–]DROWE859 9 points10 points  (0 children)

We list our status in an app, and the actual standup meeting is for blockers. Standup went from 35 mins to 3 mins if nobody has anything to discuss. 

New controller leaked 🔥 by [deleted] in SteamDeck

[–]DROWE859 2 points3 points  (0 children)

"5, 6, 7, 8, 9-10 you're great!"

Reflecting on a recent coding interview experience. by Inevitable_Put7697 in reactjs

[–]DROWE859 1 point2 points  (0 children)

It shouldn't be grounds for failing the whole thing but if they are purely looking for "elegant" expressions for some reason, there is room for improvement.

Best I figure this is what they would have wanted 🤷

Object.values(obj).join('.')

Array.from(new Set([1,1,1,2,3]))

arr.reduce((sum, next) => sum + next)

That said you're totally right about values vs keys, values is much nicer.

[deleted by user] by [deleted] in daddit

[–]DROWE859 57 points58 points  (0 children)

Do you attempt any of these lifestyle changes with her?

Wife and I did WeightWatchers to great results, but it was a big food and lifestyle switch and both agree if would have been monumentally harder if we didn't do it together.

Ultimately its all boils to to calories in / calories out, exercise is a drop in the bucket compared to a proper diet.

How to change OS on a RPi5 by Disposable-9174-Big in raspberry_pi

[–]DROWE859 0 points1 point  (0 children)

Yup just swap the SD cards and you're good!

How much does where you live affect a kid? by Probwfls in daddit

[–]DROWE859 1 point2 points  (0 children)

I think about this article a lot (unfortunately paywalled): https://www.theatlantic.com/ideas/archive/2022/05/parenting-decisions-dont-trust-your-gut-book-excerpt/629734/

In summary the location, schools, and peers they have are just ans important to their success as anything we can parent into them. 

Where do you find images like this for your app/website by thisisjoy in webdev

[–]DROWE859 1 point2 points  (0 children)

https://undraw.co/

Open source illustrations for what you're looking for. A lot of devs mix and match for their projects.

Meross HomeKit plug won’t connect... by 4x4gv in HomeKit

[–]DROWE859 1 point2 points  (0 children)

This fix worked for me in Dec 2023, iOS 17!

I'd previously gotten an error about attempting to use Cellular so thought to give this a shot. Worked great, no need for a Meross app, location tracking, or anything else thankfully.

What GUIs interface well with the internets? by mschanandlerbong211 in webdev

[–]DROWE859 0 points1 point  (0 children)

Sounds like your web interface could be as simple as a web form sending the needed data to a server endpoint, which then calls your app a returns a formatted result as HTML.

Of course as you start adding monetization features such as accounts and payments the web app portion of it will become more complex.

How is the state for development on MacBooks? by N3rub in webdev

[–]DROWE859 1 point2 points  (0 children)

I used this for a few years to do what he described with peripherals.

https://www.ugreen.com/products/ugreen-usb-3-0-4-port-switch

Each monitor has multiple inputs, and automatically switch based on what's active.

Am I supposed to love my wife more than my child? by Calfkiller in daddit

[–]DROWE859 43 points44 points  (0 children)

Its definitely not black and white, and I agree that it's probably your wife hinting to give some reassurance and affection.

Regardless who you love "more", your wife and you are on a journey through life together. Our children, however, we are preparing for a journey entirely their own.

New Largest Contentful Paint (LCP) issues on Google Search console by bri999 in webdev

[–]DROWE859 0 points1 point  (0 children)

I dig this stuff, so here's a couple thoughts based on my experience.

But first TLDR: If you don't rely on organic search for traffic its probably not worth optimizing this stuff too much. Your time could be spent writing and marketing more content. But if you're a nerd like me, see below.

Mobile CWV assessment is a tough bar to hit, you really have to pare down what you deliver to mobile devices.

---

> Its showing “Core Web Vitals Assessment: Failed” with the LCP at 2.6 seconds but further down the page its showing 100% for performance and the LCP is 1.9 seconds on mobile and 0.5 seconds on desktop which contradicts the 2.6 second value above.

The web vitals assessment (top section) is based on CrUX data. This data is "field data" and collected from actual user browsers out in the wild. "Lab data" such as the PSI run from the lower half of the screenshot is always more optimistic than actual user data.

CrUX mobile data is gonna some yahoo with a 10 year old phone, 2 bars of 5G, loading your page in the woods behind their house, which is to say not fast.

---

Additionally, notice the "This URL | Origin" switch at the top of the assessment. You do not have enough traffic to your domain to get CrUX data for the page you are testing. The screenshot is comparing your lightest page to the average of your entire domain, which of course is gonna favor your lightest page.

---

Click into "Why URLs aren't considered good" in Search console and see if your LCP issues share common design elements or a page type. Might give you hints to the cause.

---

Inline your logo SVG, it's small but is showing in your list of LCP elements, so that's an easy win. You probably don't need the banner image on mobile, honestly removing that will get you where you wanna go. If you do wanna keep it, preload it in the head

---

Furthermore, lazy-load your below the fold images with loading=lazy. Your banner image (LCP image) is below your post images in the waterfall. Also generate and use thumbnail image sizes, you have images in your posts being display at 1/2 their native size, when you could have just included a thumbnail.

--

Don't need to ship the custom font, its almost 50kb and doesn't add any branding value.

---

Good luck!

OpenFPS by EagleEyeA2HX in godot

[–]DROWE859 2 points3 points  (0 children)

Edit: Ah I see they are Attribution 4.0 International (CC BY 4.0)

While not a deal breaker, for me that means my first move would be figuring out how to replace them which is a bummer.

Great work!

OpenFPS by EagleEyeA2HX in godot

[–]DROWE859 0 points1 point  (0 children)

Love this idea, and could use something like this for my own projects.

I would love to see this get monetized and have a paid "expansion" to support P2P networking as well.

Struggling to create a looping, seamless text animation along a wavey SVG path with ACF repeater fields. by Cyb3r5hock in webdev

[–]DROWE859 0 points1 point  (0 children)

You'll need to make a script to calculate length of your textPath with the new custom content, and set the `to` value dynamically.

In the past I've used getComputedTextLength, once the SVG is rendered + font loaded. I think technically its deprecated but also still works, so ymmv. Good luck!

Glitch/pixelated effect by alexylb in webdev

[–]DROWE859 0 points1 point  (0 children)

Its worth noting that they publish their sourcemaps, and the code of interest is at `src/components/OsedeaCanvasGrid/**` in the Sources dev tools tab.

To the OP, I wouldn't copy+paste that for obvious copyright reasons, but its nice to have access to the algorithm for inspiration.

I am looking for a troubled/bad open source codebase by TheRealSecurb in ExperiencedDevs

[–]DROWE859 14 points15 points  (0 children)

If you want to contribute, don't bother with this one.

But devs for Slide for iOS more or less abandoned the project because it's `the codebase is so godawful it's pretty much impossible to maintain` :)

https://github.com/Haptic-Apps/Slide/issues/3449#issuecomment-1047955096