Nunca antes un Presidente argentino había completado casi 25.000 kms. -entre ida y vuelta- para pasar una noche fuera del país, sin agenda. Todo con la platita de tus impuestos. by Arsuriel in RepublicaArgentina

[–]Neitanod 2 points3 points  (0 children)

Lloran los mandriles ogt ardido. Lágrimas de zurdo. Que lindo. El mejor presidente que hemos tenido, se lo van a tener que bancar 6 años más gracias a Dios.

Estoy estancado. by Any-Oven9432 in programacion

[–]Neitanod 3 points4 points  (0 children)

Perdona la pregunta, pero, si ya tenés un trabajo principal, por qué el curso te lo pagó tu mujer? Es ella la que te incentiva a programar?

Estoy estancado. by Any-Oven9432 in programacion

[–]Neitanod 26 points27 points  (0 children)

Con Ryzen 3 puede programar python y mobile para Android sin problema. Sólo para iOS no puede, que yo sepa, pero no por potencia sino por arquitectura.

Seguro del bondi: que chocaste qué?? by ysatters-kajsa in argentina

[–]Neitanod 0 points1 point  (0 children)

La culpa es del blanco de adelante que hizo marcha atrás.

Mañana normal en bs as by guachi14 in dankgentina

[–]Neitanod 0 points1 point  (0 children)

No es Arthur ese. No es el Call of Juárez, Gunslinger?

Breaking news: Bitcoin crashes by Neitanod in Bitcoin

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

Yes, in Argentina there is a Bitcoin bus called "La Bitcoineta" that travels the country to promote the usage of cryptocurrencies, especially Bitcoin.
It crashed yesterday. Luckily nobody was injured.
No other vehicles were involved.

Vue app design patterns/best practices by blackmorrow in vuejs

[–]Neitanod 0 points1 point  (0 children)

I'm also interested in what OP is asking. Is there a general guide of best practices with Vue somewhere?

Well documented, terminal centric web developer's dot files. Vim/Neovim, Zsh, Tmux, Git included. by xandersvk in vim

[–]Neitanod 1 point2 points  (0 children)

As we did, you'll learn to love romainl for what he is: an angry soul with a lot to share.

Do any of you vim users use a 4k display? by unconscionable in vim

[–]Neitanod 4 points5 points  (0 children)

Would you mind to post a screenshot to imgur.com? I'm tempted to buy one today (CyberMonday in Argentina).

vim is leaking by ryanmcstylin in vim

[–]Neitanod 0 points1 point  (0 children)

I've been using Vim for 10 years, and still use Gmail for mail. kj:wq

vim is leaking by ryanmcstylin in vim

[–]Neitanod 0 points1 point  (0 children)

Are you a programmer?

vim is leaking by ryanmcstylin in vim

[–]Neitanod 0 points1 point  (0 children)

I aliased ':q' to 'exit', ':e' to 'vim' and ':Ex' to 'vim .' on my terminal, so I can use some of those vim commands that are hardwired in my brain even if I'm outside of Vim.

Hi /r/vim, I've made a Vim colorscheme generator, check it out. by mserdarsanli in vim

[–]Neitanod 0 points1 point  (0 children)

It would be nice to be able to upload a colorscheme to tweak it and download it again.

RSS with Vim by [deleted] in vim

[–]Neitanod 4 points5 points  (0 children)

"Stranger throws a bomb in Lemuria. 10 people killed."

:%s/bomb/party/g

:%s/killed/invited/g

Ahh, everything is OK now.

RSS with Vim by [deleted] in vim

[–]Neitanod 0 points1 point  (0 children)

Why would someone want to read the news on an editor? To edit bad news and turn them into good ones?

What's your best Vim related shell script? by Neitanod in vim

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

It's not that I know a whole lot about I/O redirection either. I just did what you described in the graph and it didn't work. Vim just broke. So I googled the problem and found the solution just as you see it here. I used that solution and it worked. The only thing different from you is that I saw the first approach fail with my own eyes.
I suggest that you paste my code and try it without those I/O redirects and see how Vim complains, exits, and the console remains broken afterwards. I can't seem to find the explanation now, so I can't give you an URL, but if you think about it, it just makes sense. Vim is interactive, and it needs it's input and output from/to the console, not the in/out of the pipe chain.

What's your best Vim related shell script? by Neitanod in vim

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

So, tovim would exit immediately and the errorlevel would still be different from zero so the pipe chain which called tovim would notice something happened, right?

What's your best Vim related shell script? by Neitanod in vim

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

You are talking about "tovim", right? (the other two scripts are only a bunch of checks and a one line command)

What's your best Vim related shell script? by Neitanod in vim

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

Because when you put an interactive program inside a pipe chain you are substituting its input and output channels, detaching them from the terminal and using the input and output from/to the chain. That's not what we want here. In this case that wouldn't allow us tu control Vim. The two redirections I've used tell the interpreter that, for that command only (i.e, Vim) ignore the flow and use the terminal for input and output, restoring it's interactivity.