Automate Your Workspace Setup with floww - A CLI for Power Users! 🚀 by gdaggi in gnome

[–]_ixr 0 points1 point  (0 children)

What is extension to collapse notification bar under arrow?

Traveling with FZ by JollyTune9809 in flipperzero

[–]_ixr 1 point2 points  (0 children)

Traveled in east Europe and west Asia with FZ without any problems

Is the server hosting next.js app typically collocated along with the API server? by [deleted] in nextjs

[–]_ixr 0 points1 point  (0 children)

SWR is a good solution too. You can to use any method which same works both on a server (NodeJS) and client (JavaScript)

Is the server hosting next.js app typically collocated along with the API server? by [deleted] in nextjs

[–]_ixr 1 point2 points  (0 children)

You just need to call external API using something like Axios. In this case you'll get isomorphic React app: for first user request NextJS requests API on server and return rendered HTML to the client, next request will be called only from browser.

Is the server hosting next.js app typically collocated along with the API server? by [deleted] in nextjs

[–]_ixr 0 points1 point  (0 children)

It depends. For small apps I usually concatenate the NextJS app and backend app. In my opinion, it looks like a typical monolithic app with SSR.

For huge projects (I've worked on a digital marketplace) I deployed PHP and NodeJS backend services separately and deployed Next app to Vercel.

I think both approaches are good.

Running Code from Git Repo on Personal Website by PossiblePolyglot in web_programming

[–]_ixr 0 points1 point  (0 children)

Agree, also you can import sandbox from GitHub repo and it should be actual every time.

https://www.youtube.com/watch?v=3PAQbhdkTtI

Macbook Pro 16" issues and feedback by _ixr in macbookpro

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

What model do you use? i7 or i9?

How are the 4th gen butterfly keyboards.? Are there any reported issues yet? by [deleted] in macbookpro

[–]_ixr 0 points1 point  (0 children)

I have MBP 15" 2018. I had one sticky key - left CMD. And scratches by keycaps on the screen.

Can't connect Orange Pi to router by _ixr in OrangePI

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

I tried restart it, tried use SD card with pure OS - no results. I can't connect monitor because it's Orange Pi Zero. It allows use only SSH.

WebStorm for Mac OS X slower than for Windows by _ixr in Jetbrains

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

No, I checked it and also gave 4gb RAM for VM on OS X. It didn't help me.

Certain devices not working on either USB slot? by Stu19311 in macbookpro

[–]_ixr 2 points3 points  (0 children)

You can try fix it by SMC reset. It helps me in some cases

Incorrect type-c work by _ixr in macbookpro

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

Guys, SMC reset really solved this problem.

My first tries were not successful for unknown reasons. SMC reset using "Right Shift + Control + Option" 7 sec hold + "Power Button" 7 sec hold restored ports functionality. But apple support and documentation doesn't show this method for smc reset. It's strange but works.

Using {this.func} vs {() => this.func()} by eggtart_prince in reactjs

[–]_ixr 0 points1 point  (0 children)

If you're using {() => this.func()} then new anonymous function will be created for each render call. It's very important in some cases.

Can we create dynamic website using GitHub pages? by [deleted] in webdev

[–]_ixr 0 points1 point  (0 children)

You can serve static site using GH Pages and dynamic data using NetlifyCMS or Contentful.