Skip to content

Instantly share code, notes, and snippets.

View ari-party's full-sized avatar
💭
cat

ari ari-party

💭
cat
View GitHub Profile
@ari-party
ari-party / tracks
Last active November 15, 2025 06:00
tracks
Fuze 3.2h
Kill EVERYBODY 2.1h
Cannibal 2.1h
Come Alive 2.0h
Louder Than Words 1.9h
@ari-party
ari-party / artists
Last active November 15, 2025 06:00
artists
Pendulum 21.4h
Fred again.. 7.5h
Skrillex 7.3h
NGHTMRE 6.4h
ISOxo 3.2h
  • app – Application Server (non-web)
  • sql – Database Server
  • ftp – SFTP server
  • mta – Mail Server
  • dns – Name Server
  • cfg – Configuration Management (puppet/ansible/etc.)
  • mon – Monitoring Server (nagios, sensu, etc.)
  • prx – Proxy/Load Balancer (software)
  • ssh – SSH Jump/Bastion Host
  • sto – Storage Server
local ServerStorage = game:GetService("ServerStorage")
local UnitTests = ServerStorage:FindFirstChild("UnitTests") :: ModuleScript
local erroredModules = {}
for _, testModule in UnitTests:GetChildren() do
local success, err = pcall(require, testModule)
if not success then
table.insert(erroredModules, { testModule:GetFullName(), err })
end