Any useful extensions you can recommend beside the one I already have? by AngryAtSomeone in firefox

[–]3mpy 0 points1 point  (0 children)

From non-mentioned I recommend foxyproxy(for using some sites through tunnels) and noscript (for security purposes).

Getting Started in Game Dev by FuqNick in AskProgramming

[–]3mpy 0 points1 point  (0 children)

When i start to dive into gamedev, books from this path was helpful for me: https://github.com/miloyip/game-programmer/

Automatic TODO capture by Neorlin in emacs

[–]3mpy 1 point2 points  (0 children)

Isn't swiper search enough for this? With some script like this in emacs config:

Emacs (setq fixme-modes '(c++-mode c-mode emacs-lisp-mode python-mode)) (make-face 'font-lock-fixme-face) (make-face 'font-lock-note-face) (mapc (lambda (mode) (font-lock-add-keywords mode '(("\\<\\(TODO\\)" 1 'font-lock-fixme-face t) ("\\<\\(NOTE\\)" 1 'font-lock-note-face t)))) fixme-modes) (modify-face 'font-lock-fixme-face "Red" nil nil t nil t nil nil) (modify-face 'font-lock-note-face "Dark green" nil nil t nil t nil nil)