Skip to content

Instantly share code, notes, and snippets.

View ChrisAcrobat's full-sized avatar
👨‍💻

Christoffer Olofsson ChrisAcrobat

👨‍💻
View GitHub Profile
@Seb105
Seb105 / fn_modelVillage.sqf
Last active March 14, 2021 20:13
Instant model village script
No longer maintained.
Find the latest version here:
https://github.com/Seb105/Arma-Briefingtable/tree/main/example_mission/SebsBriefingTableStandaloneDemo.Altis
@ChrisAcrobat
ChrisAcrobat / build.gradle
Last active April 13, 2020 21:49
Git and date based version name.
def checkIfTracked = { ->
def stdout = new ByteArrayOutputStream()
exec {
commandLine 'git', 'status', '--porcelain'
standardOutput = stdout
}
return stdout.toString().trim().equals("") ? "" : "-MODIFIED"
}
def getGitCommitDate = { ->