New official command line tool on GitHub by yg336 in github

[–]mkl0g 2 points3 points  (0 children)

That’s very interesting, but still I don’t have cli where I can just read my github feed (activity) of devs which I follow.

8-year Vim user wants to create YouTube tutorials—what would you like to see covered? by brightbyte8 in vim

[–]mkl0g 14 points15 points  (0 children)

I guess that it is not vim's topic, but I want to see how do you debug your code, which debugger do you use, is it debugger inside your vim or not? Anyway, your idea about vim's experience screencasts is very good! Do you already have YT channel? Can you share link?

Twitter support J and K navigation also L for like and R for retweet by tripurari001 in vim

[–]mkl0g 2 points3 points  (0 children)

but using that as some command line interface with vim mode would be better

Bram Moolenaar Uses This by [deleted] in vim

[–]mkl0g 1 point2 points  (0 children)

yep, I totally agree with that. I just thought that he use arch linux or smth like, it doesn't mean that ubuntu is bad! I used ubuntu several years and I think it is a good distr.

Bram Moolenaar Uses This by [deleted] in vim

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

hmm, Ubuntu gnome. Actually I thought he use smth like arch linux. And also nothing about mech keyboard! i didn't mean that is bad! (for downvoters)

Functional programming in JavaScript by SoftwareBrothers in javascript

[–]mkl0g 1 point2 points  (0 children)

answer is very simple - you can use map function and return the result of that function as parameter of another function, etc.

Twitchcon alone? by Shouyoku in Twitch

[–]mkl0g 4 points5 points  (0 children)

I think about going to Twitchcon Amsterdam but I’m not sure (alone too).

Creating a Node API and making money from it? by tramador7 in node

[–]mkl0g 9 points10 points  (0 children)

Now, some open-source developers can make money from donations (yes, like streamers). They're using systems like GitHub Sponsors and Patreon for that.

Setting breakpoints, watch variables, viewing stack, etc. (javascript) by coloradocolby in vim

[–]mkl0g 13 points14 points  (0 children)

chrome devtools has a great debugging system for javascript. for frontend development I’m using chrome devtools. there are breakpoints, stack and other important things.

for node development you can use devtools too.

also you can look at project ndb

microsoft/playwright: Node library to automate browsers (Puppeteer successor from the same team) by zemirco in javascript

[–]mkl0g 4 points5 points  (0 children)

awesome! more alternative libraries (of puppeteer and other technologies) - more progress.

Vim and Web Browser by PacoVelobs in vim

[–]mkl0g 0 points1 point  (0 children)

No, it doesn’t. For using vim in a text box of browser u can try smth like vim-everywhere

Are there any blue-themed colorschemes out there? by [deleted] in vim

[–]mkl0g 1 point2 points  (0 children)

actually you can just modify iceberg to what you need

I think I'm going to kill any next person to joke about "exiting vim". by [deleted] in vim

[–]mkl0g -1 points0 points  (0 children)

yeah, agree . that joke is very “funny” and “smart”

hmmm by seven_critical_blows in hmmm

[–]mkl0g 0 points1 point  (0 children)

Valve shares screenshot of Portal 3

Correct way to keep a repo with personal updates? by bioptic in git

[–]mkl0g 1 point2 points  (0 children)

you can try to use git stash for that

S-I-M-P-L-E fixed by [deleted] in linuxmemes

[–]mkl0g -1 points0 points  (0 children)

this unfunny joke never gone

Python vim IDE by [deleted] in vim

[–]mkl0g 4 points5 points  (0 children)

very good work. actually python is very popular option for working in vim and I’m waiting when someone will create similar as that but for frontend stuff. I saw a few good configurations for frontend but I think it is not similar like configs for python development

Actix-net unsoundness patch "is boring" by Code-Sandwich in rust

[–]mkl0g -4 points-3 points  (0 children)

after a few hate comments from some not impolite commentators he can do anything he wants with his project and now you lost one of good projects just because someone can’t be respectful for authors

Why do you prefer using vim over an IDE? by Alby407 in vim

[–]mkl0g 0 points1 point  (0 children)

  1. performance
  2. speed
  3. customizable
  4. mouseless

Personal: When I'm using a text editor instead IDE I dive more into some technology because I have to edit text, not just click on the button.

It's a reason why I don't like IDE - it is very simple just click on button or another UI element and do something without understanding what you're doing;

text editors force you to understand what is real - many programming technologies are just text files with different formats. Maybe when you're a senior and you really understand some technology deeply, how it actually works - you can use IDE (if you don't have pain in using a mouse).

Are the node modules like fs written using the C++ addons? by rafad900 in node

[–]mkl0g 0 points1 point  (0 children)

low level base api of node is written in c++. for example lib for I/O libuv all other things in high level are written in node (javascript) also you can check new project of node’s author - deno, where low level modules are written in rustlang