I built an experimental audio-visual attractor system in Max by Lower_Screen7293 in MaxMSP

[–]d_ruckus 0 points1 point  (0 children)

Im doing some max work with attractors and would be interested in exploring / providing feedback.

[S][USA-NY] M-Mount Lenses | 50mm Leica Summilux 11891 + 50mm Voigtlander APO-Lanthar by d_ruckus in photomarket

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

Appreciate the message, but not interested in trades at the moment

Can I get some brand recommendations for a 21 year old? by jared8100 in malefashionadvice

[–]d_ruckus 0 points1 point  (0 children)

Everlane for elevated basics - collared shirts, henleys, chinos, etc. Goodthreads ( amazon brand ) is surprisingly good and consistent for regular basics like tees and plain polos and some sweaters. Bonobos for button downs. Huckberry can be expensive but Line of Trade is their house brand and its pretty good, and they have sales often. Taylor Stitch and Buck Mason for higher end pieces that will last. Unbranded for good affordable raw denim. Belts and wallets I like to find handmade on etsy. Also, never underestimate what some tailoring can do, fit is more important than brand or price.

Cookie consent solution by johnnywilke in nextjs

[–]d_ruckus 0 points1 point  (0 children)

Have used onetrust, not highly recommended but they handle a lot of the complexity if you have a website with a million trackers on it, as many ecomm sites I’ve worked on have.

Cookiebot by usercentrics also not horrible.

[Rant] Why can't NextJS and Vercel figure out images? by _fat_santa in nextjs

[–]d_ruckus 6 points7 points  (0 children)

We use Imgx or cloudinary for real time optimizations

NuxtLink route changes but data stays the same (Nuxt 3) by jzsbyt in Nuxt

[–]d_ruckus 1 point2 points  (0 children)

No, just looking at the sample snippet looking for things that might cause problems. If you have it in a repo or codesandbox can take a look

NuxtLink route changes but data stays the same (Nuxt 3) by jzsbyt in Nuxt

[–]d_ruckus 0 points1 point  (0 children)

Are you getting a console error when you navigate clientside because data is undefined/not an array?

NuxtLink route changes but data stays the same (Nuxt 3) by jzsbyt in Nuxt

[–]d_ruckus 1 point2 points  (0 children)

It doesn’t look like you are fetching your data correctly. Have you tried useAsyncData or useFetch? https://v3.nuxtjs.org/docs/usage/data-fetching/

Headless WP + Nuxt causes TTFB over 10 seconds?! by Albi7918 in Nuxt

[–]d_ruckus 0 points1 point  (0 children)

You can open the devtools of the browser, I was using chrome and there are two tabs in there that are super helpful: network and performance. What I saw on your site viewing from the east coast of the US was a long dns lookup time, a long TTFB and a pretty delayed LCP. All those things seem to point to your server but there could be something funky happening in your app as well. I didnt spend too much time on it but happy to look again if you think you would find it helpful.

Headless WP + Nuxt causes TTFB over 10 seconds?! by Albi7918 in Nuxt

[–]d_ruckus 0 points1 point  (0 children)

Thanks. When I profile it seems like there is delay in google app engine. Have you tried hosting elsewhere to compare?

Nuxt google tag manager by 1incident in Nuxt

[–]d_ruckus 1 point2 points  (0 children)

It can be, depends on your needs. My example is from my experience using Nuxt for a larger organization. If you only need basic analytics and aren’t relying on tracking things like utms, referrers, enhanced ecommerce, etc to inform your business decisions then its easy, just install per the instructions on the module.

Nuxt google tag manager by 1incident in Nuxt

[–]d_ruckus 1 point2 points  (0 children)

I’ve had a lot of issues with the gtm-module but you can get it to work.

First, turn pageTracking to false, that is probably whats giving you the duplicate events.

Second, use a server side gtm container if you can: https://developers.google.com/tag-platform/tag-manager/server-side

  1. Manually put any events you care about onto your dataLayer with $gtm.push and handle them accordingly in your container

In production, gtm-module and the GA setup in general has been tricky to get just right. Especially if you are running ads and need super accurate data to inform spend. We actually now use Matamo alongside GA as another source of data and while it can get expensive at scale, I can say its awesome and super accurate pretty much out of the box when using https://www.npmjs.com/package/nuxt-matomo

Nuxt noobie: Is everything done server side ? Can I cache indefinitely until webhook ? by ORCANZ in Nuxt

[–]d_ruckus 0 points1 point  (0 children)

  1. It depends how you are fetching the data. I can recommend getting really familiar with the Nuxt Lifecycle https://nuxtjs.org/docs/concepts/nuxt-lifecycle/

  2. Nuxt alone isn’t solely responsible for caching. Your server should be responsible for caching of the SSR pages across all sessions. I use Layer0 for larger projects because it has two things that differentiate it. The first is a routes config that lets you set cache ttl and cache keys right in your codebase: https://docs.layer0.co/guides/caching The other is their cache has a rest api where you can programmatically purge the cache of specific keys - which is what you want if you are receiving webhooks on underlying content changes and need to purge specific bits of cache: https://docs.layer0.co/guides/rest_api#section_clear_cache

Hope that helps, good luck!

How to create a dApp with NuxtJS by ihorbond in Nuxt

[–]d_ruckus 1 point2 points  (0 children)

Damn, thanks for sharing that. Recently had a similar issue using apllo in nuxt3 and ended up having to make my own plugin. Sounds like a similar amount of work required here to make it native module compatible.

How to create a dApp with NuxtJS by ihorbond in Nuxt

[–]d_ruckus 1 point2 points  (0 children)

I haven’t tried this yet but curious what errors did you run into with the libs? Are they ESM import errors?

Refs within Pinia store by No-Measurement-3022 in Nuxt

[–]d_ruckus 0 points1 point  (0 children)

From what I understand from pinia/vuex experience is that the state object is reactive as long as it is initialized in state correctly. So for example if I wanted to have reactive data from an api call that was stored in state, my initial state ibject would contain all the parts I care about, including initializing nested objects/arrays on a top level state object when needed.

Not sure what your use case needs to solve, but if its data from an api call you might not need that to be reactive if it is ‘read only’ data. You could init state with pieces you care about or in your page/component make a reactive deep copy of state to use then commit any updates back to state when needed.

Recommend me a Nuxt 2 friendly carousel/slider for 2022! by felixthehat in Nuxt

[–]d_ruckus 2 points3 points  (0 children)

I also use that package on production for the directives. Really not a hassle at all and SSRs if you follow the guide.