An open API service indexing awesome lists of open source software.

https://github.com/qompassai/rust

Educational Content on the Rust Programming Language
https://github.com/qompassai/rust

Last synced: 5 months ago
JSON representation

Educational Content on the Rust Programming Language

Awesome Lists containing this project

README

          

Qompass AI on Rust

Educational Content on the Rust Programming Language

![Repository Views](https://komarev.com/ghpvc/?username=qompassai-rust)
![GitHub all releases](https://img.shields.io/github/downloads/qompassai/rust/total?style=flat-square)


Rust


Rust Documentation
Rust Tutorials


License: AGPL v3
License: Q-CDA



Ferris the Crab
Rust Solutions


* [Qompass.AI](https://github.com/qompassai/qai)
* [Qompass Bunker](https://github.com/qompassai/bunker)
* [Qompass Hold](https://github.com/qompassai/qompass-hold)
* [Qompass QXet](https://github.com/qompassai/qxet)
* [Qompass on Tauri](https://github.com/qompassai/tauri)
* [Qompass Volta](https://github.com/qompassai/volta)
* [Qompass Vongola](https://github.com/qompassai/vongola)


โ–ถ๏ธ Qompass AI Quick Start

```sh
curl -fSsL https://raw.githubusercontent.com/qompassai/rust/main/scripts/quickstart.sh | sh
```





๐Ÿ“„ We STRONGLY advise you read the script BEFORE running it ๐Ÿ˜‰


#!/bin/sh
# /qompassai/rust/scripts/quickstart.sh
# Qompass AI Rust Quick Start
# Copyright (C) 2025 Qompass AI, All rights reserved
####################################################
set -eu
IFS='
'
LOCAL_PREFIX="$HOME/.local"
BIN_DIR="$LOCAL_PREFIX/bin"
CONFIG_DIR="$HOME/.config/rust"
DATA_DIR="$HOME/.local/sharerust"
mkdir -p "$BIN_DIR" "$CONFIG_DIR" "$DATA_DIR"
case ":$PATH:" in
*":$BIN_DIR:"*) ;;
*) PATH="$BIN_DIR:$PATH" ;;
esac
export PATH
NEEDED_TOOLS="git curl tar make clang bash"
MISSING=""
for tool in $NEEDED_TOOLS; do
if ! command -v "$tool" >/dev/null 2>&1; then
if [ -x "/usr/bin/$tool" ]; then
ln -sf "/usr/bin/$tool" "$BIN_DIR/$tool"
echo " โ†’ Added symlink for $tool in $BIN_DIR (not originally in PATH)"
else
MISSING="$MISSING $tool"
fi
fi
done
if [ -n "$MISSING" ]; then
echo "โš  Warning: The following tools are missing (not installed or not symlinkable):$MISSING"
echo "Please install them manually with your package manager to continue."
exit 1
fi
cat <"/tmp/rust_menu.$USER"
1 Rust Stable (x86_64/Linux) stable-x86_64-unknown-linux-gnu
2 Rust Nightly (x86_64/Linux) nightly-x86_64-unknown-linux-gnu
3 Rust Stable (aarch64/Linux) stable-aarch64-unknown-linux-gnu
4 Rust Stable for Mac (x86_64/macos) stable-aarch64-apple-darwin
5 Rust Nightly for Mac (aarch64/macos) nightly-aarch64-apple-darwin
q Quit
a All (Advanced)
EOF
printf 'โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ\n'
printf 'โ”‚ Qompass AI ยท Rust Quickโ€‘Start โ”‚\n'
printf 'โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ\n'
printf ' ยฉ 2025 Qompass AI. All rights reserved \n\n'
awk -F '\t' 'NF==3 {printf " %s) %s\n", $1, $2}' "/tmp/rust_menu.$USER"
printf ' a) all (Advanced)\n'
printf ' q) quit\n\n'
printf "Choose toolchains to install [1]: "
read -r choice
[ -z "$choice" ] && choice="a"
[ "$choice" = "q" ] && exit 0
VERSIONS=""
if [ "$choice" = "a" ]; then
VERSIONS=$(awk -F '\t' 'NF==3 {print $3}' "/tmp/rust_menu.$USER")
else
for sel in $choice; do
SELVER=$(awk -F '\t' -v k="$sel" '$1 == k {print $3}' "/tmp/rust_menu.$USER")
if [ -z "$SELVER" ]; then
echo "Unknown option: $sel"
rm -f "/tmp/rust_menu.$USER"
exit 1
fi
VERSIONS="$VERSIONS $SELVER"
done
fi
OS="unknown"
case "$(uname -s)" in
Linux*) OS="linux" ;;
Darwin*) OS="macos" ;;
CYGWIN* | MINGW* | MSYS*) OS="windows" ;;
esac
echo "==> Detected OS: $OS"
add_path_to_shell_rc() {
rcfile=$1
line="export PATH=\"$BIN_DIR:\$PATH\""
if [ -f "$rcfile" ]; then
if ! grep -Fxq "$line" "$rcfile"; then
printf '\n# Added by Qompass AI Rust quickstart script\n%s\n' "$line" >>"$rcfile"
echo " โ†’ Added PATH export to $rcfile"
fi
fi
}
if ! command -v rustup >/dev/null 2>&1; then
echo "โš  rustup not found. Installing rustup for $OS ..."
case "$OS" in
linux | macos)
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
PATH="$HOME/.cargo/bin:$PATH"
export PATH
add_path_to_shell_rc "$HOME/.bashrc"
add_path_to_shell_rc "$HOME/.zshrc"
add_path_to_shell_rc "$HOME/.profile"
;;
windows)
echo "โŒ Automated rustup installation is not supported on Windows by this script."
echo "โžก Please install it manually via https://rustup.rs/"
rm -f "/tmp/rust_menu.$USER"
exit 1
;;
*)
echo "โŒ Unknown OS. Cannot install rustup."
rm -f "/tmp/rust_menu.$USER"
exit 1
;;
esac
else
echo "โœ… rustup found"
fi
COMPONENTS="cargo clippy rustfmt rust-src rust-docs rustc rust-analyzer llvm-tools-preview"
TARGETS="x86_64-unknown-linux-musl x86_64-unknown-linux-gnu aarch64-unknown-linux-gnu aarch64-apple-darwin wasm32-wasi riscv64gc-unknown-linux-gnu aarch64-unknown-linux-rocm"
CARGO_TOOLS="bacon bacon-ls bat cargo2nix crane cargo-zigbuild cross cargo-debugger cargo-lipo cargo-apk cargo-godot cargo-ndk maturin cargo-leptos cxxbridge-cmd flamegraph cargo-bloat cargo-udeps cargo-sweep nixpkgs-fmt"
echo "==> Installing Rust toolchains..."
for t in $VERSIONS; do
echo " โ–ช Installing $t"
rustup toolchain install "$t"
echo " Adding components to $t"
for c in $COMPONENTS; do
rustup component add "$c" --toolchain "$t" 2>/dev/null || true
done
done
echo "==> Adding cross-compilation targets..."
for t in $VERSIONS; do
echo " โ–ช Processing targets for $t"
for tgt in $TARGETS; do
rustup target add "$tgt" --toolchain "$t" 2>/dev/null || true
done
done
echo "==> Installing popular cargo tools..."
for tool in $CARGO_TOOLS; do
echo " โ–ช Installing $tool"
cargo install "$tool" --locked --force 2>/dev/null || true
done
if ! command -v zig >/dev/null 2>&1; then
cargo install zig --locked --force 2>/dev/null || true
fi
echo "โœ… Rust cross-compilation environment setup complete!"
echo "โ†’ Please restart your terminal or run 'export PATH=\"$BIN_DIR:\$PATH\"' to update your PATH."
rm -f "/tmp/rust_menu.$USER"
exit 0

Or, View the quickstart script.

๐Ÿงญ About Qompass AI


Matthew A. Porter

Former Intelligence Officer

Educator & Learner

DeepTech Founder & CEO


Publications




ORCID


ResearchGate


Zenodo

Developer Programs

[![NVIDIA Developer](https://img.shields.io/badge/NVIDIA-Developer_Program-76B900?style=for-the-badge\&logo=nvidia\&logoColor=white)](https://developer.nvidia.com/)
[![Meta Developer](https://img.shields.io/badge/Meta-Developer_Program-0668E1?style=for-the-badge\&logo=meta\&logoColor=white)](https://developers.facebook.com/)
[![HackerOne](https://img.shields.io/badge/-HackerOne-%23494649?style=for-the-badge\&logo=hackerone\&logoColor=white)](https://hackerone.com/phaedrusflow)
[![HuggingFace](https://img.shields.io/badge/HuggingFace-qompass-yellow?style=flat-square\&logo=huggingface)](https://huggingface.co/qompass)
[![Epic Games Developer](https://img.shields.io/badge/Epic_Games-Developer_Program-313131?style=for-the-badge\&logo=epic-games\&logoColor=white)](https://dev.epicgames.com/)

Professional Profiles




Personal LinkedIn


Startup LinkedIn

Social Media




X/Twitter


Instagram


Qompass AI YouTube

๐Ÿ”ฅ How Do I Support

๐Ÿ›๏ธ Qompass AI Pre-Seed Funding 2023-2025
๐Ÿ† Amount
๐Ÿ“… Date

RJOS/Zimmer Biomet Research Grant
$30,000
March 2024

Pathfinders Intern Program

View on LinkedIn
$2,000
October 2024



๐Ÿค How To Support Our Mission

[![GitHub Sponsors](https://img.shields.io/badge/GitHub-Sponsor-EA4AAA?style=for-the-badge\&logo=github-sponsors\&logoColor=white)](https://github.com/sponsors/phaedrusflow)
[![Patreon](https://img.shields.io/badge/Patreon-Support-F96854?style=for-the-badge\&logo=patreon\&logoColor=white)](https://patreon.com/qompassai)
[![Liberapay](https://img.shields.io/badge/Liberapay-Donate-F6C915?style=for-the-badge\&logo=liberapay\&logoColor=black)](https://liberapay.com/qompassai)
[![Open Collective](https://img.shields.io/badge/Open%20Collective-Support-7FADF2?style=for-the-badge\&logo=opencollective\&logoColor=white)](https://opencollective.com/qompassai)
[![Buy Me A Coffee](https://img.shields.io/badge/Buy%20Me%20A%20Coffee-Support-FFDD00?style=for-the-badge\&logo=buy-me-a-coffee\&logoColor=black)](https://www.buymeacoffee.com/phaedrusflow)

๐Ÿ” Cryptocurrency Donations

**Monero (XMR):**


Monero QR Code


42HGspSFJQ4MjM5ZusAiKZj9JZWhfNgVraKb1eGCsHoC6QJqpo2ERCBZDhhKfByVjECernQ6KeZwFcnq8hVwTTnD8v4PzyH

๐Ÿ“‹ Copy Address

Funding helps us continue our research at the intersection of AI, healthcare, and education

Frequently Asked Questions

### Q: How do you mitigate against bias?

**TLDR - we do math to make AI ethically useful**

### A: We delineate between mathematical bias (MB) - a fundamental parameter in neural network equations - and algorithmic/social bias (ASB). While MB is optimized during model training through backpropagation, ASB requires careful consideration of data sources, model architecture, and deployment strategies. We implement attention mechanisms for improved input processing and use legal open-source data and secure web-search APIs to help mitigate ASB.

[AAMC AI Guidelines | One way to align AI against ASB](https://www.aamc.org/about-us/mission-areas/medical-education/principles-ai-use)

### AI Math at a glance

## Forward Propagation Algorithm

$$
y = w\_1x\_1 + w\_2x\_2 + ... + w\_nx\_n + b
$$

Where:

* $y$ represents the model output
* $(x\_1, x\_2, ..., x\_n)$ are input features
* $(w\_1, w\_2, ..., w\_n)$ are feature weights
* $b$ is the bias term

### Neural Network Activation

For neural networks, the bias term is incorporated before activation:

$$
z = \sum\_{i=1}^{n} w\_ix\_i + b
$$
$$
a = \sigma(z)
$$

Where:

* $z$ is the weighted sum plus bias
* $a$ is the activation output
* $\sigma$ is the activation function

### Attention Mechanism- aka what makes the Transformer (The "T" in ChatGPT) powerful

* [Attention High level overview video](https://www.youtube.com/watch?v=fjJOgb-E41w)

* [Attention Is All You Need Arxiv Paper](https://arxiv.org/abs/1706.03762)

The Attention mechanism equation is:

$$
\text{Attention}(Q, K, V) = \text{softmax}\left( \frac{QK^T}{\sqrt{d\_k}} \right) V
$$

Where:

* $Q$ represents the Query matrix
* $K$ represents the Key matrix
* $V$ represents the Value matrix
* $d\_k$ is the dimension of the key vectors
* $\text{softmax}(\cdot)$ normalizes scores to sum to 1

### Q: Do I have to buy a Linux computer to use this? I don't have time for that!

### A: No. You can run Linux and/or the tools we share alongside your existing operating system:

* Windows users can use Windows Subsystem for Linux [WSL](https://learn.microsoft.com/en-us/windows/wsl/install)
* Mac users can use [Homebrew](https://brew.sh/)
* The code-base instructions were developed with both beginners and advanced users in mind.

### Q: Do you have to get a masters in AI?

### A: Not if you don't want to. To get competent enough to get past ChatGPT dependence at least, you just need a computer and a beginning's mindset. Huggingface is a good place to start.

* [Huggingface](https://docs.google.com/presentation/d/1IkzESdOwdmwvPxIELYJi8--K3EZ98_cL6c5ZcLKSyVg/edit#slide=id.p)

### Q: What makes a "small" AI model?

### A: AI models ~=10 billion(10B) parameters and below. For comparison, OpenAI's GPT4o contains approximately 200B parameters.

What a Dual-License Means

### Protection for Vulnerable Populations

The dual licensing aims to address the cybersecurity gap that disproportionately affects underserved populations. As highlighted by recent attacks\[1], low-income residents, seniors, and foreign language speakers face higher-than-average risks of being victims of cyberattacks. By offering both open-source and commercial licensing options, we encourage the development of cybersecurity solutions that can reach these vulnerable groups while also enabling sustainable development and support.

### Preventing Malicious Use

The AGPL-3.0 license ensures that any modifications to the software remain open source, preventing bad actors from creating closed-source variants that could be used for exploitation. This is especially crucial given the rising threats to vulnerable communities, including children in educational settings. The attack on Minneapolis Public Schools, which resulted in the leak of 300,000 files and a $1 million ransom demand, highlights the importance of transparency and security\[8].

### Addressing Cybersecurity in Critical Sectors

The commercial license option allows for tailored solutions in critical sectors such as healthcare, which has seen significant impacts from cyberattacks. For example, the recent Change Healthcare attack\[4] affected millions of Americans and caused widespread disruption for hospitals and other providers. In January 2025, CISA\[2] and FDA\[3] jointly warned of critical backdoor vulnerabilities in Contec CMS8000 patient monitors, revealing how medical devices could be compromised for unauthorized remote access and patient data manipulation.

### Supporting Cybersecurity Awareness

The dual licensing model supports initiatives like the Cybersecurity and Infrastructure Security Agency (CISA) efforts to improve cybersecurity awareness\[7] in "target rich" sectors, including K-12 education\[5]. By allowing both open-source and commercial use, we aim to facilitate the development of tools that support these critical awareness and protection efforts.

### Bridging the Digital Divide

The unfortunate reality is that too many individuals and organizations have gone into a frenzy in every facet of our daily lives\[6]. These unfortunate folks identify themselves with their talk of "10X" returns and building towards Artificial General Intelligence aka "AGI" while offering GPT wrappers. Our dual licensing approach aims to acknowledge this deeply concerning predatory paradigm with clear eyes while still operating to bring the best parts of the open-source community with our services and solutions.

### Recent Cybersecurity Attacks

Recent attacks underscore the importance of robust cybersecurity measures:

* The Change Healthcare cyberattack in February 2024 affected millions of Americans and caused significant disruption to healthcare providers.
* The White House and Congress jointly designated October 2024 as Cybersecurity Awareness Month. This designation comes with over 100 actions that align the Federal government and public/private sector partners are taking to help every man, woman, and child to safely navigate the age of AI.

By offering both open source and commercial licensing options, we strive to create a balance that promotes innovation and accessibility. We address the complex cybersecurity challenges faced by vulnerable populations and critical infrastructure sectors as the foundation of our solutions, not an afterthought.

### References