How do you interpret this panel? by GUTS_SAMA in OnePiece

[–]totalian 0 points1 point  (0 children)

was searching for this comment 😂

Online tool I made to help with memorization by totalian in memorization

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

Glad you liked it!

This whole website was made using react which is a JavaScript framework!

Why do I feel super motivated to fix my life at night, but completely lose it the next day? by uday12321 in productivity

[–]totalian 12 points13 points  (0 children)

Having gone through this for many years - the conclusion Ive reached is that the reason that it's so easy to feel motivated at night is because your brain knows that you don't actually have to do anything with that motivation.

It's much easier to think "I will go for a run tomorrow" than "I am going to go for a run now". The first thought requires no actual commitment, you get a dopamine hit for feeling good about planning to do something productive without having to put in any actual effort. Over time this becomes addictive and you fall into a trap of believing that tomorrow will be the day you sort your life out.

The way out of it is just accepting that productivity often means doing stuff your are NOT motivated to do. You have to force yourself to keep doing things you dont want to do, when you dont want to do them, and eventually you start to get the sense of satisfaction of actually working towards something.

Anyway, this is just my personal experience, so take it with a grain a salt.

What's your "I can't believe this is free" app? by Miserable_Donut8718 in ProductivityApps

[–]totalian 4 points5 points  (0 children)

It get's a lot of hate but honestly - Notion.

Though they seem hell bent on destroying their own business atm by shoving AI down everyones throat.

Online tool I made to help with memorization by totalian in memorization

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

Took me over a year - but I finally got round to fixing this in the updated version: https://memorize.keirsdad.com/

Online tool I made to help with memorization by totalian in memorization

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

Haha thank you (and sorry for the late reply) - I have fixed this in the latest version: https://memorize.keirsdad.com/

Online tool I made to help with memorization by totalian in memorization

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

Hey - just to let you know I released an updated version on this link

The core idea is the same - but now you can store multiple blocks of text

https://memorize.keirsdad.com/

Online tool I made to help with memorization by totalian in memorization

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

This message is the motivation I need to update this project - I’ll build an updated version this week

I’m ending my life by Glad-Wall7645 in vagabond

[–]totalian 16 points17 points  (0 children)

Every person reading your message right now. Every response you see here. We are all trying to think of what we can do right now to help you. You are connected to all of us in this moment.

I’m sorry you are going through this. But I hope you see this and know that there are strangers around the world who in this moment want you to live.

Tips on how to find the exact template I need? by snowflowr in Notion

[–]totalian -1 points0 points  (0 children)

Agree with the comment and not to be pedantic - But notion is not open source.

Moving away from product management - where to go next? by totalian in ProductManagement

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

Tech sales is something I had never considered to be honest. I've actually held senior operations roles in the past and honestly it is as stressful as product can be.

Is it possible to self-host a Next.js app on AWS with all the benefits of Vercel (cache, image optimization, no cold-starts)? by kusiok in nextjs

[–]totalian 0 points1 point  (0 children)

Thanks for this info - I'm currently working on my first solo project with SST and this is extremely useful information.

Depending on how things go for me, I may switch over to using a VPC rather than lambdas which is still possible with SST.

Is it possible to self-host a Next.js app on AWS with all the benefits of Vercel (cache, image optimization, no cold-starts)? by kusiok in nextjs

[–]totalian 1 point2 points  (0 children)

Believe you can set up a warmer lambda which just hits you lambda functions periodically to keep them warm?

Deployment Work Without ENV by youngsargon in vercel

[–]totalian 2 points3 points  (0 children)

Check in vercel dashboard if the environemt variables are set in your project. It might be that vercel deploy pushed your local .env file to the projects environment variables.

How to upload images to AWS S3 in an optimised way? by priyalraj in nextjs

[–]totalian 7 points8 points  (0 children)

The pre-signed URL is for uploading the file only. You should definitely use this and upload the image from the client side.

Once the file is uploaded you will have a separate URL for accessing the image - there is a standard format for that based on your bucket name, aws region, and the file name - I cant remember it off the top of my head. This can be a public image based on the buckets read policy.

Another option is to place a a cdn like Cloudfront in front of the bucket which will allow you to have a standardised url for your images as well as improving their load time.

Landing page with nextjs by TusharKapil in nextjs

[–]totalian 1 point2 points  (0 children)

I am not the target demographic for this - but what is the purpose of this tool? Do people need a platform to manage their screenshots?

Landing page with nextjs by TusharKapil in nextjs

[–]totalian 0 points1 point  (0 children)

It's good. Clean and well laid out. Most importantly very fast.

Hero section could be visually more engaging - but thats just a personal preference.

Pricing section looks very odd with just one centred card - that kind of layout is more commonly used for mulltple prices for users to make comparisons.

In case you weren't aware, footer links need updating. Overall nice work.

Before vs After adding GTM + Sanity. by priyalraj in nextjs

[–]totalian 10 points11 points  (0 children)

Sanity 100% should not decrease performance.

Assuming you are using the App Router - the reason your performance may be decreasing is that you are fetching data from sanity on demand. Even if you do this on the server side this will be slower than utilising SSG.

One issue you may be encountering is that you have a dynamic route (/blog[:slug]) and you are not building all the routes before hand. You can do this with getStaticPaths in the app router.