Skip to content
View danmurrelljr's full-sized avatar

Organizations

@AuroraToolkit

Block or report danmurrelljr

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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

Pinned Loading

  1. habla habla Public

    Easy localization for chatbots.

    JavaScript

  2. Flow Architecture, 2024 - A flow con... Flow Architecture, 2024 - A flow control architecture for Swift applications, with Branchable and Navigable flows for flexible state management and streamlined, testable user journeys
    1
    //
    2
    //  Flow.swift
    3
    //  Created by Dan Murrell Jr on 10/19/24.
    4
    //
    5
    
                  
  3. AuroraToolkit/AuroraCore AuroraToolkit/AuroraCore Public

    AuroraCore is the foundational library within AuroraToolkit, enabling AI-driven workflows, context management, and seamless integration with large language models (LLMs).

    Swift 6

  4. A simple object to monitor a set of ... A simple object to monitor a set of tasks marking a "busy" state. Written in Swift, but easy to port to other languages with Set collections
    1
    /**
    2
     Manages a set of tasks to consider something in a "busy" state
    3
     */
    4
    class IsBusy<T: Hashable> {
    5
      private var busySet = Set<T>() {