Skip to content

Instantly share code, notes, and snippets.

View eyadsibai's full-sized avatar
🎯
Focusing

Eyad Sibai eyadsibai

🎯
Focusing
View GitHub Profile
@jlia0
jlia0 / agent loop
Last active April 24, 2025 19:25
Manus tools and prompts
You are Manus, an AI agent created by the Manus team.
You excel at the following tasks:
1. Information gathering, fact-checking, and documentation
2. Data processing, analysis, and visualization
3. Writing multi-chapter articles and in-depth research reports
4. Creating websites, applications, and tools
5. Using programming to solve various problems beyond development
6. Various tasks that can be accomplished using computers and the internet
@disler
disler / README_MINIMAL_PROMPT_CHAINABLE.md
Last active March 31, 2025 17:44
Minimal Prompt Chainables - Zero LLM Library Sequential Prompt Chaining & Prompt Fusion

Minimal Prompt Chainables

Sequential prompt chaining in one method with context and output back-referencing.

Files

  • main.py - start here - full example using MinimalChainable from chain.py to build a sequential prompt chain
  • chain.py - contains zero library minimal prompt chain class
  • chain_test.py - tests for chain.py, you can ignore this
  • requirements.py - python requirements

Setup

@gotbletu
gotbletu / eXoDOS 6.04 game list.txt
Last active March 14, 2025 02:45
eXoDOS 6.04 game list
!Bingo Granny! (2002).zip
$100,000 Pyramid (1988).zip
'Nam 1965-1975 (1991).zip
+K (1996).zip
007 - Licence to Kill (1989).zip
1 Ton (1996).zip
1000 Miglia (1992).zip
1000 Miler (1987).zip
10Rogue (1984).zip
10th Frame (1987).zip
@gotbletu
gotbletu / eXoScummVM 2.8.0 game list.txt
Created March 19, 2024 11:32
eXoScummVM 2.8.0 game list
11th Hour, The (Windows).zip
3 Skulls of the Toltecs (CD DOS).zip
7th Guest, The (Multi-Platform).zip
Above the Waves (Windows).zip
Actual Destination (Windows).zip
Adiboo Magical Playland (CD Windows, UK).zip
Adventures of Robin Hood, The (DOS).zip
AGI Tetris (DOS).zip
AJs World of Discovery (DOS).zip
Al Emmo And The Lost Dutchman's Mine (Windows).zip
@gotbletu
gotbletu / eXoWin3x 2.0 game list.txt
Created March 19, 2024 11:30
eXoWin3x 2.0 game list
'Jongg CD!, The (1997).zip
101 Dalmatians - Escape From DeVil Manor (1997).zip
1942 - The Pacific Air War Gold (1994).zip
20,000 Leagues Under The Sea (1995).zip
3-D Dinosaur Adventure Anniversary Edition (1997).zip
3-D Ultra Minigolf (1997).zip
3-D Ultra Pinball (1995).zip
3-D Ultra Pinball - Creep Night (1996).zip
3-D Ultra Pinball - The Lost Continent (1997).zip
3D Atlas '98 (1997).zip
@hermannolafs
hermannolafs / configuration.nix
Last active December 19, 2024 12:27
Nixos Gnome RDP Remote Desktop
{
# minimized for clarity.
# Some of these might not be needed. After some trial and error
# I got this working with these configs.
# I do not have the patience to rn an elimination test.
services.gnome.gnome-remote-desktop.enable = true;
# Enable the X11 windowing system.
services.xserver.enable = true;
@nickrttn
nickrttn / nixos-vm-on-macos-arm.md
Created June 1, 2023 09:49
NixOS on macOS ARM through tart
@rasbt
rasbt / video-subtitles-via-whisper.py
Last active March 20, 2025 13:55
Script that creates subtitles (closed captions) for all MP4 video files in your current directory
# Sebastian Raschka 09/24/2022
# Create a new conda environment and packages
# conda create -n whisper python=3.9
# conda activate whisper
# conda install mlxtend -c conda-forge
# Install ffmpeg
# macOS & homebrew
# brew install ffmpeg
# Ubuntu
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@InternetUnexplorer
InternetUnexplorer / command-not-found.sh
Last active March 17, 2024 11:53
Improved home-manager nix-locate configuration, with an auto-updated index and a better command-not-found handler
# Adapted from https://github.com/bennofs/nix-index/blob/master/command-not-found.sh
command_not_found_handle () {
if [ -n "${MC_SID-}" ] || ! [ -t 1 ]; then
>&2 echo "$1: command not found"
return 127
fi
echo -n "searching nix-index..."
ATTRS=$(@nix-locate@ --minimal --no-group --type x --type s --top-level --whole-name --at-root "/bin/$1")