RetroHax

joined 2 months ago
[–] RetroHax@feddit.org 0 points 8 hours ago

Im a Certified Rarioty Hater >:D
Jk jk :P

[–] RetroHax@feddit.org 1 points 8 hours ago

eh i mean its not really New Games even as afterall i do also play Old Games that i grew up with :P
Its just the general Vibe from my Persecption Changed i feel like >.>
tho not in a "GRRRR Games are getting Too Woke >:((((((" obviously :P

 

Yes i am aware its veeeeery Basic but ay what can ya do about it :P

[–] RetroHax@feddit.org 1 points 8 hours ago

yea i mean i do play a ton of Indies of course and it does feel Great but the "Vibe" just feels different somehow nowadays >.>
For Example SHovel Knight and Celeste and mayyybe The Messenger are one of the few Indie Games that give me that "Old School" Vibe of Indie Dev if that makes sense :P

 

Yes i am aware that is a Generic Title and im not trying to be all "Grrr these Modern Games are destroying us >:((((((" :P
but more so on the Side of that you now have access to all these Games for like usually a few Bucks here and there due to all the Sales on Platforms like Steam and GOG for Example :P
But it just feels like you cant decide and have too much to play and choose from X_X
and thats not really a "Oh Digital Gaming Bad" per se as i do notice it with my Physical Collection as well of course that i cannot decide what i wanna play >.>
But more so that Gaming just feels "more difficult" and also a ton more Toxic and Mean maybe? >.>
Like for example when i look at old Conventions like E3 or even Gamescom from the 2010s im like "Holy Shit look at all these Cool Games" but obviously nowadays its just "meh" really >.>
Afterall E3 is Dead and Gamescom is basically overrun by Influencers all Day >.>
But for example also Game Trailers kinda feel Weird in a Sense? >.>
Like i do not wanna bash Editors of these Trailers of course but for example i watched the Borderland 2 Trailer a few Months back and i really enjoyed it personally same with the Bioshock 2 or Super mario Galaxy Trailers for Example :P
Like i am unsure if "well structured" is the right Word as obviously modern Game Trailers are also well structured tho its just that something feels different >.>
Unsure if my Text really makes sense tho as its a bunch of Weird Nonsense im typing out as i suck at expressing myself via Text but maybe someone can relate? >.<

[–] RetroHax@feddit.org 1 points 1 day ago

Holy Frick no more Wine DLLOVERIDE! :0000
Yippie :D

 

Also ich will hier ja eigentlich keinen Disrespect angeben vorallem hier auf Lemmy zum beispiel jetz allerdings ist das was was ich mich mega oft auf reddit seh und mich abfucked wo man direkt als "Dumm" und "Ragebait" abgestempelt wird wenn man einen "Dummen" Post ab setzt laut diesen Nutzern da mann zum beispiel eine Mentale Behinderung hat oder sich einfach nicht richtig ausdrücken kann oder EMoticons verwendet -.-

Und ich will das ja eigentlich nicht so auf mich lenken da ich ja genau so ne Frage stelle >.> allerdings kann ich halt aus anekdotischer Evidenz sagen zu mindest aus meiner AUffasung nach das ich halt durch solche Scheiße halt nicht mehr in Deutschen Communities unterwegs bin leider >.>

So natürlich ist der Kram ach im Englischen Communities vorgefallen aber ich habs halt nur aus der ANekdotischen Evidenz jetz nur in gewissen Deutschen Communities wie zum beispiel bei r/mieten gelesen auf Reddit wo dir einfach ohne Rücksicht in die Fresse gehauen wird >.>

Hier n Link zu dem Reddit Post: https://old.reddit.com/r/wohnen/comments/1si1fd5/macht_ein_kredit_sein_bei_den_horrenden_miet/

So ich erwarte ja nicht das man im Samt Handschuhen einen Anfässt aber meine Fresse muss man da wirklich direkt auf Hau Drauf so rupig sein und nicht keine ahnung "Nrmal" einen Kommentar schreiben ohne direkt MEGA Judgy zu sein -.-

EDIT: Hab den Titel etwas verändert um jetz nicht so wütend/genervt zu wirken ^^"
EDIT2: original Titel war "Warum sind so viele Leute vorallem in Deutschen Communities so unverständlich?"

 

Ich Habe nun seit längerem Überlegt umzuziehen da ich nun seit Circa anfang des Jahres wieder nen Job welcher 900€ Netto mireinbringt jeden Monat :P

Da ich weder Nebenkosten noch sonst was hab da ich noch bei meinen Eltern wohn und ich nun seit knapp 2 Jahren des Ziel hatte falls ich nen Job finde auszuziehen wollte ich mal fragen was so euer Situation dazu währe? >.>

Ich habe mich in der gegend wo ich gerne hinziehen würde umgeguckt und auch wenns hart wäre wären es halt so 800 - 900 Euro die ich stemmen müsste >.>

