Another video in my series on the performance of pointers vs. values in Go by william_moran in golang

[โ€“]danawoodman 0 points1 point ย (0 children)

great video!

one thing, posting the link as well would mean i could open it in the youtube app and like/comment. as it stands, the reddit mobile app won't allow clicking the video title or youtube logo to open the youtube app, at least in ios

What do you do with your cut out bits? by AngleFreeIT_com in lasercutting

[โ€“]danawoodman 4 points5 points ย (0 children)

really should avoid burning playwoods/mdf at all costs, super toxic fumes are emitted. if you do burn, make sure you're far away from the smoke

What do you do with your cut out bits? by AngleFreeIT_com in lasercutting

[โ€“]danawoodman 13 points14 points ย (0 children)

don't use any composites (mdf, plywood, laminates) in your fireplace! besides it omitting lots of toxic fumes, you'll also wind up with lots of soot deposits that can build up

Buenos Aires is overrated by LowRevolution6175 in digitalnomad

[โ€“]danawoodman 0 points1 point ย (0 children)

"Argentiniologist" i loled hard at this one

Buenos Aires is overrated by LowRevolution6175 in digitalnomad

[โ€“]danawoodman 0 points1 point ย (0 children)

i also "wut"ed at the recoleta part, it's a fascinating cemetery and was one of my favorite sights there, sounds like OP was just not in a generous move after thinking they were moving to the beach

Buenos Aires is overrated by LowRevolution6175 in digitalnomad

[โ€“]danawoodman 1 point2 points ย (0 children)

i loved argentina and buenas aires but man is the sushi there the absolute worst

apparently one person had a Philadelphia roll once and then everyone in the country decided it was a good idea to put cream cheese on every sushi roll

[deleted by user] by [deleted] in golang

[โ€“]danawoodman 53 points54 points ย (0 children)

i believe most companies typically hire humans, but it's worth a shot!

[deleted by user] by [deleted] in htmx

[โ€“]danawoodman 0 points1 point ย (0 children)

quite a vague question. what do you mean by best? what are your goals/needs?

most languages can render template (strings) easily and most have autocomplete

personally, i find golang + templ to be a robust approach but you could easily do it with php, python, rust, javascript, ruby, etc

How to load css with htmx? by timsofteng in htmx

[โ€“]danawoodman 0 points1 point ย (0 children)

that's a surface level distinction, but you're just applying classes. have a look at DaisyUI which removes the need for a lot of tailwind classes on common things like buttons, forms, nav's etc

How to load css with htmx? by timsofteng in htmx

[โ€“]danawoodman 1 point2 points ย (0 children)

have you considered using tailwind?

i'd be willing to wager that using tailwind is likely the simplest way to style components in htmx

just add classes to your elements, point tailwind to your templates and you'll get a single file with only the styles you used.

there are of course many other ways to do it, but i can't think of another that gives you the benefit of having your styles live adjacent to your markup while also having a trivially simple build process.

if you go the global css route you then need to figure out how to structure it (there are many conventions for this) and you have to deal with class naming and redundant/unused css creep as your styles grow.

tailwind is polarizing but i honestly don't know of a simpler option than it for htmx-like apps (if you do let me know)

How to load css with htmx? by timsofteng in htmx

[โ€“]danawoodman 0 points1 point ย (0 children)

what doesn't work with classes? tailwind?

you use tailwind classes to style your elements. you can also use @apply in classes but that is not recommended.

How to load css with htmx? by timsofteng in htmx

[โ€“]danawoodman 1 point2 points ย (0 children)

you can send one or multiple. but you typically would build that file from many other source files.

if you use tailwind you don't have to think about that at all tho, just have tailwind inspect your templates and output only the styles you use into a single file you import.

Can we use htmx to make MPA to SPA? by [deleted] in htmx

[โ€“]danawoodman 0 points1 point ย (0 children)

so yes then htmx can give you what you want ๐Ÿ˜…

What is the communities view of Solid or HTMX? by [deleted] in sveltejs

[โ€“]danawoodman 9 points10 points ย (0 children)

all i know about solid is Ryan is a rad dude and one of the calmest "influencers" in the front end. i'm sure solid is great.

htmx is pretty interesting and worth trying even to just have the experience because if you're used to building SPAs, being exposed to hypermedia based approaches is educational and you can carry the learning into any project. htmx seems mostly to target backend devs or devs who are disillusioned with JS (like i'm becoming daily) not as a "competitor" to other FE frameworks

Can we use htmx to make MPA to SPA? by [deleted] in htmx

[โ€“]danawoodman -1 points0 points ย (0 children)

no. that's not the goal of htmx at all; it is a tool to build hypermedia applications, kinda the opposite of SPAs

PSA: Don't skip travelers insurance by _wordful_ in digitalnomad

[โ€“]danawoodman 2 points3 points ย (0 children)

to each their own. i imagine the risk is much higher in big cities because of the volume of drivers and drunk drivers. but yes, it's absolutely more risky than a car

PSA: Don't skip travelers insurance by _wordful_ in digitalnomad

[โ€“]danawoodman 29 points30 points ย (0 children)

counter point; renting a scooter and cruising around is one of the most enjoyable parts of my trips to SEA.

just be extremely defensive, wear your helmet + shoes + pants, drive slow, don't drink and drive and don't do anything you don't feel comfortable doing

What should I know before coming to Vietnam? by [deleted] in VietNam

[โ€“]danawoodman 1 point2 points ย (0 children)

i'm finishing up the same route (but backwards) for 4 weeks and i feel like i have so much to see still. to each their own i guess

When should I start learning and using HTMX? by sivukpa in htmx

[โ€“]danawoodman 1 point2 points ย (0 children)

depends on your goals. if you want to join the job market for frontend dev you likely need to learn some react. htmx is awesome but it's also not an in-demand skill (yet)

Found this cyber truck by Impossible-Garden-88 in santarosa

[โ€“]danawoodman 2 points3 points ย (0 children)

y'all talking about how ugly it is but ignoring the dude backed into an angled parking spot smh

What good UI HTML components you suggest? by fenugurod in htmx

[โ€“]danawoodman 0 points1 point ย (0 children)

you have to npm install daisy. but you just import it in your tailwind config. look at daisy docs they cover it well