@mez@mastodon.nz
@mez@mastodon.nz avatar

mez

@mez@mastodon.nz

Work: Web & software development 🧑🏼‍💻

Play: Ultimate (retired?) 🥏, climbing 🧗🏼, tramping 🏕, D&D 🧙🏼‍♂️

My header is from the Oregon on the US west (best) coast.

That's Guster in my profile pic with me. He's a good pupper, but couldn't move to New Zealand with me.

He/Him, wouldn't be fussed by They

This profile is from a federated server and may be incomplete. Browse more on the original instance.

mekkaokereke, to random
@mekkaokereke@hachyderm.io avatar

Happy !

Day 26: Bama football

Q: OK fine! There's a lot of racism! But we can't do anything about it! You can't change hearts and minds! I've flipped from denial to helplessness! Talking about racism depressed me and makes me feel bad, because we can't do anything about it! So, can you stop talking about it?

A: No, we won't stop talking about it. Yes, we can do something about it. Let's look at one specific example of a reduction in racism, driven by racists themselves! 🙂🙃

mez,
@mez@mastodon.nz avatar
mez, to random
@mez@mastodon.nz avatar

Saw a photo of where pretty much everyone (at least attendees) were masked. Went to their website and found their policy. I don't have a lot of experience with conferences and their organisation, but this seems real good. https://kiwipycon.nz/covid-19

I know a lot of people can't do conferences anymore and that's tough. Encourage your conference organisers to go in this direction. It's possible and some people are still trying to keep others safe and included.

mez, to 11ty
@mez@mastodon.nz avatar

Here’s how I added search to my static website without using client-side JavaScript:

https://www.philiprenich.com/blog/adding-search-to-an-eleventy-site-without-client-side-javascript/

Being able to search a blog, on the blog's site and without Google, is awesome. You should do it. Maybe this method will help you. Let me know if you do!


mez, to webdev
@mez@mastodon.nz avatar

What’s your favourite way to add working examples of code in your blog posts that isn’t CodePen? Both for CSS and JS example code.

Thinking a basic web component with declarative shadow DOM might do it nicely since it will fully encapsulate the code? Maybe wrap it in @zachleat browser-window or resize-asaurus component.

#WebDev #Blogs

mez, to 13thFloor
@mez@mastodon.nz avatar

My #RSS reader is full of tech blogs and personal blogs of tech people. It’s very monochrome. I need some variance, some creativity and #fiction.

Hit me up with your favorite short story #writers, fiction writers, horror-in-sentence writers.

What about people writing about their hobbies, handcrafts, or hidden treasures?

Game design, world building, #RPG adventures?

Boosts welcome

#ShortStories #writing #blogs #hobbies #SorryAboutAllTheHashtags #IDontHaveALotOfFollower

mez, to webdev
@mez@mastodon.nz avatar

I’d be curious to see how people are using Notion to power their websites. Not the code side of things, but the Notion. I just scratch the surface of what Notion can do I think - so I’m curious to see how others use it?
(Pretty sure @andy does this for his site? Care to make a wee video or post some screenshots of your Notion setup?)
#WebDev

mez, (edited ) to webdev
@mez@mastodon.nz avatar

You, a #WebDev, need to add a simple filter / search on an un-paginated table. Assume client-side enhancement is totally fine. (alternates/reasoning in replies!) Do you:

mez, to javascript
@mez@mastodon.nz avatar

Hey #JS #WebDev in a Class, getters can't take parameters, but they can return a function that does. Is there a material difference between that and a method? Compare get thing and findThing() below

class Foo {  
 things = [{id: 1}, {id: 2}];

 get thing() {  
 return id => this.things.find(item => item.id === id)  
 }

 findThing(id) {  
 return this.things.find(item => item.id === id)  
 }  
}  

Is there a performance or functional difference?

mez, to random
@mez@mastodon.nz avatar