Ich hab zum glück noch nen "Spartopf" von circa 1500€ was jetz natürlich nicht viel ist aber wenigstens etwas falls ich doch im schlimmsten Fall länger auf Wohnungssuche wäre oder sonst was passieren würde :P

Ich hab halt geplannt die 900€ so gut wie es aus geht aufzusparen das ich villeicht anfang nächsten Jahres wenn ich Glück hab ruhig ausziehen kann und dann mir währenddessen noch nen Job suchen könnte wo ich jetz nicht direkt auf Zack wäre und den ganzen Stress hätte >.>

Schlimsten Fall müsst ich mir halt nen Kredit nehmen warscheinlich wo ich allerdings jetz nicht genau abschätze könnte wie sinnvoll das wäre ^^"

[–] RetroHax@feddit.org 0 points 1 week ago (1 children)

yup just removed the infinite cycle by just doing class ErrorWindow; inside mainwindow.hpp :P
also if i remove MainWindow MainWin; from main then obviously all i get is a compiler Error as i require MainWin inside my Main Function >.>

src/main.cpp:20:5: error: ‘MainWin’ was not declared in this scope; did you mean ‘MainWindow’?
[–] RetroHax@feddit.org 0 points 1 week ago* (last edited 1 week ago) (1 children)

Basically my Idea is/was to use 1 Function that being DisplayErrorWindow and have all the Errortexts basically inside it as nothing ever changes aside from the Text i couldve just used if statements :P
But sadly it wiull only display the first Error Text and not any of the other Error Texts no matter what i modify and i did already check my if statement Logic inside the Function and nothings wrong on that Part :c

[–] RetroHax@feddit.org 0 points 1 week ago (3 children)

huh? O.o
so you mean like this for Example? >.>

