- 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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
confuse urself 1.7h | |
BLIND (RAVE MIX) 1.6h | |
Jungle - Rico Nasty Remix 1.4h | |
I'll Be Right Back 1.3h | |
POWER 1.3h |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Skrillex 16.7h | |
Knock2 11.4h | |
Fred again.. 11.3h | |
ISOxo 10.8h | |
ISOKNOCK 5.1h |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local ServerScriptService = game:GetService("ServerScriptService") | |
local UnitTests = ServerScriptService: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 |