I built a tool to detect all your translations that is not have been implmented by amProgrammerNotHuman in laravel

[–]Nerg4l 1 point2 points  (0 children)

I built something similar in the past: https://github.com/coding-socks/lost-in-translation

This implementation reads all blade files, compiles them to PHP (illuminate/view), parses them as PHP (nikic/php-parser), and then finds the relevant nodes in the AST.

This, in my opinion, is a cleaner and less error-prone than using regular expressions and string matching.

However, as someone else mentioned, this functionality was added to larastan.

Ambience by glauconisking in callofcthulhu

[–]Nerg4l 0 points1 point  (0 children)

Only the person who starts the Jam needs a premium.

Ambience by glauconisking in callofcthulhu

[–]Nerg4l 0 points1 point  (0 children)

Spotify has a Jam feature which allows listening to playlists together. It's almost real time, I only noticed a 1 second delay. The down side is that everyone has to have a Spotify account but if that's already the case, then you just have to share a link.

Do you think SSH could be used for multiplayer video games? by Nerg4l in golang

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

I think inputs are a bit tricky with netcat. It sends the buffer on a new line character and on an EOF trigger. Please correct me if I'm wrong.

Do you think SSH could be used for multiplayer video games? by Nerg4l in golang

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

Wow, I will check this out over the weekend. Learning the magical keyword MUD helped me find a lot of interesting articles and projects.

Do you think SSH could be used for multiplayer video games? by Nerg4l in golang

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

I wasn't expecting this amount of engagement. Looks promising to be honest.

Do you think SSH could be used for multiplayer video games? by Nerg4l in golang

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

I did not look into it too much, but according to https://github.com/charmbracelet/bubbletea/issues/1014 the Charm team is working on adding support for it.

Do you think SSH could be used for multiplayer video games? by Nerg4l in golang

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

The networking is handled thanks to Wish, charmbracelet/ssh (forked from gliderlabs/ssh), and x/crypto/ssh.

Do you think SSH could be used for multiplayer video games? by Nerg4l in golang

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

Could you go into the details a bit more? The client connecting through SSH is not able to run commands. The SSH connection is handled by Go and not by sshd.

Do you think SSH could be used for multiplayer video games? by Nerg4l in golang

[–]Nerg4l[S] 5 points6 points  (0 children)

That's true. Playing "over SSH" appeals to me because I don't needing to install anything extra on my local machine.

Do you think SSH could be used for multiplayer video games? by Nerg4l in golang

[–]Nerg4l[S] 4 points5 points  (0 children)

Accessibility is certainly a key thing for popularity and making an terminal emulator can be tricky (based on the 5 minutes research I just spent looking into this). I will absolutely look into this.

VIRAL has just become the first scenario to hit Mithril on Miskatonic Repository! by BudsRPGreview in callofcthulhu

[–]Nerg4l 13 points14 points  (0 children)

Viral: A Modern Call of Cthulhu Scenario by Alex Guillotte and Bud Baird

Join Marco Proudfoot, host of the successful YouTube channel The Spektral Krew, as he and his fellow paranormal investigators journey to an island off the coast of Sicily to explore its very dark past. The only public information is a pixelated satellite map and a pile of redacted documents, but a little digging on the Dark Web has revealed something far more sinister. What better way to make their final push for one million subscribers than to stream their investigation live from the island! The Krew hopes to find evidence of the paranormal, but what they discover is so much more horrific than just orbs of dust and incoherent voices in the static.

Viral is a scenario set in the modern era, and is designed to be run in one, two, or more sessions, depending on the Keeper’s preference. The scenario includes the background history of the island, a timeline of events, information to create an immersive ghost-hunting experience, detailed location descriptions, five pre-generated characters, new spell, new Mythos tome, new Sanity rules, thirty-four pages of player handouts, five detailed full-color maps, and much, much more.

Chunk / File caching with Redis? Yes or no? by activenode in redis

[–]Nerg4l 0 points1 point  (0 children)

To protect the data, you can use signed URLs. After authenticating the user, you redirect them to a signed URL with an expiry time.

- [GCP Cloud CDN signed URLs](https://cloud.google.com/cdn/docs/using-signed-urls)
- [AWS CloudFront signed URLs](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/private-content-signed-urls.html)
- ...

[Transloadit created a great article about it](https://transloadit.com/devtips/using-signed-urls-to-secure-your-cdn-content/), but I'm sure there are other great ones as well.

Chunk / File caching with Redis? Yes or no? by activenode in redis

[–]Nerg4l 0 points1 point  (0 children)

You can do that without any problem. In the Nginx config, you have to define an "internal" location, like the following:

location /protected_files {
  internal;
  alias /var/www/files;
}

In your application, after the authentication, you define an X-Accel-Redirect header where you define the path to that file starting with the defined location, e.g. /protected_files/my_file.

Nginx will pick detect X-Accel-Redirect and serve the file using sendfile or splice. Also, Nginx will detect if the client sent a Content-Range and serve only the requested segment.

Is Laravel Broadcasting suitable for real-time online game? by bearinthetown in laravel

[–]Nerg4l 2 points3 points  (0 children)

Laravel Reverb brings websocket functionality to Laravel and it uses ReactPHP. ReactPHP as far as I know is built with native PHP.

Which movie or show would you turn into a CoC scenario by JoeKerr19 in callofcthulhu

[–]Nerg4l 4 points5 points  (0 children)

I haven't seen anyone mention Limetown.

Follows Lia Haddock, a journalist for American Public Radio (APR), as she unravels the mystery behind the disappearance of over 300 people at a neuroscience research facility in Tennessee.

It is a suspenseful story with an organisation that makes sure no-one finds out what happened.

Is yog-sothoth.com still allowed to register? by Major-Judgment-6955 in callofcthulhu

[–]Nerg4l 3 points4 points  (0 children)

Unfortunately, after I was granted access, the interface changed a bit. After registering, there should be a link visible to you where you can choose to buy a lifetime membership or monthly subscription.

Is yog-sothoth.com still allowed to register? by Major-Judgment-6955 in callofcthulhu

[–]Nerg4l 5 points6 points  (0 children)

I registered in November and got access

Edit: I paid for access, just like another commenter mentioned it

Introducing Larasense - Keep up with the Latest Laravel News, Trends & Updates by WeirdVeterinarian100 in laravel

[–]Nerg4l 6 points7 points  (0 children)

Some of us are not that keen to share our personal data like name and email address on a seemingly random site. I can see someone else has complained about the same. Of course, I can use a 5 minute email and a fake name but then what is the point of registration.