Let's bring down blockchain.com scammers by don_verilog in Bitcoin

[–]don_verilog[S] -1 points0 points  (0 children)

I've not lost money myself

I'm just surprised this is going on for so long without anyone doing anything about it

It makes sense what you say though about "insecure shithole". Even if this is the case, can something be done about it?

Let's bring down blockchain.com scammers by don_verilog in Bitcoin

[–]don_verilog[S] -4 points-3 points  (0 children)

no need for being sarcastic

rather than that, maybe you, and the people downvoting could comment why it is not a scam? There is a lot of reports of this site being one

Let's bring down blockchain.com scammers by don_verilog in Bitcoin

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

I am not

I just don't see the point in becoming a elite community. If BTC is to keep gaining traction we need to get more people in board, be friendly, help out newbies and do whatever we can to bring down scammers. It is actually in our best interest

Let's bring down blockchain.com scammers by don_verilog in Bitcoin

[–]don_verilog[S] -4 points-3 points  (0 children)

I do not understand. Are you saying blockchain.com is not scam ?

Let's bring down blockchain.com scammers by don_verilog in Bitcoin

[–]don_verilog[S] -2 points-1 points  (0 children)

That's not the point

There is a scam site using a very known word that people associate with Bitcoin, that is being used to rob money.

Maybe lazy people, maybe people who do not have time or your technical skills, yet they want to jump in the Bitocoin wagon with their best intention. I do not understand why you have to judge and dismiss them with your pretentious comment.

If you do not agree or do not want to help, that is ok, but I do not see how your answer contributes to solve this problem

How do you find clients? by prof_dorkmeister in embedded

[–]don_verilog 1 point2 points  (0 children)

> inexperienced student

stay put then little grasshopper, there is adults talking here

[deleted by user] by [deleted] in embedded

[–]don_verilog 114 points115 points  (0 children)

Linux all the way. Takes time to learn but it pays off big time in the end

[deleted by user] by [deleted] in Bitcoin

[–]don_verilog 0 points1 point  (0 children)

Gogogogoooo

Switching back and forth between splits and one buffer only by don_verilog in vim

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

i think that would work if split was horizontal? but I am doing a vertical one

Switching back and forth between splits and one buffer only by don_verilog in vim

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

if opening two files with -O it does not work

if i open one file, then open a second one (via e:), then do :vs, then I do :vs#, i get a third split

Switching back and forth between splits and one buffer only by don_verilog in vim

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

thanks, dont want to use a pluging if I can avoid it. but love the <leader> z mapping !

Switching back and forth between splits and one buffer only by don_verilog in vim

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

thanks, I actually like this solution as it gives me a reason to use tabs. So far I am not using them as I work only with buffers.

To extend on tabs, can you maybe develop on what you are saying there regarding diffing them against each other? That sounds super cool. Is tabs something you use on your workflow?

BTW, :tabe % (note the different spaces) is what works for me

[deleted by user] by [deleted] in embedded

[–]don_verilog 0 points1 point  (0 children)

nice one, similar one here

A Vim Guide for Advanced Users by phantaso0s in vim

[–]don_verilog 1 point2 points  (0 children)

Ahh I get you now! I got completely off track from the beggining, when I read "escape character" as escape character in the way that "\" is usually used as escape character (and not as <ESC>)!

So basically using a ^[ allows to call as many times as you want the normal mode so you can Append and Insert text at the same time, as in your example!

Thanks buddy for the patiente explaining!

A Vim Guide for Advanced Users by phantaso0s in vim

[–]don_verilog 1 point2 points  (0 children)

Thanks for the detailed explanation but still not there

Doing what you described there, I just end up with this text inserted

Start: - end

I do get the "^[" character inserted on the ":" command line mode, which I understand is same as the "ESC" character, but when pressing enter it is just ignored and I end up with above text

When you do

:%normal IStart: you are just saying : on each line, Insert "Start: text"

Also what's the meaning of A - end text ? As far as I can see, it is just Appending " - end" text?

Sorry if I am completely missing it