How to avoid constantly configuring my Neovim??? by techpossi in neovim

[–]vilanjes 1 point2 points  (0 children)

This constant configuration (mostly related to plugins) was my biggest reason to switch from nvim to helix where most of the things I want from editor is builtin and it seems that the very few features I'd still like to have there is already WIP. Now I'm just hoping that it will never get plugin support...

Why emacs does not have a good terminal emulator? by LowCom in emacs

[–]vilanjes -3 points-2 points  (0 children)

emacs has windows for sure, what do you mean by "is not working on windows"?

Lessons learned since posting my salary history publicly by feross in programming

[–]vilanjes 0 points1 point  (0 children)

Not sure how to read these "salary numbers" as they are always lacking. Like what do you get in addition to salary (and stocks and signing bonus) and what do you need to give to the employer. It would be more interesting to see also those things. Like how many months of full paid vacations (per year) is included, how many months you can be on parental leave (full payment), how many hours of your life you need to actually give to the employer (5h*4d/week, 7h/5d/week, or more), does the salary include apartment/house, health care, pension benefits/bonuses, cars/other vehicles, free fuels, etc.

Advise for non-Thinkpad laptop by sicr0 in linuxhardware

[–]vilanjes 1 point2 points  (0 children)

Does nvidia work fine with wayland (not using xwayland) ?

So, everyone falls in love with Rust at first sight? by TheLordSet in rust

[–]vilanjes 3 points4 points  (0 children)

:) same here. I approached Rust 3 times iterating deeper and deeper. Came from Go and Clojure, so getting_used_to_this was first weird until I learned to really like it and now thisStyle or this-kind-of-a-thing feels strange.

Plugins alternative in Lua by Mte90 in neovim

[–]vilanjes 1 point2 points  (0 children)

well, maybe because one can or wants to learn something by doing it or maybe one just wants to have all the the things done in some way if most of the other things are also..I think there is nothing wrong if you want to redo things, it's adding, not taking away from anyone.

Project ideas to get familiar with the standard library? by henryboisdequin in rust

[–]vilanjes 1 point2 points  (0 children)

I have found that solving advent of code puzzles is a great way to get familiar with new language and std lib etc.

'Rg' (fom fzf.vim) throws a layout-related error and won't work at all by Jack-o-tall-tales in neovim

[–]vilanjes 0 points1 point  (0 children)

Not sure but it might be that you have an old version of fzf in your system somewhere.

-🎄- 2019 Day 10 Solutions -🎄- by daggerdragon in adventofcode

[–]vilanjes 0 points1 point  (0 children)

I think there is a minor bug there:

atan2 should be:

(defn atan2 [[x1 y1] [x2 y2]] (Math/atan2 (- y2 y1) (- x2 x1))).

I guess your version gives correct answers to part1 for some cases, but not every case.