• 1 Post
  • 31 Comments
Joined 1 year ago
cake
Cake day: December 24th, 2023

help-circle



  • I had to log back into an account for an app (I think Taco Bell) that decided to remove passwords entirely without any notice. You typed in your email address, had to open your email account and click a link they sent you, it would open a webpage, which would then have a button to open the app again. If I remember correctly too, it would only work on Chrome, so I had to copy and paste the link since Chrome isn’t my default browser that automatically opens from my mobile email.

    Besides that, I remember some website required a special character from an extremely small list and wouldn’t allow two of the same letter back-to-back.


  • I swear we live in different worlds

    I couldn’t agree more. A lot of my family are conservative and talk politics all the time, and whenever any scandal or poor decision is brought up from Trump’s first term, they always downplay it as if it was barely an issue. According to them, just about everything was outside of Trump and the Republican party’s control, taken out of context, or just outright didn’t happen. It doesn’t matter how much evidence you provide, they refuse to accept that someone they voted for may have done something bad.


  • I’m on mobile, so maybe the photo isn’t loading at high resolution, but I don’t think your points lead me to believe AI generated this.

    The finger looks a little odd, but it could just be the way the shadows fell. The garbage can doesn’t look flat against the wall. If you look in the reflection of the mirror, one corner is closer to the wall than the other, which would account for the distortion you mentioned. The blue coat of the back of the chair might just be a coat. The chair legs seem like they should be behind his leg and the trash can. The foot pedal on a plastic trash doesn’t seem like the sturdiest thing and can just bend. The lid seems symmetrical to me personally. There just aren’t enough pixels in the image for me to see if there are buttons or not.

    Maybe I’m completely wrong and it is AI, but it seems to me like too many of the fine details match up with reality. It may also be the low resolution that makes things seem more realistic. If it is a fake image, I think it would be more likely that the photo was taken out of context or staged.



  • I wonder if it is fishing itself that they don’t like, or if it is the prevalence of fishing photos on dating sites. I know that a lot of guys post fishing photos on their profiles (probably because most men don’t take many photos of themselves but will take photos with a nice catch), so maybe it just seems unoriginal or low effort. I’m honestly not sure, but my only point is that it may not be the hobby itself.


  • I’m not sure if you are in the same boat, but I bought ARMA 2 and Operation Arrowhead many years back directly from the dev’s website. I logged into their site about a year ago, copied the registration keys, pasted them into Steam, and was able to redeem it through Steam directly. If your games have CD keys, Steam can oftentimes accept those directly like you are entering a Steam product key. I think you put it into the field where you enter Steam gift cards and product keys.


  • “The Terror” by Dan Simmons. I already watched the show and enjoyed it, so I picked up the book and am only a few chapters in, but I’m liking it a good bit. There seems to be a good bit of historical facts thrown in, which I personally enjoy.

    For those unfamiliar, it is based on the real life Franklin Expedition that disappeared while searching for a way to traverse the Northwest Passage in the Canadian arctic. The story follows the known facts regarding the fates of the expedition crew members, but it tells a paranormal horror story to fill in the blanks.


  • I haven’t used it often, but the few times I have asked it very specific programming questions, it has usually been pretty good. For example, I am not very good with regex, but I can usually ask Copilot to create regex that does something like verifying a string matches a certain pattern, and it performs pretty well. I don’t use regex enough to spend a lot of time learning it, and I could easily find a few examples online that can be combined to make my answer, but Copilot is much quicker and easier for me. That said, I don’t think I would trust it past answering questions about how to implement a small code snippet.


  • I’m from the US as well, and I can verify that very few average people use those types of messengers primarily. It is almost exclusively iMessage and SMS/MMS/RCS texts as the main form of messaging. I will admit that quite a few people will use the messaging features that are built into social media apps (like messaging in Snapchat, Facebook Messenger, etc). At least to me, it seems like those are moreso used for sending memes or messaging people you don’t interact with regularly and are still secondary to the other forms of messaging.




  • I had an issue where a client reported a crash on login. The exception and stack trace reported were very generic and lent no clues to the cause. I tried debugging but could not reproduce. I eventually figured out that the crash only happened for release (non-debug) builds that were obfuscated. I couldn’t find the troublesome code, so I figured out which release introduced the issue, then which commit, then went change by change until I was able to find the cause. It turned out to be a log message in a location that was completely unrelated to login. That exact log message was fine a few lines up. Other code worked fine in that location. For some unknown reason, having that log message in that specific location caused a crash in a completely different area of code.


  • I’ve used Bing for a few years for the free rewards points and purchase rebates, and it has worked very well for me when it comes to normal searches including searches for software development. I very rarely have to turn to Google when trying to look something up, and as you mentioned, sometimes Google honestly gives me worse results. I will say however that I have found the image and video search on Bing to be significantly worse than Google’s (which I already have some issues with). Not sure about the other search types like shopping or news since I never use them.


  • It was obfuscated only in the release build. The issue is that they have a system to send certain logs to an API so they can refer to them if a user has an issue that needs further investigation. Unfortunately, their target audience is not very tech literate and have a hard time explaining how they got into a situation where they experienced a bug, so the remote logging was a way to allow us to try to retrace the user’s steps. Some of the logs that get sent to the API have JSON values converted from class data, will refer directly to class names, etc, and those logs had the obfuscated names.


  • I have a somewhat related real world story. I had a client that was convinced that tons of people were going to decompile their application and sell their own version of the program, so they insisted that they needed their code obfuscated to protect company secrets and make it harder to reverse engineer. I tried explaining to them that obfuscation wasn’t that big of a deterrent to someone attempting to steal code through reverse engineering and that it would likely cause some issues with debugging, but they were certain they needed it. Sure enough, they then had a real user run into an issue and were surprised to find that their custom logging system was close to useless because the application was outputting random obfuscated letters instead of function and variable names. We did have mapping files, but it took a lot of time to map each log message to make it readable enough to try to understand the user’s issue.