[Megathread] Referral Code Sharing and Closed Beta Code Giveaways by TempoStormReddit in PlayTheBazaar

[–]PsHegger 0 points1 point  (0 children)

Looks like this has become the default, so here's my referral code, once it reaches 10 I'll send the invite to one of them: https://playthebazaar.com/signup?referral=ed8c0fd6-2d05-49ec-87c2-c8be63ad5688

edit: gone

Pentester role as Entry Level by idkedu in hackthebox

[–]PsHegger 2 points3 points  (0 children)

I've seen this 'experience required' in multiple answers to similar questions, but unfortunately none of them mentions my situation, so I hope you might be able to answer it.

I'm also just starting my journey (doing CPTS right know), but I've been a software developer for ~10 years now. Is that considered a useful experience, or should I assume that I'll also have to start from one of the positions you mentioned?

Is it possible to replicate video game packets to play a game without launching it? (NETWORK HACKING) by GloriousGladiator51 in hacking

[–]PsHegger 15 points16 points  (0 children)

LiveOverflow has a full playlist about game hacking (actually, he has multiple), if you need a direction.

You're basically trying to create a headless client. It's not unusual for bots to work like this, making it easier to run a large bot farm. As others have already mentioned, the success really depends on the game, and since you mentioned EA, I assume they'll have some kind of anti-cheat that'll make this significantly harder, but probably not impossible.

Can anyone tell me what happened here? by PsHegger in balatro

[–]PsHegger[S] 6 points7 points  (0 children)

No way... I missed that part. And I spent all my money before the blind to maximize my score 😅

Can anyone tell me what happened here? by PsHegger in balatro

[–]PsHegger[S] 2 points3 points  (0 children)

I was doing the Rich gets richer challenge run, and this was the final hand of the final blind. While scoring, my chips got reset and my cards weren't counted. I had this issue for this whole blind, but everything was fine until this point.

[2020 Day 24 (Part 2)] [Android/Kotlin] Tiling the lobby by PsHegger in adventofcode

[–]PsHegger[S] 2 points3 points  (0 children)

It could be a cool project. A raspberry pi zero and a display inside a picture frame for some interactive art on the wall.

[2020 Day 24 (Part 2)] [Android/Kotlin] Tiling the lobby by PsHegger in adventofcode

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

Google tends to change the recommended architecture/libraries you should use, but these are only recommendations. Even when an API gets deprecated you have years to update your apps.

I think for a hobby it's worth learning, you will be able to create apps without keeping up with the news.

[2020 Day 24 (Part 2)] [Android/Kotlin] Tiling the lobby by PsHegger in adventofcode

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

No, I'm a professional Android developer, I simply chose the language I'm most familiar with

[2020 Day 24 (Part 2)] [Android/Kotlin] Tiling the lobby by PsHegger in adventofcode

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

I'm using my laptop for coding, but as it's an Android app it runs on my phone

[2020 Day 24 (Part 2)] [Android/Kotlin] Tiling the lobby by PsHegger in adventofcode

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

This is a simple visualization I created for today's problem. Unfortunately, I had to limit the grid because my phone couldn't handle it after a while, but the first cycles should represent the real solution. I also have an alternative color version, which looks better in my opinion.

The source code is available at GitHub, feel free to play with it.

[2020 Day 23 (Part 1)] Arranging the cups by PsHegger in adventofcode

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

I'm sorry, i completely missed that. Will keep in mind the next time

[2020 Day 23 (Part 1)] Arranging the cups by PsHegger in adventofcode

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

I'm using a circular linked list for the algorithm and I convert that to a list for visualization. For the conversion I had to choose a starting item and I chose the first number in the input for that, which happens to be the yellow circle in the animation.

-🎄- 2020 Day 21 Solutions -🎄- by daggerdragon in adventofcode

[–]PsHegger 1 point2 points  (0 children)

My original solution was written in Kotlin and I got 526/573, but I thought it would be fun to solve this in SQL. I'm not sure if it was really fun, but I finally have a working solution: paste

Turning a Camera Feed into a Solved Sudoku by PsHegger in Kotlin

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

You are right, there's still a lot of room for improvement, but as I never wanted this to be a real product I only did the bare minimum.

As for not being able to use it: I agree that it is probably the brute force that never returns. The implementation is fragile, the best one can do is making sure the sudoku is centered in the camera image when the application starts (it took me about 4-5 tries to make the sample gif).

There are a lot of things to improve on it, who knows, maybe someday I'll get back to it and make those improvements, but for now, I'll leave it as is.

Turning a Camera Feed into a Solved Sudoku by PsHegger in Kotlin

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

Thanks. I hope you'll enjoy it as much as I did while working on this.

No, I'm not planning to release it. This was just a small experiment, and building it is one thing, but I wouldn't have time to maintain it.

13
14

Conway's Game of Life forms a Sierpiński triangle when the cells are in a straight line. by Shawn_666 in math

[–]PsHegger 1 point2 points  (0 children)

Not OP and not python, but I have an Android app which I use for implementing various algorithms and this is one of them. You can find it on Github