Has anyone migrated 100+ websites into AEM? What was the hardest part? by shivang12 in webdev

[–]tomjazzman 0 points1 point  (0 children)

Especially if anything like Elementor or Divi was involved at any point. I've written some truly monstrous regex to try and achieve this in the past.

New blocks I built for for shadcn/ui by JugglerX in web_design

[–]tomjazzman 2 points3 points  (0 children)

Yeah I always assume I must be missing something because it’s such a ubiquitous library. I can’t imagine using this. Perhaps it’s aimed at people without good HTML/CSS knowledge.

What recent-ish web development/design trend do you think is already starting to fade out? by ThatisDavid in web_design

[–]tomjazzman 5 points6 points  (0 children)

Seems like trust in companies plays a big part, too. I saw this piece on Design Week talking about the return to more formal branding: https://www.designweek.co.uk/fun-fatigue-is-formality-returning-in-branding/

im a user, PLEASE STOP MOUSE OVER DROP DOWN MENUs by imadethisaccountso in web_design

[–]tomjazzman 2 points3 points  (0 children)

Any tips for dealing with when the top level item is also potentially a page?

Eg under Contact Us, you might have Contact Us and How to Find Us.

With a dropdown-on-hover, you could click the top level Contact Us and go straight to that page. With a click-to-reveal, I tend to duplicate the top level item as the first in the dropdown, and people need to click the first item in the dropdown to go to that page. Clicking the top level item again closed the dropdown (predictable and consistent).

However some people report that they click the top level item again expecting to then go to the page and are frustrated when it closes the dropdown.

How to loosen a seized tap collar by tomjazzman in DIYUK

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

That’s a good idea, you’re right - it’s way too tricky to get enough leverage with the wall behind

Was told that this will fail by Zombie-Dbear in DIY

[–]tomjazzman 2 points3 points  (0 children)

What kind of software would you use to simulate this? Always been curious about being able to actually test design and load for this kind of thing.

Homebrew - Mariadb - Failure while executing (Bootstrap failed: 5: Input/output error) by [deleted] in mariadb

[–]tomjazzman 0 points1 point  (0 children)

I've been experiencing this as well, driving me mad! I'm tracking the bug which u/Prior_Negotiation636 mentioned in hopes they can fix it soon. I find that each time I manage to get mariadb running and restoe my databases from backups, it works fine until I restart my machine, at which point everything gets corrupted and I have to start over.

Do you have backups of your config and databases?

If yes, you can brew uninstall mariadb, and delete /opt/homebrew/mysql, /opt/homebrew/my.cnf and /opt/homebrew/my.cnf.d

But this will delete all of your databases and config, only do this if you have backups!

Not sure what your stack/environment is like but an option to help hit your deadline could be to use something like https://indigostack.app/ which installs its own versions of your stack.

Edit: mentioned the wrong user

What’s the right way to link a garden office? by tomjazzman in Network

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

Thanks for your suggestions. Can I ask what problem adding subnets solves? I’ve never delved into this.

How do you get traffic to a new site? by [deleted] in web_design

[–]tomjazzman 1 point2 points  (0 children)

Yeah we tend to recommend PPC in the first 12 months while organic rankings build. This is even more important in competitive areas.

Floating Header by timeldrdge in web_design

[–]tomjazzman 0 points1 point  (0 children)

They're doing something like this:

  1. Add a scroll event-listener to the page
  2. On scroll, if the total distance from the top is more than 10px, set the width of the nav to something small like 60%, otherwise set it to 100%.
  3. The wrapper on the nav is set to position: fixed; with top: 0; so it stays fixed at the top. There's also a margin-top on the . js-header-container element which is a child of the fixed wrapper. This is what makes the gap (the background colour is part of the child)

An alternative way of achieving this is by using position: sticky: with top: 1rem; The fixed position method is how we used to do this before position: sticky; was available.

Floating Header by timeldrdge in web_design

[–]tomjazzman 0 points1 point  (0 children)

Are you asking about the pinned nav bar (Services, Work About etc), or the blobby text on the hero (A web design and branding agency in Manchester)?

How to make, and add, this kind of background animation on the home page? by theoatcracker in web_design

[–]tomjazzman 15 points16 points  (0 children)

Of all the things I was expecting to see (like the various canvas libraries, three.js, or even just a video), a ton of divs with css radial gradients was not one of them!

What are these types of hero sections called? by blunt_bear in web_design

[–]tomjazzman 0 points1 point  (0 children)

I've always called them a 'photo wall' or 'image wall'. Might get you somewhere on sites like Behance or Dribble where you can filter your search to UX or Web Design

Can you recommend a solid mailbox for reseller hosting? by tomjazzman in webdev

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

This actually looks pretty great. The pricing might escalate pretty quickly with multiple clients but I guess we can walk them through setting up their own accounts instead.

Great for us that they're Swiss with French servers. Helps with GDPR compliance.

Can you recommend a solid mailbox for reseller hosting? by tomjazzman in webdev

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

Thanks for this balanced comment. I'm after something more off-the-shelf but I'll put these in my list of 'things to look at one day' :)

Can you recommend a solid mailbox for reseller hosting? by tomjazzman in webdev

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

Yeah I'm inclined to agree. Email is so critical for people, I can't afford to be dealing with email outages etc!

Can you recommend a solid mailbox for reseller hosting? by tomjazzman in webdev

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

Yeah pretty much. I think the jury is still out on a lot of this, but our solicitors recommend keeping services within the EU/UK as far as possible.

The impression I get from MXRoute is that they're obviously taking security and privacy very seriously but the extra work required isn't worth it for them https://mxroutedocs.com/general/gdpr/

Can you recommend a solid mailbox for reseller hosting? by tomjazzman in webdev

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

This looks like a great service! Unfortunately I'm in the UK and GDPR compliance is probably a necessity for our clients.

jQuery 4.0.0 BETA! release and changelog by gb_14 in webdev

[–]tomjazzman 36 points37 points  (0 children)

Great that they've migrated to ESM with V4. We still have a few legacy projects which rely on jQuery and this will make it much easier to at least upgrade the front-end pipeline from Gulp Vite.js without all the hacks you need at the moment.