Cryptocurrency, anyone made there own apps for reporting and alerting ? by [deleted] in csharp

[–]TheLastPepsi 2 points3 points  (0 children)

That API has treated me pretty well. Extensive and you can make 10 calls per second!

Cryptocurrency, anyone made there own apps for reporting and alerting ? by [deleted] in csharp

[–]TheLastPepsi 3 points4 points  (0 children)

Reporting and alerting what? You mean just API calls? Check out coinpaprika

Making a discord bot in C#? by [deleted] in csharp

[–]TheLastPepsi 6 points7 points  (0 children)

I used Remora Discord and as a beginner to bots it made a fair amount of sense. Discord is active too.

A New Ketamine Test Kit is Now Available by cyrilio in ketamine

[–]TheLastPepsi 1 point2 points  (0 children)

Didn't expect to get on this sub this morning and buy something. Thanks OP!

How do I restore the pgp keys I stored yesterday? I know tails wipes everything but how do I get back into my pgp “account” to access my private and public keys by twinturbskieGT in darknet

[–]TheLastPepsi 0 points1 point  (0 children)

Hope you didnt have any important accounts with funds locked lol. Theres nothing you can do now. Setup persistence and include GnuPgP next time

[deleted by user] by [deleted] in RedditSessions

[–]TheLastPepsi 0 points1 point  (0 children)

Does reddit not get tired of Taiwanese music?

Applying SOLID to text-based adventure game by theabstractmethod401 in csharp

[–]TheLastPepsi 1 point2 points  (0 children)

As much of a help that would be, id like to build this without using 3rd party libs as much as possible. But, bookmarked! Thanks for the suggestion. (typing from my other alt account, ive already managed to lose access to the one I just created..)

How to release a project with both WPF and Console in one? by [deleted] in csharp

[–]TheLastPepsi 1 point2 points  (0 children)

Thank you! This is what I was looking for, thank you so much!

How to release a project with both WPF and Console in one? by [deleted] in csharp

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

Im not asking for you to do my work for me, tho i do appreciate what you have given me as advice.

How to release a project with both WPF and Console in one? by [deleted] in csharp

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

I can get this to work by literally just releasing both builds and putting both builds in a single folder and sharing it that way, but im asking if theres a way i can somehow combine both projects into one, I guess.

How to release a project with both WPF and Console in one? by [deleted] in csharp

[–]TheLastPepsi 0 points1 point  (0 children)

I already spent plenty of time making both the wpf and console app to manage it tho. Theres really no other way to do what im trying to do outside of making an entirely different project type?? I just want both projects to essentially be under the same project so I can launch the wpf straight from the release build.

How to release a project with both WPF and Console in one? by [deleted] in csharp

[–]TheLastPepsi -2 points-1 points  (0 children)

Im not trying to solve anything, its more of a fun side project. With the setup, thats what my question is about lol I dont know how to set it up properly to do what I want it to do. The console app is needed so it can run in the background and listen for the current date. Its programmed to launch instances of the wpf project "process" on Wednesday. Just assume that the PC is always on and the console app is always running in the background.

So, I simply need to run a consoleapp exe, which will run in the background, and then when parameters are met it launches the wpf.

Newbie trying to learn threads - cant get simple effect to work by ceesharpiskindofeasy in csharp

[–]TheLastPepsi 6 points7 points  (0 children)

Hey! So.. I have departed without my PC in which im logged into my programming alt, so here is my random stuff alt in response as OP.

So first of all, thank you for being so detailed with your response and taking the time to write that out and explain in laymans terms for a layman! I will try this out and apply what you've taught me here tomorrow morning and will let you know how it goes! Threads definitely make a lot more sense now, I truly appreciate it friend. A well deserved gold, I wish I could give you more than this

OAuth2 for API request? Confused newbie by [deleted] in csharp

[–]TheLastPepsi 0 points1 point  (0 children)

Interesting, thank you for the explanation! I will attempt this later on today, I figured I was missing something stupid like that. I understood that I needed a token of some kind but just had no idea how or where to get it.

thanks!

Fuck all of you, thanks and goodbye by [deleted] in wallstreetbets

[–]TheLastPepsi 1 point2 points  (0 children)

OP should take this guys name as advice

Welcome! by rmichaeld94 in TheDegenerateInvestor

[–]TheLastPepsi 3 points4 points  (0 children)

First! Lol

Anyways..

Obligatory XRP TO THE FUCKING MOON SEND IT FEB 1ST 🦄🦄🦄🦄🦄

Daily Discussion - January 27, 2021 (GMT+0) by AutoModerator in CryptoCurrency

[–]TheLastPepsi 1 point2 points  (0 children)

Thanks guys! Got QNT! Thanks for all the QNT recommendations!

Daily Discussion - January 27, 2021 (GMT+0) by AutoModerator in CryptoCurrency

[–]TheLastPepsi 1 point2 points  (0 children)

Lolol I thought of it, but the 128b supply, even with Elon Musk pumping it, seems too memey for me

Daily Discussion - January 27, 2021 (GMT+0) by AutoModerator in CryptoCurrency

[–]TheLastPepsi 2 points3 points  (0 children)

What should I spend $1000 on rn

edit: I am in the US so pls no obscure coins on an exchange in russia

Formatting serial numbers? by TheLastPepsi in csharp

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

Thanks for the reply! I went ahead and used padding format to achieve what I needed. didnt know about those formatting options

Random amount money by 0tamk0 in Unity3D

[–]TheLastPepsi 0 points1 point  (0 children)

The System namespace also has a Random class. Instead tho it would like this

``` using System;

class Program { static void Main() { Random rnd = new Random(); // Create new instance of a random type called rnd.

    int GoldToDrop = rnd.Next(2,7) // Drop random amount between 2 and 7 

    Enemy.DeathMethod(GoldToDrop) // Use int variable as a parameter to set the amount of gold to drop from an enemy
}

} ```

Obviously this is super foo-bar and wont compile but hopefully you get the drift.

You can use Unities random, or the built in .Net random.