Skip to content
View Sypherox's full-sized avatar
🌠
🌠

Block or report Sypherox

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Sypherox/README.md
Typing SVG

GitHub Discord Profile Views


Start Building Me
@Singleton @Builder @SuppressWarnings("unchecked")
public final class Sypherox extends AbstractDeveloper
        implements Initializable, Validatable, Serializable {

    private static final long serialVersionUID = 0xDEADBEEFL;
    private static volatile Sypherox INSTANCE;

    private final AtomicBoolean initialized     = new AtomicBoolean(false);
    private final ReentrantReadWriteLock lock    = new ReentrantReadWriteLock();

    @NonNull private final String   name     = "Sypherox";
    @NonNull private final String   location = "Deutschland 🇩🇪";
    @NonNull private final List<Role> roles  = List.of(Role.JAVA_DEVELOPER, Role.PYTHON_DEVELOPER);

    public static synchronized Sypherox getInstance() {
        return INSTANCE == null ? (INSTANCE = new Sypherox()) : INSTANCE;
    }

    @Override
    public CompletableFuture<Void> onEnable() {
        return CompletableFuture.runAsync(() -> {
            lock.writeLock().lock();
            try { this.validate(); this.initializeServices(); this.initialized.set(true); }
            finally { lock.writeLock().unlock(); }
        }).thenRun(() -> LOGGER.info("[✅] Sypherox Dev Environment ⟿ Ready."))
          .exceptionally(ex -> { throw new DevEnvironmentException("Bootstrap failed", ex); });
    }
}
  

Pinned Loading

  1. EasyPerfMonitor EasyPerfMonitor Public

    Modern Performance Monitoring Plugin for Minecraft Servers

    Java 1 1

  2. mod-updater mod-updater Public

    Small Python tool that automatically updates all your installed mods via the Modrinth API.

    Python 2

  3. Devyl Devyl Public

    Devyl is a Digital Forensics & Incident Response tool built for Minecraft screenshare investigations.

    Python 1

  4. Sypherox.github.io Sypherox.github.io Public

    My personal Website.

    HTML