bonerboy69

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 18 total)
  • Author
    Posts
  • in reply to: AI – WTF is this? #1280
    bonerboy69's avatarbonerboy69
    Participant
      Up
      2
      Down
      ::

      Slop increases — Data centers move to space —​ Hold my beer!

      in reply to: SNES capacitor replacement #1034
      bonerboy69's avatarbonerboy69
      Participant
        Up
        1
        Down
        ::
        On modrobert wrote

        There were no visible leaks from the electrolytic capacitors but several of them measured bad using the ESR meter so it was high time to recap.

        Around C64 and C63 it looks like capacitor leakage?

        in reply to: AI – WTF is this? #907
        bonerboy69's avatarbonerboy69
        Participant
          Up
          1
          Down
          ::

          https://www.theguardian.com/us-news/2026/mar/12/tennessee-grandmother-ai-fraud

          A Tennessee grandmother says she is trying to rebuild her life after an incident of mistaken identity by an artificial intelligence (AI) facial recognition system tied her to a North Dakota bank fraud investigation.

           

          Angela Lipps, 50, spent nearly six months in jail after Fargo police identified her as a suspect in an organized bank fraud case using facial recognition software, according to south-east North Dakota news outlet InForum. Lipps told the outlet she had never been to North Dakota and did not commit the crimes.

          bonerboy69's avatarbonerboy69
          Participant
            Up
            0
            Down
            ::

            Where to buy GDEMU ODE?

            The original is not in production anymore.

            in reply to: AI – WTF is this? #826
            bonerboy69's avatarbonerboy69
            Participant
              Up
              3
              Down
              ::
              in reply to: AI – WTF is this? #824
              bonerboy69's avatarbonerboy69
              Participant
                Up
                0
                Down
                ::

                Ping!

                in reply to: AI – WTF is this? #682
                bonerboy69's avatarbonerboy69
                Participant
                  Up
                  2
                  Down
                  ::

                  I was being sarcastic.

                  in reply to: AI – WTF is this? #660
                  bonerboy69's avatarbonerboy69
                  Participant
                    Up
                    1
                    Down
                    ::

                    I like AI, don’t you?

                    in reply to: GitHub woes… #608
                    bonerboy69's avatarbonerboy69
                    Participant
                      Up
                      2
                      Down
                      ::

                      Enshittification soon complete.

                      in reply to: Picostation at its best #560
                      bonerboy69's avatarbonerboy69
                      Participant
                        Up
                        0
                        Down
                        ::
                        On snaker wrote

                        I have tried ISOs with several tracks as BIN files and they work fine.

                        No need to convert the game to be one bin file?

                        You can also swap discs simply by creating a folder with the different disc .bin and .cue files. When you open the lid, it shuffles through to the next disc. So, if you open and close the lid multiple times, it cycles to the next disc each time.

                        Smart, so the lid switch is wired to the Picostation.

                        in reply to: Picostation at its best #558
                        bonerboy69's avatarbonerboy69
                        Participant
                          Up
                          1
                          Down
                          ::
                          On modrobert wrote

                          How does it handle games spanning several discs (for example Final Fantasy VII)?

                          PSIO supports the “.m3u” file extension which is a text file including the “.cue” files for the game, one for each disc. After searching around, doesn’t look like Picostation or xStation handles multi-disc.

                          in reply to: Picostation at its best #555
                          bonerboy69's avatarbonerboy69
                          Participant
                            Up
                            2
                            Down
                            ::

                            Does this DFO board make it NTSC with 60Hz for all disc images, or does it detect PAL disc images and set 50Hz for those?

                            The DFO board switches automatically depending on region.

                            I’m also curious how Picostation handles games where the disc dump have one cue file but several bin files (e.g. audio tracks). Assuming those games have to be converted somehow.

                            A game with several bin files need to be converted into one bin file. There are tools for that, like this one:

                            https://github.com/putnam/binmerge

                            in reply to: Picostation at its best #510
                            bonerboy69's avatarbonerboy69
                            Participant
                              Up
                              2
                              Down
                              ::

                              Does this work for PSOne? Or only the launch model?

                              …edit…

                              Never mind, found this info in the github repo you linked:

                              PU-8 (SCPH100X)
                              PU-18 (SCPH55XX)

                              • This reply was modified 1 year ago by bonerboy69's avatarbonerboy69.
                              • This reply was modified 1 year ago by bonerboy69's avatarbonerboy69.
                              in reply to: Mastodon turning to shit #445
                              bonerboy69's avatarbonerboy69
                              Participant
                                Up
                                2
                                Down
                                ::

                                My two cents:

                                All the social media sites are shit.

                                in reply to: History of Unix #408
                                bonerboy69's avatarbonerboy69
                                Participant
                                  Up
                                  1
                                  Down
                                  ::
                                  
                                  // C Program to sort an array using qsort() function in C
                                  #include <stdio.h>
                                  #include <stdlib.h>
                                  
                                  // If a should be placed before b, compare function should
                                  // return positive value, if it should be placed after b,
                                  // it should return negative value. Returns 0 otherwise
                                  int compare(const void* a, const void* b) {
                                      return (*(int*)a - *(int*)b);
                                  }
                                  
                                  int main() {
                                      int arr[] = { 4, 2, 5, 3, 1 };
                                      int n = sizeof(arr) / sizeof(arr[0]);
                                  	
                                    	// Sorting arr using inbuilt quicksort method
                                      qsort(arr, n, sizeof(int), compare);
                                  
                                      for (int i = 0; i < n; i++)
                                          printf("%d ", arr[i]);
                                  
                                      return 0;
                                  }
                                  
                                  • This reply was modified 1 year ago by bonerboy69's avatarbonerboy69.
                                  • This reply was modified 1 year ago by bonerboy69's avatarbonerboy69.
                                  • This reply was modified 1 year ago by bonerboy69's avatarbonerboy69.
                                  • This reply was modified 1 year ago by bonerboy69's avatarbonerboy69.
                                Viewing 15 posts - 1 through 15 (of 18 total)