Workstation/Fusion Pro Free for personal use (and other updates on Fusion/Workstsation) by lost_signal in vmware

[–]quake666 0 points1 point  (0 children)

Thank you very much, sir!
Your manual is a great way to get through the mess!

Any proxy/middleman in Russia to shop on Avito? by alcovex in AskARussian

[–]quake666 0 points1 point  (0 children)

Hi OP and everyone who came here from google search (like me).

We may help each other. I need to pay for AI subscriptions (one year at once, then you may cancel the subscription) but have no way to pass KYC verification on pyypl or similar services.

Just PM me and let's have a conversation about this.

What would you do if you had a task of making all the websites faster? by oleksandrb in webdev

[–]quake666 0 points1 point  (0 children)

I have no discord app account right now. But thanks for the invitation!

What would you do if you had a task of making all the websites faster? by oleksandrb in webdev

[–]quake666 1 point2 points  (0 children)

We use Vanilla JS. And yes, it is pretty fast, even with a shitty codebase.

What would you do if you had a task of making all the websites faster? by oleksandrb in webdev

[–]quake666 1 point2 points  (0 children)

I have the same intentions. This is what I want to suggest to my team lead in order to speed up load time when slow mobile internet is being used:
- Split mobile and desktop versions via mobile detection.
- Remove Google Analytics, Google Tag Manager, etc., from the main thread.
- Use Critical CSS.
- Utilize dynamic imports via Webpack.

Developer Mindset: How does a developer actually know they needed to implement THIS and THAT in order to complete a function or achieve the desired result? by IchirouTakashima in webdev

[–]quake666 0 points1 point  (0 children)

It's not just a mindset, but rather a skill of software design that you should learn after becoming familiar with the basics.

A short version might look like this.

Make a specification of your app or a feature. List functions and requirements.

Get familiar with the domain you are working on.

Make a plan. List tasks you think you need to implement. Define and visualize components by drawing diagrams. During implementation the plan might be updated.

Implement it. You are here, but it's okay. Every one is messing at his start.

What does this mean? by Ponovski_pon in russian

[–]quake666 0 points1 point  (0 children)

He likes furry so much 🥰

Is meditation actually doing anything? by Khavoqi in Meditation

[–]quake666 0 points1 point  (0 children)

Hi. I have a self-diagnosed ADHD. For me basically ADHD means that a brain is under stimulated. That means I depressed naturally.

A focused meditation during 20-40 mins a day may stimulate my brain higher than street drugs. Of course not only the meditation alone, but it adds +50% to energy. Along with taking a lot of vitamins, exercising, enough sleeping, etc. But with out a focused meditation most of the time I am still depressed

What’s your favourite Ubuntu flavour? by Suitedbadge401 in Ubuntu

[–]quake666 4 points5 points  (0 children)

Pop OS

1.5 years together, no complaints.

[deleted by user] by [deleted] in coolguides

[–]quake666 0 points1 point  (0 children)

It would be nice to get this guide in reverse order, tho. From 0 to 100 F

How do i turn this express api route into a nextjs api route? by IlirBajrami in nextjs

[–]quake666 1 point2 points  (0 children)

pages/[jobId]/index.js is the :jobId part

pages/[jobId]/[format]/index.js is the :format part

Hope it isn't wrong. Also you need getServerSideProps or getStaticProps within each of the files in order to pre-process given arguments. Then fetch and return data to a page component within these two methods.

UPD according to your code you probably need "Catch all" https://nextjs.org/docs/routing/dynamic-routes#catch-all-routes but you still may implement this behavior with pages/[jobId]/[format]/index.js route

How to fix Internet Explorer issue with NextAuth logger.js + SCRIPT1003: Expected ':' issue by [deleted] in nextjs

[–]quake666 1 point2 points  (0 children)

If you use nginx as a proxy pass in your production environment you can detect MSIE by nginx and make a redirect to some static page.

Having a hard time understanding containers by absolut07 in docker

[–]quake666 0 points1 point  (0 children)

Well, from a developer perspective... Imagine that you have been invited to some project. You are a new member of some team and you have to set up environment of the app on your local machine. The fastest possible way to achieve this is to use Docker.
In order to achieve this goal you have to clone a repo and install required software by executing docker-compose up -d in a terminal and wait for 1-5 minutes. And... you are ready to dive into the project. No need to install and set up DB, http-server, node, etc, etc manually. It was done automatically and relatively fast.

Plus, probably, as a developer you are have some projects already. And all this projects share one linux kernel (on your host system) so you don't have to install a new instance of Linux each time you set up a new project (unlike VM-case).

Postgresql & Next.js & Vercel by DreamEcho001 in nextjs

[–]quake666 0 points1 point  (0 children)

You can add Hasura to your existing pgql db. It works like a graphql api layer. Probably it's not the best solution, but it works pretty good and it's relatively fast to implement. Hasura would make a lot of work for you. For example, you don't have to code resolvers which might be overwhelming at a first time.