int main() {
  ErrorWindow* ErrorWin;
  MainWindow MainWin(&ErrorWin);

and then inside mainwindow source files like this? O.o

class MainWindow {
  public:
    MainWindow(ErrorWindow* ErrorWin);
  private:
    ErrorWindow* ErrWin;

MainWindow::MainWindow(ErrorWindow* ErrorWin) : ErrWin(ErrorWin) {

because all i recieve is this error even tho i included errorwindow.hpp inside mainwindow.hpp and cpp file >.>

In file included from src/gui/errorwindow.hpp:20,
                 from src/main.cpp:13:
src/gui/mainwindow.hpp:56:27: error: expected ‘)’ before ‘*’ token
   56 |     MainWindow(ErrorWindow* ErrorWin);
      |               ~           ^
      |                           )
src/gui/mainwindow.hpp:83:5: error: ‘ErrorWindow’ does not name a type
   83 |     ErrorWindow* ErrWin;
      |     ^~~~~~~~~~~
make: *** [Linux.mk:39: build/main.o] Error 1
 

So i am basically almost done with my C++ App Logic Wise tho the only thing i struggle with and wanna figure it is how to include a seperate class into my main class constructors >.>

Mostly due to the fact that currently in my Code my main Code has 2 Objects tho ErrorWin Object is right now the only one that exist twice as seperate Objects which itd like to fix >.>

So this is my first Object in my Main Function which just calls my DisplayWindow Function while my ErrorWin Object calls the Display Error Window Function :P

int main() {
  ErrorWindow ErrorWin;
  MainWindow MainWin;

  if (ProgramPath.empty()) {
    ErrorWin.DisplayErrorWindow();
    return Fl::run();
  }

  MainWin.DisplayMainWindow();
  return Fl::run();
}

Now the Main Issue is that only my First Text basically gets displayed in the Error Window even tho my switch Statement is set to display a different error text basically according to my callback but that obviously does not work due to theyre being seperate ErrorWin Objects :(

void MainWindow::CallbackSaveFile(Fl_Widget* Widget, void* Data) {
  MainWindow* MainWindowData = static_cast<MainWindow*>(Data);
  ErrorWindow ErrorWin;

  if (!MainWindowData->InputFile.empty()) {
    ...
  } else {
    ErrorWin.DisplayErrorWindow();
  }
}
 

So i only remember the Anime because i saw it on a YTPMV Yeaaaaaars ago and sadly cant find it anymore >.<

But basically it was 2 Girls with SOlider Helments and i believe a fucking Bazucka in a praking Lot? XD

Also there was another Scene tho maybe that was another Anime where also these Loli Type Anime Girls with their Soldier Helmets are in some kind of Cave or similiar? >.>

So yea i looked for quite some time and couldnt sadly find Shit but its probably from somewhere in the 2010s around the Time Lucky Star existed >.>

[–] RetroHax@feddit.org 1 points 3 weeks ago

well without iocane https://retro-hax.net/ can be accessed but just if i do uncom,ment the iocane stuff then i just get this 421 error But iocane is running via the systemd system and started so i dont understand why it doesnt work easily >.>

[–] RetroHax@feddit.org 1 points 3 weeks ago* (last edited 3 weeks ago) (2 children)

Well for me my Physical Host Layout how do you mean? O.o
Like i just use Caddy as my Web Server running on Port 80 and 443 which are open physically on my Router >.>
and i dont think i use a Proxy? >.>
I infact dont even use a Firewall tho i probably should set that up sometimes XD

 

So im sorry if this is the Wrong Sub more or less tho i did wanna ask if maybe one of you also selfhosts stuff as i am particulary having Issues with iocane ^^"
Mostly in the sense of that while Installation went succesful it did give me Issues regarding being unable to reach my Website which i selfhost via Caddy :(
Gave me an Error 421 if i remember correctly and i feel very stupid and embarassed that i cant solve it on my own as it is quite annoying >.<

Looks like there’s a problem with this site
https://retro-hax.net/ sent back an error.
Error code: 421 Misdirected Request
Check to make sure you’ve typed the website address correctly.

My Caddyfile is quite Basic tho as it looks like this with iocane being outcommented right now due to the 421 Bug :P

user@retro-hax:/etc/caddy$ cat Website.caddy
retro-hax.net {
  #@read method GET HEAD
  #reverse_proxy @read 127.0.0.1:42069 {
  #  @fallback status 421
  #  handle_response @fallback
  #}

  root * /var/www/html/Website
  file_server {
    index  Home.html
  }
}

and yes i did open up Port 42069 on my Router to make sure it wasnt a Porting Issue X_X

[–] RetroHax@feddit.org 7 points 4 weeks ago (1 children)

eh while i appreciate this Project i do also think that contributing to Software like Matrix or XMPP would be better as theyre actually used in Production and Companies :P

[–] RetroHax@feddit.org 2 points 1 month ago (2 children)
[–] RetroHax@feddit.org 1 points 1 month ago

Well i do usually go for GPL 2.0 only or LGPL 2.1 or later (unless its Python where i usually go with either GPL 3.0 or AGPL 3.0 only) :P
But with writing Assembly by Hand and translating Reverse Engineered ASM from one CPU Architecture to another one that is kinda my unknown basically :(
Especially as im usually a Tooling Dev than a Game Dev more on PC and usually when i write ASM Patches it is for LGPL 2.1 and written from Scratch (So im not modsifying for Example existing Nintendo Code) :P

 

So im sorry if this is the Wrong Sub more or less tho i did wanna ask if maybe one of you also selfhosts stuff as i am particulary having Issues with iocane ^^"
Mostly in the sense of that while Installation went succesful it did give me Issues regarding being unable to reach my Website which i selfhost via Caddy :(
Gave me an Error 421 if i remember correctly and i feel very stupid and embarassed that i cant solve it on my own as it is quite annoying >.<

Looks like there’s a problem with this site
https://retro-hax.net/ sent back an error.
Error code: 421 Misdirected Request
Check to make sure you’ve typed the website address correctly.

My Caddyfile is quite Basic tho as it looks like this with iocane being outcommented right now due to the 421 Bug :P

user@retro-hax:/etc/caddy$ cat Website.caddy
retro-hax.net {
  #@read method GET HEAD
  #reverse_proxy @read 127.0.0.1:42069 {
  #  @fallback status 421
  #  handle_response @fallback
  #}

  root * /var/www/html/Website
  file_server {
    index  Home.html
  }
}

and yes i did open up Port 42069 on my Router to make sure it wasnt a Porting Issue X_X

 

So i basically reverse engineered some Small 6502 Assembly Code for research as i wanna remake the entire Thing in x86 Assembly and wanted to ask as to would Licnese would be most appliceable to such Cases? >.>
Mostly due to the Fact that Public Domain Code is usealy not Good as depending where you live it can mean anything or can even be illegal from what ive read in some Country? D:
I suppose the best bet would be something like MIT-0 or maybe even LGPL considering im translatating the Code from another Language to a different one? >.>
But im still unsure if that counts a Derivative or what a Translation even can be licensed at all? >.>
Atleast the Copyrighted Assets have to be provided yourself from the Original Program so im in the Clear on that Front but the Code is the scariest Part as itd rather not get into Legal Trouble to be fair :(

 

So i run most if not all of my GOG and Itch Games via Lutris which i am quite happy with :D
But sadly i just get the "Stock" Executeable Icon instead of the Games Icon :(
Also yes due to the my Icon Theme Set it does look different but eitherway is that not the Correct Icon for the Game :(
Is there a better Way than downloading and changing the Icon for each Game manually? :(

1
submitted 1 month ago* (last edited 1 month ago) by RetroHax@feddit.org to c/openstreetmap@lemmy.ml
 

So ive been using OSMAnd~ on F-Droid so far and im quite Happy with it :D
Sadly its UI is quite clunky and i literally could not find my Destination where i had to go to even tho ive downloaded the Entire Map of Germany -.-
Can anyone by chance recomenned me some Good Apps that wouldnt rely on MicroG or can be easily gotten from F-Droid or similiar FOSS Android Stores? :D

 

So all i did was update my Steam on Linux and after rebooting apparently it now looks like this? XD
Is this normal or did i somehow bork Steams Themeing during the Update of my ARch Linux Machine? :P

view more: next ›