Skip to content

Instantly share code, notes, and snippets.

@cowwabanga
cowwabanga / build.bat
Created May 13, 2024 01:24
How to build Love2D game
copy /b C:\<path-to-love>\love.exe+%1 "%~n1.exe"
@cowwabanga
cowwabanga / init.el
Last active May 13, 2024 01:24
Emacs config
;; Store backup files in special folder
(setq backup-directory-alist `(("." . "C:/Users/User/Documents/emacs-backups")))
;; Set default font to Iosevka 13
(set-frame-font "Iosevka 13" nil t)
;;; org-mode ;;;
;; Hide symbols like /.../ for italic or *...* for bold, etc.
(setq org-hide-emphasis-markers t)
@cowwabanga
cowwabanga / Brief Haxe Tutorial.md
Last active February 21, 2024 16:04
Brief Haxe Tutorial
@cowwabanga
cowwabanga / Getting started with Haxe.md
Created February 21, 2024 08:18
How to install Haxe on Linux

Getting started with Haxe

Note

Source is no longer available.
Important to say, some things can be outdated.

This doc is a guide to installing and setting up the latest version of Haxe onto Debian GNU/Linux (the “Testing” distribution).

Install

@cowwabanga
cowwabanga / Getting started with Haxe targetting Hashlink.md
Last active February 21, 2024 08:18
How to Install Hashlink for Linux
@cowwabanga
cowwabanga / commit.bat
Last active February 21, 2024 08:09
Commit all files in working directory and place date and time in commit message.
@ECHO OFF
set timestamp=%DATE% %TIME%
git pull
git status
git add .
git commit -am "Updated on : %timestamp%"
git push
echo Created new "%timestamp%" commit
git status
PAUSE