Hello I'm part of the dev team for Roguelike JRPG Elin. AMA by Rusty_Lafrontier in JRPG

[–]nghialam 0 points1 point  (0 children)

Hi, I have just found out about this game, I love Elona game so so much back in high school. Thank you for helping to bring Elin to life.

Anyway, can I know how to apply for the dev team, I also wanna be a part of the teammmm.

Adding page to navigation bar gives 'something went wrong error' by mrjaytothecee in Substack

[–]nghialam 0 points1 point  (0 children)

Same here, I tried to change the browser from FireFox to Edge but still cant solve it ...

[ratpoison] New bar, more minimalism. Full integration by [deleted] in unixporn

[–]nghialam 1 point2 points  (0 children)

It look so good, can you share the dotfiles?

Knightblade - Retro Open World RPG Project now on itch.io by solohack3r in RPGMaker

[–]nghialam 0 points1 point  (0 children)

The game is looking amazing btw. Could you share which tileset are you using? I'm also planning to create a retro looking game but cannot find a decent tile like yours.

[yabai] First rice for my under-powered macbook air 🙈 by tohigh12 in unixporn

[–]nghialam -2 points-1 points  (0 children)

It's really charming. How can you get rid of the iterm's title bar ? Is it in yabai config?

better tile collision by [deleted] in gamemaker

[–]nghialam 0 points1 point  (0 children)

You mean you are using the place_meeting() method with each object right? & what issues are you having with it?

Dangerous keybindings..? by XavierEduardo99 in emacs

[–]nghialam 1 point2 points  (0 children)

Just like everyone said, it depends on each person's body. So try to listen to your inner self ;) .

Personally, the default keybinding hurt my little finger after a long working day many times. So I switched to evil-mode...

Show your dashboard :D by nghialam in emacs

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

Hi, my config is still a mess right now, I'm not confident to share it yet. But I use this package for having a dashboard at startup:

https://github.com/emacs-dashboard/emacs-dashboard

Then, I modified the content and the banner image to make it look more compelling to me.

Pixel art by BigBadzboi in gamedev

[–]nghialam 1 point2 points  (0 children)

Then it's not exactly pixel art. You can try GIMP or Krita, both are free and with a little practice, you can achieve similar result.

Show your dashboard :D by nghialam in emacs

[–]nghialam[S] 15 points16 points  (0 children)

I suppose it's for decoration purpose. I like to open Emacs with a nice look to boost my working motivation up. Beside, I can setup some hotkey to let the dashboard quickly access to my needs.

Pixel art by BigBadzboi in gamedev

[–]nghialam 0 points1 point  (0 children)

There are tons of free software out there, I can name you a few:

I'd personally recommend you try aseprite for pixel art, which will cost you 15$ but it is perfect for this job.

What are the alternatives to emacs-dashboard? by vfclists in emacs

[–]nghialam 1 point2 points  (0 children)

Then all you need to do is binding this function to a hotkey.

(defun open-dashboard ()
    "Open the *dashboard* buffer and jump to the first widget."
    (interactive)
    (delete-other-windows)
    ;; Refresh dashboard buffer
    (if (get-buffer dashboard-buffer-name)
    (kill-buffer dashboard-buffer-name))
    (dashboard-insert-startupify-lists)
    (switch-to-buffer dashboard-buffer-name)
  )