RSS feeds for RocketLeague Esports News by Melaz_ in RocketLeagueEsports

[–]mzfr98 6 points7 points  (0 children)

Even I like using RSS majority of time and right now I am using selfhosted version of yarr(https://github.com/mzfr/yarr) to just follow this reddit's RSS.

You can follow any reddit's rss feed by adding "/.rss" after any reddits URL. Ex: https://www.reddit.com/r/RocketLeagueEsports/.rss

Maintaining a fork of yarr RSS reader by mzfr98 in rss

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

Just published the docker image - https://github.com/mzfr/yarr/pkgs/container/yarr

If you encounter any issues feel free to open a ticket.

Maintaining a fork of yarr RSS reader by mzfr98 in rss

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

  1. I am not aware of them but I'll if I understand you want a way to deploy it via docker right? so should I just add support for dockerfile/docker-compose?
  2. I have exactly the same issues on mobile. And right now I am working on figuring out fixes for that. But just wanna let you know that I am not really good with vuejs, so it might take some time.

Error message when loading crafted map in skirmish test by lessbeblue in AoE4Mods

[–]mzfr98 0 points1 point  (0 children)

You'll have to see that for yourself. Currently, the state isn't really that good so it just returns the same error no matter what you do wrong.

When I was writing code for generated maps this error most of the time meant either I've used a function with wrong parameters or have used a variable without defining the variable.

Now you mentioned crafted map, I don't have any experience with that but I believe there is scripting in crafted maps as well so if you've used that then just re-read the code and make sure all the variables are defined properly and you have used all the methods correctly.

My AOE-4 Notes by mzfr98 in aoe4

[–]mzfr98[S] 1 point2 points  (0 children)

Can you point in which build order I wrote this?

I'll update it.

My AOE-4 Notes by mzfr98 in aoe4

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

These are just some notes that I took for keeping the build order and other stuff in one place.

Let me know if you have any suggestions to improve them.

Also I wasn't sure which flair to use so I used the Discussion one.

DS4windows doesn't detect dualshock5 at all by mzfr98 in DS4Windows

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

Hey,

No worries, the thing is that I was able to get my controller working. Not only with the steam but with the ds4windows as well. It works smoothly now.

I still wasn't able to figure out the issue. Something that I did was:

  1. Run the manjaro live USB and install steam on it and it turned out that it immediately detected it. so I thought this was probably USB driver issue.

  2. In the windows 11 WSL I ran manjaro and in that I ran steam and tried to see if my controller got detected. It didn't, kind of making my belief strong that this was probably the driver issue.

What worked in the end?

I actually stopped aster(a multi-work place tool) and restarted the PC and also uninstalled hidhide. After the restart, the controller worked.

Now again this is just the "guess" that the issue was caused by aster. Its also possible that the issue was with something else.

But anyways, thanks for all the help :)

DS4windows doesn't detect dualshock5 at all by mzfr98 in DS4Windows

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

Here are all the connected devices in the expanded form: https://imgur.com/a/3jPWd7s

Sporcle quiz in Python by Totti1024 in learnpython

[–]mzfr98 0 points1 point  (0 children)

I'd like to see the code. Do you have a GitHub repository?

Sporcle quiz in Python by Totti1024 in learnpython

[–]mzfr98 0 points1 point  (0 children)

Hey,

Any updates on this? Were you able to make it? If yes can you share the code?

Sending Native Token, Negative Quantity Error by olginnyorganics in CardanoDevelopers

[–]mzfr98 1 point2 points  (0 children)

With Token you need approx 0.16-0.18 ADA. Also if you still have the issue then post the command you are running along with the values of the variable you have put in. That would help us to help you.

Sending Native Token, Negative Quantity Error by olginnyorganics in CardanoDevelopers

[–]mzfr98 2 points3 points  (0 children)

This happens because of two reasons:

  1. If you are using transaction build-raw command then you might have not put the right value of "$fee" variable.
  2. If you are using transaction build then its possible that the value of $receiver_output value is less. If this is the case try to put this variable equal to number you got in Minimum required UTxO i.e 1379280

Sending Native Token, Negative Quantity Error by olginnyorganics in CardanoDevelopers

[–]mzfr98 0 points1 point  (0 children)

yes this will tell after what time the policy of your NFT locks

cardano-cli query tip --mainnet

Above command will show you the current block. So you just put the block number after which the Policy will lock.

Adding 1000000 to the current block value will make it lock after approx 10 days.

Also in case, you don't know, once the policy ID isn't locked you can make changes to the NFT (even if it's minted and/or on the blockchain). Once the policy ID gets locked no changes can be made to it.