The Department of Conservation requested photos from my recent hike so they could have up to date information about some alpine conditions. The images were too large to email, so I made a public album on my self-hosted NextCloud instance and sent that. Unfortunately, I was told their govt browsers were unable to open the link :( Instead, they asked me to upload them to Google Drive or One Drive…
Yay, govt safety controls forcing the usage of Google and Microsoft! 🙄

mez, to webdev
@mez@mastodon.nz avatar

Hey #WebDev a while ago I read a blog post about different ways to style your code to define #WebComponentrs. I think it was in relation to having a base class / component factory.

Thinking about style choices like
class MyComponent extends HTMLElement {}
customElements.define(“my-component”, MyComponent)

or

customElements.define(“my-component”, class extends HTMLElement {})

Anyone remember that article?

/cc @cferdinandi @zachleat

fraying, to random
@fraying@xoxo.zone avatar

I’m late to this, I know, and I never played the game, but holy shit is Arcane: League of Legends (Netflix) a damn masterpiece of adult animation. Just spectacular. Gorgeous. Intense. An absolute must-watch for anyone who likes animated storytelling or really anyone who liked Game of Thrones before it went to shit. Yeah, it’s that good.

mez,
@mez@mastodon.nz avatar

@fraying Castlevania was another good animation for adults.
But yeah, Arcane, especially those first 3 episodes. 💯

mez, to random
@mez@mastodon.nz avatar

Saw that Microsoft saying it’s a website’s fault if your password gets swept up by Recall if the site doesn’t cloak the password entry field following “standard internet protocols” which completely ignores the accessibility case for showing someone what they’ve typed in to their password field. Pretty sure every password manager lets you do this, and a ton of sites as well.

What a head-in-the-sand take.

mez,
@mez@mastodon.nz avatar

So many people replied with a bunch of other obvious things you really don’t want screenshot, like MFA and credit card numbers. It’s just. So. Bad.

mez,
@mez@mastodon.nz avatar

@havvyhh2 The bad, but exponentially worse.

mez,
@mez@mastodon.nz avatar

@Paxxi 🤦🏽

mez, to random
@mez@mastodon.nz avatar

Oi, @Wilto if I buy the PDF version of Multipage, do the proceeds still go to Translife? I live in an unmapped part of the globe and can’t get the print one shipped here.

mez,
@mez@mastodon.nz avatar

@Wilto Awesome. I was on the fence about buying any format until I saw it was supporting that.

mez, to random
@mez@mastodon.nz avatar

Oh wow. What a nice day.

mez, to webdev
@mez@mastodon.nz avatar

I’m reading this article about the de-skilling of the web, web dev burnout, and how we are no longer allowed to be specialists. I’m reading it while at work where I’m trying to figure out why my SQL queries aren’t working, what I’ve done wrong in a backend server framework, and there’s a design waiting for me to review before I implement it in CSS and HTML. 😖

Please let me hone in on just a couple of these and practice a craft…

https://www.baldurbjarnason.com/2024/the-deskilling-of-web-dev-is-harming-us-all/

#WebDev

mez,
@mez@mastodon.nz avatar

Proposal to rename “full-stack developer” to “overflow developer” or “stack overflow developer”

kissane, to random
@kissane@mas.to avatar

After weeks of planning, waiting, scouring, four-step protein mordanting, and dye extraction, the first batches of our kid’s summer market project are in production. Want to guess the (botanical) dye source?

mez,
@mez@mastodon.nz avatar

@kissane @cour13r5 Also, Erin, zero stress to post pup photos for rando internet strangers.

mez,
@mez@mastodon.nz avatar

@nazhamid @kissane Well now I’m really curious!! That colour??

mez,
@mez@mastodon.nz avatar

@kissane @cour13r5 It’s also been a long time (probably more than a day) since we saw a photo ;)

polotek, to random
@polotek@social.polotek.net avatar

Is this a rerun? Didn't we already do this?
https://m.ai6yr.org/@ai6yr/112524521891859326

mez,
@mez@mastodon.nz avatar

@polotek It’s all sequels and reboots these days. Where’s the originality?

mez, to random
@mez@mastodon.nz avatar

When you sign out of a website, it shouldn’t take you back to the home page or sign in form. I’ve finished using the site.

Sign out should really close the browser tab, shut down the browser, and finally turn the computer off for the rest of the day.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • anitta
  • thenastyranch
  • rosin
  • GTA5RPClips
  • osvaldo12
  • love
  • Youngstown
  • slotface
  • khanakhh
  • everett
  • kavyap
  • mdbf
  • DreamBathrooms
  • ngwrru68w68
  • megavids
  • magazineikmin
  • InstantRegret
  • normalnudes
  • tacticalgear
  • cubers
  • ethstaker
  • modclub
  • cisconetworking
  • Durango
  • provamag3
  • tester
  • Leos
  • JUstTest
  • All magazines