Skip to content

Instantly share code, notes, and snippets.

Roadmap


The Hamiltonian Principle

This roadmap is guided by the Hamiltonian Principle, inspired by Margaret Hamilton’s pioneering work on Apollo mission software.
Hamilton established that robustness, evaluation, and error management are not afterthoughts but core to engineering practice.

Her foresight in building error detection, recovery systems, and human-in-the-loop processes ensured that software could withstand uncertainty and still deliver mission-critical reliability.

Internship Opportunity at imginate

Join us at imginate, an AI powered image generation web application.

About imginate

imginate is a modern web application built with Next.js, React, and TypeScript. We integrate leading AI APIs (OpenAI, Replicate) with Firebase for authentication and storage, Cloudinary for image hosting, and Tailwind CSS for responsive UI.

Role: AI & Full-Stack Engineering Intern

@RoskiDeluge
RoskiDeluge / keywrds-internship.md
Last active April 15, 2024 06:32
Keywrds.ai Internship Opportunity

Keywrds.ai has an unpaid internship opportunity for a CS student interested in developing skills in generative AI and full stack web development. We are a locally owned SaaS app in the generative AI and SEO/marketing automation space. To learn more about the product, please visit: https://keywrds.ai/

As part of the internship you can expect 1-1 guidance from the owner and you can expect to complete a portfolio ready feature.

Here's a sample of some of the items you'll work on:

Select an existing project feature/task for further development:

  • Add Langhain and enhance the AI engine pipeline via tools and functions (python)
  • Add Langsmith for observability and evaluation
@RoskiDeluge
RoskiDeluge / gh_aliases.txt
Last active August 12, 2022 09:24
My Zsh Aliases for GitHub
# Aliases Bash or Zsh (Mac)
# Edit .zshrc in vim or touch .bash_profile to your root directory and add the following commands, replacing [your-branch] with your branch name.
alias gcm='git commit -m'
alias gc='git clone'
alias gcb='git checkout -b [your-branch]'
alias ga='git add .'
alias gp='git push'
alias gpr='git push origin [your-branch]'
alias gba='git branch -a'
alias gs='git status'
@RoskiDeluge
RoskiDeluge / tres.hoon
Created December 3, 2019 22:20
Week 3 Hoon 101
|= b=(list @)
?~ b
~
+6:t.b
@RoskiDeluge
RoskiDeluge / tailcall.hoon
Created December 3, 2019 22:19
tail call optimized recursion example commented
|= n=@ud
:: We create a gate using rune "|=" and assign an unsigned integer "@ud" to face "n"
::
=/ t=@ud 1
:: Use the "=/" rune to create face "t" that accepts unsigned integers. Assign starting value "1".
::
|-
:: Use the "|-" as the recursion point for the gate
::
?: =(n 1)
@RoskiDeluge
RoskiDeluge / naked.hoon
Last active November 28, 2019 07:45
Hoon Week 1
|= end=@ `@p`end
@RoskiDeluge
RoskiDeluge / chekr.hoon
Last active November 28, 2019 08:53
Hoon Week 2
|= n=*
?: ?=(@ n)
=(0 (mod n 2)) :: returns %.y if atom is even and %.n if atom is odd.
"You entered a cell."
:: Using the ?@ rune with the code below returns a nest-fail
|= n=*
?@ =(0 (mod n 2))
"You entered an even atom"
"You entered a cell."
@RoskiDeluge
RoskiDeluge / callback_functions.js
Last active October 14, 2019 03:30
Template for cb functions
// Higher level numbers function
function numbers(cb, x, y){
return cb(x, y);
}
// First class functions
var add = (x, y) => x + y;
var subtract = (x, y) => x - y;