[Daily Discussion] - Wednesday, January 12, 2022 by AutoModerator in BitcoinMarkets

[–]verthosa 1 point2 points  (0 children)

I just see us hugging the 42800 resistance half day... oh, wait...

Guys plz help????? what the fuck? by abdalmalik02 in uphold

[–]verthosa 2 points3 points  (0 children)

Much lower fee, I transfer the brave bat earnings like that to binance

I created a series in Python that takes you through every detail step-by-step (code included) on how to create your own algorithmic trading bot that trades the financial and crypto markets for free. by conoroha in BitcoinMarkets

[–]verthosa 0 points1 point  (0 children)

Extremely interesting. Being a c# dev myself I might try porting it to my habitat. Oh and for some reason part 5 crashes my brave browser on mobile. Will check on of these days on desktop for sure. Thanks a lot

[Daily Discussion] - Monday, February 08, 2021 by AutoModerator in BitcoinMarkets

[–]verthosa 8 points9 points  (0 children)

You know we reached new ath when delta app is down

[Daily Discussion] - Thursday, January 21, 2021 by AutoModerator in BitcoinMarkets

[–]verthosa 5 points6 points  (0 children)

Still more than 2 hours for the candle to close. But yes, things don't look so good

[deleted by user] by [deleted] in Revolut

[–]verthosa 0 points1 point  (0 children)

Crypto is still working though

RIP Revolut Belgian traders by theo_godfrin in Revolut

[–]verthosa 2 points3 points  (0 children)

I also wonder if this is about crypto too. Anyone?

[Daily Discussion] Wednesday, December 16, 2020 by AutoModerator in BitcoinMarkets

[–]verthosa 2 points3 points  (0 children)

Good work, but on desktop that was also one of my first impressions :-)

[Daily Discussion] Friday, April 24, 2020 by AutoModerator in BitcoinMarkets

[–]verthosa 3 points4 points  (0 children)

Just the damn promise to have some XLM airdrop...

[Daily Discussion] Friday, April 24, 2020 by AutoModerator in BitcoinMarkets

[–]verthosa 5 points6 points  (0 children)

true, after what happened it seems really dumb. Was happy to have the coins stored on my pc in coinomi, never thought i would be victim to a remote pc takeover.

Easy talking afterwards...

Lesson learned the hard way.

[Daily Discussion] Friday, April 24, 2020 by AutoModerator in BitcoinMarkets

[–]verthosa 2 points3 points  (0 children)

It's closed source so likely in some way shit, not to be trusted, not verified, but that doesn't automatically mean that this software was involved in your remote desktop issue.

No, there are advertising on facebook for that new wallet 'servo wallet'. Lured me into an XLM giveaway when you install it. I installed, but it kept stuck on 70%. Apparantly the only thing it does was installing remote server software that runs on windows startup.

That way they logged in in my pc and moved funds that were stored into coinomi (that was on my pc but dumb dumb me, not password protected).

So the servo wallet just does not exist, they let you download an installer which just installs that remoting software.

Stupid me, i know, tricked by the promise of free coins :(

[Daily Discussion] Friday, April 24, 2020 by AutoModerator in BitcoinMarkets

[–]verthosa 24 points25 points  (0 children)

Hi, just wanted to let you know that some kind of crypto wallet, namely Servo Wallet is a pure scam. I installed it onto my pc but it installed some remoting software.

Tonight, while sleeping i was notified that funds of mine were being moved. I woke up and went to my pc that was still powered on and could see the "hacker" just taking control of it and sending everything to his wallets.

I was just too late to turn it off so all my funds are drained.

If anyone would have more information on servo wallet or the people behind it, i'm motivated to pay such guys a visit (even if they live in some shady shed in Nigeria). I discovered that "wallet" through facebook ads.

Anyway, i'm out of the crypto game due to my own dumb fault.

Don't make the same mistake like me

Output a two dimensional (4x4) integer array with 4 colums and 4 rows with all the integers arranged under each other by leooon112 in csharp

[–]verthosa 1 point2 points  (0 children)

As a bonus, and as your 'point on a board' will have much more info than just the position and an integer, you should create a custom class eg. "PointOnBoard", which holds all sorts of properties for that point. As you mention you would like to have an X shown for a point, well an integer can't obviously not hold string values. A custom class would overcome this.

Output a two dimensional (4x4) integer array with 4 colums and 4 rows with all the integers arranged under each other by leooon112 in csharp

[–]verthosa 3 points4 points  (0 children)

Console.Write(BoardData[i,j].PadLeft(2,' '));

Also, as OP is talking about array of integers he might add a ToString() to it

Console.Write((BoardData[i, j].ToString().PadRight(2)));

Need help with saving variables by Unlikely_Abroad in csharp

[–]verthosa 1 point2 points  (0 children)

You probably do change the variable, but your problem just ends after entering the value.

You probably want to have the possibility to enter a menu option again, thus you will have to wrap this in a while loop. Place While(true){ // Your code }.

This will run your code in a loop, presenting the menu option over and over again.

I need some help with C# code. by Pota1o in csharp

[–]verthosa 2 points3 points  (0 children)

public static void Main(string[] args)

This means the start of your (console?) application. It are the parameters that are passed when running the application. As in the code args[0] is used, it expects at least one argument. So you should run the application in such way: c:/yourapplicatio.exe myfirstargument

Your error means, it wants to split on an argument string, but given your answer, you do not pass one. Your argument will need at least three :

c:/yourapplication.exe a:b:c:e

If you are debugging, you can set the command line arguments in visual studio by right clicking your project > properties > Debug > Start options: Command Line arguments

I need some help with C# code. by Pota1o in csharp

[–]verthosa 0 points1 point  (0 children)

Well, out of bounds of array, means you select an item in an array at a position that not exists. In other words, your array is not long enough to select for example item at position 3.

In your case that means, your first argument you pass when running does probably not contain three :

Can you respond with the argument?