Readit News logoReadit News
stasgavrylov commented on AstroNvim is an aesthetic and feature-rich Neovim config   github.com/AstroNvim/Astr... · Posted by u/olalonde
skippyboxedhero · 3 years ago
I just used https://github.com/nvim-lua/kickstart.nvim. I did have my own config but I had it across multiple files and this one is simpler.

Astro is more of an attempt to replicate the full IDE experience. You can just copy-paste the above, and you are going (personally, I don't think nvim should be used like a full IDE, you really don't need the file tree or tabs, nvim has a better system than this).

stasgavrylov · 3 years ago
As an amateur vim user, may I ask what is the alternative to using file trees or tabs?
stasgavrylov commented on Ask HN: Who wants to be hired? (November 2022)    · Posted by u/whoishiring
stasgavrylov · 3 years ago

  Location: Ukraine
  Remote: Yes
  Willing to relocate: No
  Technologies: TypeScript/React, JavaScript, HTML, CSS, Jest, Node.js, and all other parts of modern frontend stack.
  Résumé/CV: https://drive.google.com/file/d/19a7Wi_AIN_Z3BvJFVtAJPDKcD-m4XmZC/view?usp=sharing
  LinkedIn: https://www.linkedin.com/in/stasgavrylov/
  Email: stasgavrylov@gmail.com
Senior frontend engineer / lead with 7+ years of broad experience. For the last 6 years I've been building SPAs in React (mostly) for startups and enterprises, leading and owning frontend development on most of the projects.

I'm looking for a full-time remote position in a tech-oriented startup (preferably). Also, possibilities to grow to full-stack are welcome.

stasgavrylov commented on Ask HN: Who wants to be hired? (October 2022)    · Posted by u/whoishiring
stasgavrylov · 3 years ago

  Location: Ukraine
  Remote: Yes
  Willing to relocate: No
  Technologies: TypeScript/React, JavaScript, HTML, CSS, Jest, Node.js, and all other parts of modern frontend stack.
  Résumé/CV: https://drive.google.com/file/d/19a7Wi_AIN_Z3BvJFVtAJPDKcD-m4XmZC/view?usp=sharing
  LinkedIn: https://www.linkedin.com/in/stasgavrylov/
  Email: stasgavrylov@gmail.com
Senior frontend engineer / lead with 7+ years of broad experience. For the last 6 years I've been building SPAs in React (mostly) for startups and enterprises, leading and owning frontend development on most of my projects.

I'm looking for a full-time position in a tech-oriented startup (preferably). Also, possibilities to grow to full-stack are welcome.

stasgavrylov commented on A Modern JavaScript Tutorial   javascript.info/... · Posted by u/ivanche
OpuRahman · 5 years ago
Needs to be updated on a regular basis.
stasgavrylov · 5 years ago
It's open source and they're actively looking for contributors.
stasgavrylov commented on How to manage HTML DOM with vanilla JavaScript only?   htmldom.dev/... · Posted by u/velmu
drdec · 6 years ago
Your proposed changes are not supported in IE 11. The snippets are advertised as IE 11+ compatible on the landing page.
stasgavrylov · 6 years ago
You're correct, but let/const don't have full support in IE11 either. I understand that people are still supporting IE, but still, this website could stay relevant longer if the examples were written in ESNext.
stasgavrylov commented on How to manage HTML DOM with vanilla JavaScript only?   htmldom.dev/... · Posted by u/velmu
stasgavrylov · 6 years ago
Great resource. I'm wondering whether the examples are your own or copied from across the web?

I just wanted to point out that some of them are a bit outdated, and I belive it'd be nice to maintain this list as a reference with modern approaches.

For example, there's no need to use `appendChild`, because DOM today has a more versatile `append` method.

And `[].forEach.call(cols, function(col) {...}` would look much better and more declarative as `for (const col of cols) { ... }`.

These are just first 2 examples that I noticed.

u/stasgavrylov

KarmaCake day3January 25, 2017View Original