Skip to content

Instantly share code, notes, and snippets.

View jambelnet's full-sized avatar

John Ambeliotis jambelnet

View GitHub Profile
@jambelnet
jambelnet / openmanus.sh
Created June 6, 2025 13:14
A Bash script to automate the installation and configuration of OpenManus.
#!/bin/bash
# Install uv
echo "Installing uv..."
curl -LsSf https://astral.sh/uv/install.sh | sh
# Clone the repository
echo "Cloning OpenManus repository..."
git clone https://github.com/mannaandpoem/OpenManus.git
cd OpenManus || exit
@jambelnet
jambelnet / ASP.NET Core Identity script for MySql
Created July 7, 2018 12:19
ASP.NET Core Identity script for MySql
--
-- MySql - ASP.NET Core Identity
--
--
-- Table structure for table `aspnetroles`
--
CREATE TABLE IF NOT EXISTS AspNetRoles (
`Id` varchar(128) NOT NULL,