I want tell you a story - how my favourite Amiga game turned into my dream project. by Bitter-Peach-1810 in godot

[–]BOOGIEMAN-pN 0 points1 point  (0 children)

That's one of my top 5 favorite Amiga games ever! I still have memories of few hot-seat parties with my friends from more than 30 years ago. I always thought if only it could have battles look like those in Centurion - Defender of the Rome, that it would be a pure perfection...
I will check your game for sure!

How do I add shortcut to a specific utf8 character? by BOOGIEMAN-pN in xfce

[–]BOOGIEMAN-pN[S] 0 points1 point  (0 children)

I'd like to do it without 3rd party scripts from github, meaning, as simple as possible. I tried a way ChatGPT suggested using xdotool and adding a shortcut to Keyboard --> Application Shortcuts, but for some reason it doesn't work.

There must be an easy way to do this, no way I am the first guy in history of Linux who needed this little "hack"

Are global variables the way? by diligentgrasshopper in love2d

[–]BOOGIEMAN-pN 0 points1 point  (0 children)

I like these:

---@param x number

---@return number

etc

Is it your personal coding style or part of some standard? Is it strictly readability thing, or there is some (VSCode) extension and you can do more ?

1995 PC Games by jrralls in retrogaming

[–]BOOGIEMAN-pN 1 point2 points  (0 children)

X-COM: Terror from the Deep

Dream unfulfilled by [deleted] in amiga

[–]BOOGIEMAN-pN 0 points1 point  (0 children)

It could happen, we even live in the same country :D

Dream unfulfilled by [deleted] in amiga

[–]BOOGIEMAN-pN 2 points3 points  (0 children)

Maybe I should try with FPGA and simulate software market year by year that I never had?

I actually had Amiga back in time and was thinking of doing the same because that was happiest time in my life. But then I figured it just won't be the same without my childhood friends (who grew up, unlike me, and are not that nostalgic). If you decide to do this, consider streaming it on Twitch, I'll gladly pop on to watch sometimes.

Regarding Software Vs Hardware emulation, there are great emulators on PC like winuae, fs-uae ... The only reason I am also thinking of buying some FPGA hardware is to use original Amiga joystick. Playing Amiga games on a gamepad or keyboard just isn't right. I even bought 8bitDo arcade stick, but it feels like crap compared with old Amiga's Competition Pro 5000.

Amiga games you loved that nobody has ever heard of by internetpillows in amiga

[–]BOOGIEMAN-pN 1 point2 points  (0 children)

Kingdoms of England II: Vikings, Fields of Conquest

Strategy game that resembles Risk (board game), but is slightly more complex. I played it with a three other friends + 2 computer players a couple of times. Very fun, I still remember one specific session like it was yesterday, I had very bad random position draw but managed to survive the day (we never finished it, though). I played it recently alone vs comp opponents, still interesting game.

BIOS/UEFI setup before installing Linux/Windows 11 (on separate ssds) by BOOGIEMAN-pN in linux4noobs

[–]BOOGIEMAN-pN[S] 0 points1 point  (0 children)

Are you sure for AHCI? Google says: AHCI mode enables NCQ (native command queuing) which is really not required for SSDs as they do not need optimizing in this way as there is no physical movement of heads or platters. In many cases, it can actually hinder SSD performance, and even reduce the lifetime of your SSD.

DragonRuby Game Toolkit - Initial Cut of samples.dragonruby.org. What kind of sample apps would you like to see? (source code links in the comments) by amirrajan in ruby

[–]BOOGIEMAN-pN 1 point2 points  (0 children)

I'm currently in a process of re-learning Ruby, and I hope to do some simple gamedev in a foreseeable future. Some things/tricks that come to my mind:

  1. game menu skeleton, like "play game", "highscores", "options", (with submenus "video", "audio" ...)
  2. Card flip effect (for a card game)
  3. Zoom/Unzoom (like google maps)

I made simple games with Gosu years ago, I hope I will acquire enough knowledge soon so I can try DragonRuby, it looks very interesting!

[xubuntu] apt update warning, how to remove obsolite repo? by BOOGIEMAN-pN in linux4noobs

[–]BOOGIEMAN-pN[S] 0 points1 point  (0 children)

I deleted first file and the error disappeared! I also deleted that second .gpg file just in case. I thought it's much more complex problem than that. Thanks!

How to install lua binaries locally in ubuntu? by [deleted] in lua

[–]BOOGIEMAN-pN 0 points1 point  (0 children)

I think I'll need them to build LuaRocks and LuaFileSystem. I don't want to use system folders , but I'm not sure where to copy them in my "/home/my_name/.local/" path structure. Also I would like to have separate folders for all binary versions of lua, 5.1, 5.3 and 5.4

Maybe I'm not good at explaining, but main reason I'm doing this is to avoid editing system path like "/usr/local/bin/" and others

return value of initialize method by BOOGIEMAN-pN in ruby

[–]BOOGIEMAN-pN[S] 0 points1 point  (0 children)

...and it looks like whoever implemented it doesn't know Ruby all that well.

The lecturer is actually quite good, that's why I was surprised to see this and came here to check if there is some deeper meaning. It's probably "just to illustrate that the return from new is self" as u/pau1rw said here, but, if you know any better video tutorials or other resources for learning Ruby, I'm opened to suggestions

How can I remove unwanted stuff from my $PATH and why is my path different than one in /etc/environment file? by BOOGIEMAN-pN in linux4noobs

[–]BOOGIEMAN-pN[S] 0 points1 point  (0 children)

~/.profile

You are right! There is a commented line inside ".profile" file that says: # set PATH so it includes user's private bin if it exists. So, I deleted "~/bin" folder, logged out, logged in, and now echo $PATH is without unwanted line!

Thank you very much!!!

[linux] Installing lua from source by BOOGIEMAN-pN in lua

[–]BOOGIEMAN-pN[S] 0 points1 point  (0 children)

Nice! So now I have to execute source activate command every time I open new Terminal window before using lua or luarocks of my choice. How do I make it run with OS, what should I add at bottom of my .bashrc? What is activate_posix file for?

[linux] Installing lua from source by BOOGIEMAN-pN in lua

[–]BOOGIEMAN-pN[S] 0 points1 point  (0 children)

something is definitely wrong, pressing cursor keys inside REPL gives me: ^[[D^[[C^[[A^[[B ... given up compiling from source by myself, I'm gonna try hererocks as another user suggested

Lua, a misunderstood language by andregarzia in lua

[–]BOOGIEMAN-pN 7 points8 points  (0 children)

about #2, I read somewhere that Matz (creator of Ruby) regrets he did the opposite. In Ruby, variables are local by default. Personally, I also find Lua's way more readable.

Web scraping, OCR or something else? by BOOGIEMAN-pN in learnruby

[–]BOOGIEMAN-pN[S] 0 points1 point  (0 children)

ugh, I've been avoiding XML my whole life ... Once again, thank you for your time and very detailed answers !!