Skip to content

Instantly share code, notes, and snippets.

@collinsjacqueline0
collinsjacqueline0 / aliases.sh
Created July 6, 2026 17:05
Useful bash aliases
alias ll='ls -alh'
alias gs='git status'
alias gp='git pull --rebase'
@dsvensson
dsvensson / anorms.cpp
Created July 6, 2026 17:05
recursive consteval anorms.h generator
/**
* ISC License
*
* Copyright 2026 Daniel Svensson, dsvensson@gmail.com
*
* Permission to use, copy, modify, and/or distribute this
* software for any purpose with or without fee is hereby
* granted, provided that the above copyright notice and
* this permission notice appear in all copies.
*

Themis

Themis is a rule and decision management platform for teams that need to author, review, validate, version, build, test, and deploy business logic with confidence. It brings together workspace management, Git-backed rule sources, decision lifecycles, decision and rule-source simulation, rate-card generation, artifact generation, deployment workflows, and API-key-based automation in one product surface.

This repository contains the main backend and frontend applications, along with example projects for experimenting with rule packaging and deployment flows.

@solisisaac798
solisisaac798 / aliases.sh
Created July 6, 2026 17:04
Useful bash aliases
alias ll='ls -alh'
alias gs='git status'
alias gp='git pull --rebase'
@thomasadrian6308
thomasadrian6308 / aliases.sh
Created July 6, 2026 17:04
Useful bash aliases
alias ll='ls -alh'
alias gs='git status'
alias gp='git pull --rebase'
@murrayjames0928
murrayjames0928 / aliases.sh
Created July 6, 2026 17:04
Useful bash aliases
alias ll='ls -alh'
alias gs='git status'
alias gp='git pull --rebase'
@pattersonpeggy220
pattersonpeggy220 / aliases.sh
Created July 6, 2026 17:03
Useful bash aliases
alias ll='ls -alh'
alias gs='git status'
alias gp='git pull --rebase'
@choco-bot
choco-bot / Install.txt
Created July 6, 2026 17:03
thegiant.freshinstall v1.2 - Failed - Package Tests Results
2026-07-06 16:17:47,435 588 [DEBUG] - XmlConfiguration is now operational
2026-07-06 16:17:48,017 588 [DEBUG] - Adding new type 'CygwinService' for type 'IAlternativeSourceRunner' from assembly 'choco'
2026-07-06 16:17:48,031 588 [DEBUG] - Adding new type 'CygwinService' for type 'IInstallSourceRunner' from assembly 'choco'
2026-07-06 16:17:48,031 588 [DEBUG] - Adding new type 'PythonService' for type 'IAlternativeSourceRunner' from assembly 'choco'
2026-07-06 16:17:48,048 588 [DEBUG] - Adding new type 'PythonService' for type 'IListSourceRunner' from assembly 'choco'
2026-07-06 16:17:48,065 588 [DEBUG] - Adding new type 'PythonService' for type 'IInstallSourceRunner' from assembly 'choco'
2026-07-06 16:17:48,065 588 [DEBUG] - Adding new type 'PythonService' for type 'IUninstallSourceRunner' from assembly 'choco'
2026-07-06 16:17:48,077 588 [DEBUG] - Adding new type 'RubyGemsService' for type 'IAlternativeSourceRunner' from assembly 'choco'
2026-07-06 16:17:48,077 588 [DEBUG] - Adding new type 'RubyGe
@1InfinityDoesExist
1InfinityDoesExist / DesignPatternsApplication.java
Created July 6, 2026 17:03
Singleton Pattern Part 2 — Spring Boot driver (GO4)
package com.design.patterns;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import com.design.patterns.singletone.SingletonPattern;
@SpringBootApplication
public class DesignPatternsApplication {