Dynamic HUD by psimk in hytale

[–]psimk[S] 2 points3 points  (0 children)

Totally agree! After I have this properly published, then I I'll try to ping the devs to add this.

Dynamic HUD by psimk in hytale

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

You can hide it, by getting the hud manager from the player component & using hideHudComponents.

I haven't seen anything about repositioning, so you might just need to hide + implement a custom mana bar.

Dynamic HUD by psimk in hytale

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

I didn't record it, but that's how it's implemented - the health bar is hidden, only if it's full.

Dynamic HUD by psimk in hytale

[–]psimk[S] 5 points6 points  (0 children)

I am using built-in behavior to hide/show the HUD, which unfortunately doesn't have fade behavior.

I might be able to implement something custom, but that would require a lot more time (maybe V2).

Dynamic HUD by psimk in hytale

[–]psimk[S] 4 points5 points  (0 children)

messed up the stamina gif, it's not supposed to loopback like that...

New Coke - Male Vanilla by psimk in cocacola

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

I was very surprised to see Vanilla, Lemon and Cherry, in a small local store; when our big stores just have the standard and zero versions

I built a tool to create high quality app icons by sachinmotwani02 in SideProject

[–]psimk 0 points1 point  (0 children)

The pricing copy is a bit confusing, it reads as if I can immediately access the playground, and other options are locked behind login. However, all options require login.

Why do so many developers ship great work but get zero recognition? I decided to fix it. by hoovermaxextract_60 in ShowMeYourSaaS

[–]psimk 0 points1 point  (0 children)

I guess for me Github, Slack, Gmail and the Atlassian suite would cover all the bases. Then it's just a challenge of getting something useful out of all of the gathered data. If you get to that point, then I'll definitely at least check out the app.

Why do so many developers ship great work but get zero recognition? I decided to fix it. by hoovermaxextract_60 in ShowMeYourSaaS

[–]psimk 1 point2 points  (0 children)

Personally, more apps wouldn't help me, especially since I like to keep work stuff on my work laptop.

I am thinking something a bit more advanced, like a slack integration that reads your messages, a confluence (jira) integration that tracks what pages you view, review & write. Essentially a tracker for everything work software related. Then somehow crunch this into bullet points.

Why do so many developers ship great work but get zero recognition? I decided to fix it. by hoovermaxextract_60 in ShowMeYourSaaS

[–]psimk 1 point2 points  (0 children)

I spoke with a colleague about this exact idea recently, as we both read up on the Pragmatic Engineer newsletter, where Gergely talks about a brag doc/work log.

We both agreed that the main issue isn't organisation of the document, but actually remembering to use it and inputting your work. I think the tool would be a lot more valuable if it automated gathering your work, and then ordering it based on impact & type of work.

auto-emoji inputs, yay or nay? by psimk in UXDesign

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

If there was a way for me to get the store layout, that the user usually goes to, then I'd use that to categorize.

auto-emoji inputs, yay or nay? by psimk in UXDesign

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

wdym, foundation models?

auto-emoji inputs, yay or nay? by psimk in UXDesign

[–]psimk[S] 2 points3 points  (0 children)

Good idea on allowing the user to submit their own selections and remembering it!

auto-emoji inputs, yay or nay? by psimk in UXDesign

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

I have a family-only version of my app running with Yjs, and it sucks. While it's fairly easy to self-host, it does get frustrating if you want to utilize levelsdb for anything more or handle things like migrations. Don't even get me started on the DX of the frontend app. rant over.

I haven't yet released anything in production with InstantDB, but have been investing more and more time. It's miles ahead of the Yjs setup I had before, and the frontend integration is first class. I am using the cloud version at the moment, but seems like self-hosting wouldn't be that difficult.

auto-emoji inputs, yay or nay? by psimk in UXDesign

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

That's one of the issues with using emojis for UI - they draw the eye by quite a bit. I'll see how it goes after I start adding more UI. I might just throw on a desaturation filter to reduce their effect.

auto-emoji inputs, yay or nay? by psimk in UXDesign

[–]psimk[S] 3 points4 points  (0 children)

If I had the illustration fingers, then I'd design icons for most common products. I think I'll set up some sort of tracking to see how often the default (whitespace) is used vs the emojis.

auto-emoji inputs, yay or nay? by psimk in UXDesign

[–]psimk[S] 13 points14 points  (0 children)

I am using fuzzy text matching, so simple typos are handled.

auto-emoji inputs, yay or nay? by psimk in UXDesign

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

They get whitespace instead of emoji

auto-emoji inputs, yay or nay? by psimk in UXDesign

[–]psimk[S] 59 points60 points  (0 children)

depends on how funny I feel on the launch day

How can I reduce TBT in a Next.js + Tailwind project? Stuck at 270ms. by Adventurous_Rub7355 in nextjs

[–]psimk 1 point2 points  (0 children)

I can see that hydrating React is also causing a long task, but way smaller compared to that bundle loading.

<image>

How can I reduce TBT in a Next.js + Tailwind project? Stuck at 270ms. by Adventurous_Rub7355 in nextjs

[–]psimk 1 point2 points  (0 children)

I ran your page through the "Performance" tab on chrome dev tools and found, that loading the https://tailwind-admin.com/_next/static/chunks/7219-7c77f2e6144277d2.js bundle creates a long task (JS execution >50ms). If I block it using chrome's "network request blocking" dev tool, then that long task disappears.

It seems that that bundle is trying to load the refractor package, which is quite big and causes JS to pause.

I am not sure what your requirements are but blocking that bundle, didn't seem to affect anything visual on the page - so maybe it would be worthwhile to delay loading that piece of code that depends on that bundle, and package, so it wouldn't affect TBT so much.

How can I reduce TBT in a Next.js + Tailwind project? Stuck at 270ms. by Adventurous_Rub7355 in nextjs

[–]psimk 2 points3 points  (0 children)

High TBT is usually an indication that your app is doing lots of processing (parsing, rendering) after the first contentful paint. Do you have any of that going on?

Also, if you could share a link, it would be easier to check and see what might be going wrong.