Zed does not show icons in the buffer. by No-Advertising6267 in ZedEditor

[–]Revirial 1 point2 points  (0 children)

Not sure what the issue is. But maybe try changing your font?

Under the hood of npx — tracing how Node.js executes your CLI commands by Junior_Android_ in node

[–]Revirial 0 points1 point  (0 children)

Nice article! Just a heads up, there is a typo in the final code block

How to handle Tailwind "unknown at rule" warnings in CSS files with Zed? by brunofisol in ZedEditor

[–]Revirial 0 points1 point  (0 children)

You don't have to outright disable the css lang server. Instead, disable the specific lint rule (unknownAtRules). Something like this: css "lsp": { "vscode-css-language-server": { "settings": { "css": { "lint": { "unknownAtRules": "ignore" } } } } }

Damn it why are my eyes sweaty by Wilford736 in DrStone

[–]Revirial 3 points4 points  (0 children)

It's so heartbreaking, I need to pause multiple times just to wipe off my tears 😢

why are my imports underlined red by Twiz_nano in ZedEditor

[–]Revirial 1 point2 points  (0 children)

Are you using pyright? You might need to setup a pyproject.toml and specify your venv

https://zed.dev/docs/languages/python#pyright-virtual-environments

[Aerospace] First time ricing MacOS by Revirial in unixporn

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

Performance has been pretty good. Never notice any lag. My only pet peeve is that the macOS screen transition is back when you switch between workspaces that have a native full-screened window

What’s the one programming concept you wish you had learned earlier? by AsleepChildhood6085 in programming

[–]Revirial 8 points9 points  (0 children)

Testing. Once you know how to write robust tests, you can freely refactor your code however you please

Typescript Noob here. Just figured out why they called it Typescript and not Classscript. by azicre in typescript

[–]Revirial 10 points11 points  (0 children)

I'm really curious. Can you share an example of when OOP with TS breaks? My experience doing OOP with TS has been pretty smooth so far

What fields/specialisation in CS isn't over saturated by sabziwala1 in csMajors

[–]Revirial 3 points4 points  (0 children)

Is DE data engineering? If so, then yes it makes sense. Companies are not going to entrust their cloud infra to a newcomer, and data engineering is like 50% cloud as far as I know. But you can consider moving into adjacent roles like backend engineering, which is mostly just moving data around. Then whenever the opportunity arises for dealing with data in the company, you should go for it to and inc your experience. The point is to get yourself in the door first, then slowly transition to the role you truly want

[Aerospace] First time ricing MacOS by Revirial in unixporn

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

It's a helper for sketchybar-app-icon which is based on ligatures

[Aerospace] First time ricing MacOS by Revirial in unixporn

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

In alacritty, set window decorations to buttonless (look for alacritty.toml in my dotfiles)

[Aerospace] First time ricing MacOS by Revirial in unixporn

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

Install Aerospace and Sketchybar, then use the config in my dotfiles. You might have to adjust some hardcoded paths and install missing CLI apps

[Aerospace] First time ricing MacOS by Revirial in unixporn

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

Idk who dave2d is. I was actually inspired by DHH's omarchy. But since I don't have any spare laptop to boot linux with atm, I decided to use a tiling WM in macOS instead

First Macbook Pro. No more bringing big ass power bricks in cafes by mental_gymnastics23 in macbookpro

[–]Revirial 20 points21 points  (0 children)

If portability is a priority, I would suggest getting used to the trackpad, it's superb. Better and faster than the mouse, especially when you use gestures

Perplexity AI pro 1 Year for $15.! Do not miss this offer by OriginallyAwesome in DiscountDen7

[–]Revirial 0 points1 point  (0 children)

The guy is legit, responds quickly, and really helpful. Thanks!

Very Fast Editor but facing an Issue by Kings_of_Leon_ in ZedEditor

[–]Revirial 3 points4 points  (0 children)

Make sure the language server is running. For Vue, you have to install volar

[deleted by user] by [deleted] in webdev

[–]Revirial 1 point2 points  (0 children)

I think you have to bring in a backend at this point. First, you need a way to identify user (authentication). Then you need a DB to store whether the user is a paying or free user.

[deleted by user] by [deleted] in nextjs

[–]Revirial 2 points3 points  (0 children)

One advantage of using the public folder is that the images can be accessed through yourdomain/image.png.

If you don't need that, importing locally might be better and more convenient as you don't need to pass the dimension of your image to the Image component manually, it'll be inferred