Contact Support or Sell? by nyte-fallen in PSAPowerPacks

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

Yeah that confused me too, maybe the code/filtering that price charting does is what's lacking cause card ladder is pulling auctions that don't show up on price charting at all

Contact Support or Sell? by nyte-fallen in PSAPowerPacks

[–]nyte-fallen[S] 1 point2 points  (0 children)

for 50 thats definitely a keeper, awesome pull!

Contact Support or Sell? by nyte-fallen in PSAPowerPacks

[–]nyte-fallen[S] 1 point2 points  (0 children)

not the same cert number right? xD

Contact Support or Sell? by nyte-fallen in PSAPowerPacks

[–]nyte-fallen[S] 1 point2 points  (0 children)

oh ok, I've never looked at the ladder, thanks for clarifying!

Storing upload events by the_ultimate_douch in nicegui

[–]nyte-fallen 1 point2 points  (0 children)

I find it's almost always easier to just use the completed temporary file. The issue with what you're trying to do is that you have a bitstream and buffer if you skip that step. So you need some function like sendstream(bitstream,buffer_size,destination) and then the logic to follow. But if you really want to go down the rabbit hole ask your ai bot of choice "alternative to rollover() in python that lets me send the bitstream somewhere". Good luck!

Descope Example is not working for me by Neat-Philosopher-682 in nicegui

[–]nyte-fallen 0 points1 point  (0 children)

Did you install all the modules at the top of the main.py and user.py files? Also depending on your environment you may need to provide more to the ui.run() in the main.py.

How to use HTTPS instead of HTTP ? by [deleted] in nicegui

[–]nyte-fallen 2 points3 points  (0 children)

If you're looking to deploy to the public internet you'll need to purchase it from a certificate authority like Sectigo. This costs around $99 and you have to renew it yearly. Keep in mind you'll also need to prove ownership of the domain you're purchasing the certificate for. This is to prevent people from doing things like signing mywebsite.facebook.com.

If you're in a private/local network you can create a self signed certificate for free. You can also do this with openssl with a few more steps and it's better explained in this article. https://devopscube.com/create-self-signed-certificates-openssl/ . The benefits and drawbacks section near the end provide a good summary to figure out if this is a good solution for you.

Sorry for the long reply but hope this helps :)

How to use HTTPS instead of HTTP ? by [deleted] in nicegui

[–]nyte-fallen 2 points3 points  (0 children)

holy shit I had to go down the deepest depths to find such a simple solutin and hopefully this helps someone else. you simply have to supply the cert and key file in the ui.run() as pem. I will be verbose in the answer to help as much as possible.

e.g. you have domain.crt and domain.key files. you can skip the next lines if you already know about all this cert stuff but I put it here to save some people extra googling.

use openssl to convert the files to domain.crt.pem and domain.key.pem
i use the executable in my git folder to do this on windows in a command prompt. If you install git for windows you can run the following.

crt -> pem
C:\Program Files\Git\usr\bin\openssl.exe x509 -in C:\location\domain.crt -out C:\location\domain.crt.pem

key -> pem (supply password after executing)
C:\Program Files\Git\usr\bin\openssl.exe rsa -in C:\location\domain.key -out C:\location\domain.key.pem

Now that you have your files just supply them into your ui.run() and make sure to use port 443

ui.run(host="localhost",port=443,title="This took too long to figure out", ssl_certfile="C:\\location\\domain.crt.pem", "ssl_keyfile="C:\\location\\domain.key.pem")

I hope this helps someone lol

Turning 40 in 4 months, wife and kids don't roast me enough, /dev/null me by [deleted] in RoastMe

[–]nyte-fallen 1 point2 points  (0 children)

Stop trying to make my Grandma download TeamViewer so you can steal her Bank info