Learn languages with Vim!

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

Wouldn’t it be easier to just parse that data from HTML using Chrome Dev Tools? Ie convert to JSON and then JSON to CSV online or something.

vim is cool and all, but it sounds more like a data scrapping problem than macro optimization.

Regardless, I’m really glad I had this video recommended as I didn’t think about learning a language by looking up common words! 🤯👍

McHorsesCreations
Автор

Goated channel// am struggling to learn Italian// any tips, and ty bruv

ismailaf
Автор

what is the language learning program called?

xcommissar
Автор

It took me two minutes to write this code. Just use the dev tools:

elements = => node.innerText)
csv = ""

for (let i = 0; i < elements.length; i += 3)
csv += `${elements[i]}, ${elements[i+1]}, ${elements[i+2]}\n`

console.log(csv)

pu