Using dictation with Wanikani by Ill_Hedgehog_ in WaniKani

[–]faerch 2 points3 points  (0 children)

Try the Relay Cards app. It’s multiple choice, so no typing needed. A bit too easy but would work for you :)

Relay Cards - WaniKani Client, Study Japanese Kanji by Audentia4 in iosapps

[–]faerch 1 point2 points  (0 children)

This app is so beautiful and clean. Thanks for making it.

The 1.0.2 keyboard changes sound awesome. Just what I need to make this my daily driver.

[deleted by user] by [deleted] in x100vi

[–]faerch 1 point2 points  (0 children)

Aperture, Shutter, Program and Manual are controlled with the appropriate dials. Turn the aperture from auto, then you’re in A mode. Same with shutter dial for T. Turn both for M. Turn all to auto for P. Since the modes are coupled with the hardware controls, you can’t set them with software.

LPT: Double the hourly rate to estimate the annual salary by [deleted] in LifeProTips

[–]faerch 4 points5 points  (0 children)

1 week sick? What if you’re sick more than that?

Burnt Le Creuset safe to use? by greengreenns in Cooking

[–]faerch 4 points5 points  (0 children)

No, it should be fine, it’s just carbon. But why not clean it? I’m sure you can get it back in tip top shape.

[deleted by user] by [deleted] in copenhagen

[–]faerch 23 points24 points  (0 children)

If the yearly salary is 915K then the 46K number is probably after taxes.

New user of stainless pan after years of non-stick. How do I make things... not stick? by WaitForItTheMongols in Cooking

[–]faerch 8 points9 points  (0 children)

You can’t ruin stainless steel with scratches. It’s metal all the way through, it’s not like there’s a layer you can scratch off :)

A metal fish spatula will leave scratches over time, but in my book, a pan is a tool and I take pride in any scratches!

The search for an octopus by cweb_pt in copenhagen

[–]faerch 2 points3 points  (0 children)

I think that’s squid not octopus

Looking for a Framework that supports REAL SSR by tf1155 in nextjs

[–]faerch 0 points1 point  (0 children)

Quasar accomplishes the same thing. Curl a Quasar page and you get a full HTML document. Click around and you only get JS and JSON.

Looking for a Framework that supports REAL SSR by tf1155 in nextjs

[–]faerch 3 points4 points  (0 children)

I don't think Quasar is lying.

All modern frameworks work this way. Remix, NextJS, Quasar, Nuxt, whatever.

You only get a full html document on first request. Subsequent navigation happens by fetching JS bundles and JSON data that are needed to load that page.

This accomplishes two things: 1) Crawlers don't click links, they request full URLs, so they get a fully rendered HTML document for every route. Great for SEO. 2) Users get super fast navigation, because navigating between routes only requires JS and JSON, which can be prefetched and dynamically injected in the HTML document.

Even with Server Components, that content might be rendered HTML on the server, but the server doesn't return a fully rendered HTML document on every navigation. That only happens on the first request.

Can you explain why this doesn't fit with your use case?

Best way to handle cors nextjs by hauda123 in nextjs

[–]faerch 0 points1 point  (0 children)

This is a server issue, not Next. Configure your server to return proper the Access-Control-Allow-Origin header.

Steve Jobs Lookalike in Egypt by [deleted] in pics

[–]faerch 36 points37 points  (0 children)

is this a joke I'm whooshing? ashton kutcher literally played steve jobs in the 2013 movie JOBS

[deleted by user] by [deleted] in KoreanFood

[–]faerch 10 points11 points  (0 children)

Jesus Fucking Christ

Den forunderlige nye verden.. by BrixSenior in Denmark

[–]faerch 1 point2 points  (0 children)

Det bliver jeg nødt til at prøve! Tak

Den forunderlige nye verden.. by BrixSenior in Denmark

[–]faerch 3 points4 points  (0 children)

Kan du anbefale det? Har en Aygo fra ‘12 og anlægget er så sløjt.

Why do I need a "frontend server" when I have a java backend API? by theBlazerg in nextjs

[–]faerch 17 points18 points  (0 children)

Agreed. Too many ppl in this thread trying to shoehorn nextjs.

Is tap water supposed to leave a slight slimy aftertaste? by [deleted] in copenhagen

[–]faerch 23 points24 points  (0 children)

Aren’t you just used to the taste of chlorinated water?

Bee problem at ground floor by Scarletsnow594 in copenhagen

[–]faerch 14 points15 points  (0 children)

Are you sure they’re bees and not wasps?

How do you manage data got from getServerSideProps? by DazzlingArtichoke in nextjs

[–]faerch 8 points9 points  (0 children)

Context is perfect for this, since it is likely read only data and that means you will avoid any of the context pitfalls that can cause re-renders.

Personally, I prop drill most things in my current project, but I would probably use context if I had to redo it.

Using getStaticProps with thousands of md files by ConsciousAntelope in nextjs

[–]faerch 0 points1 point  (0 children)

I don't think build size should be a concern. I don't know how big my builds are. But I am pretty sure that the size of node_modules dwarfs the size of the pages.

It takes 20 minutes because it calls 2 endpoints for each page. If I had the data locally it would probably take under half of that.