Skip to content

Instantly share code, notes, and snippets.

View doobidoo's full-sized avatar
:octocat:
AI Research Tinkerer | Perpetual Learner

Henry doobidoo

:octocat:
AI Research Tinkerer | Perpetual Learner
View GitHub Profile
@doobidoo
doobidoo / saphouskeeping.md
Last active March 20, 2025 10:46
Strategic SAP Housekeeping with MyWave.ai Agentic Automation

Strategic SAP Housekeeping with MyWave.ai Agentic Automation

By Heinrich Krupp, Kreuzlingen(CH) 20th of February 2025

Efficient SAP system management is evolving beyond traditional automation to embrace agentic AI approaches. MyWave.ai's ready-to-deploy SAP AI agents now offer unprecedented capabilities for intelligent system maintenance while maintaining performance, optimizing database utilization, and ensuring compliance. This paper examines essential SAP housekeeping jobs through the lens of MyWave.ai's agentic automation platform, where AI agents observe, decide, and act independently within defined parameters to deliver immediate business value. By combining traditional SAP standard jobs with MyWave.ai's autonomous agents, organizations can achieve a new level of intelligent system maintenance while simplifying preparation for migration to S/4HANA by promoting clean core principles. The objective of this paper is to explore how MyWave.ai's agentic approach transforms SAP housekeeping practice

@gwangjinkim
gwangjinkim / uv-cheatsheet.org
Last active February 2, 2026 13:52
UV Cheatsheet

cave! `–` becomes often a single hyphen. Please be aware.

Replaces: pyenvPurposeCommand
Install a specific Python versionuv python install <version>
List available Python versionsuv python list
Use a specific Python version in a projectuv python use <version>
Automatically install the required Python versionuv run –python <version> script.py
Pin the Python version for a projectuv python pin
@jlia0
jlia0 / agent loop
Last active February 2, 2026 05:02
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
@feveromo
feveromo / Claude MCP Windows.md
Last active January 31, 2026 01:39
MCP-Windows

Setting Up MCP Servers on Windows

A step-by-step guide to setting up Model Context Protocol (MCP) servers for Claude Desktop on Windows.

Prerequisites

  1. Install Node.js (v18.x or later)
    • Download from: https://nodejs.org/
    • Verify installation by opening Command Prompt (CMD) and running:
      node --version
      npm --version
@briglx
briglx / extract.py
Last active November 25, 2025 22:19
Extract Email from Outlook with Python
#!/usr/bin/python
"""Script to fetch email from outlook."""
import win32com.client
def extract(count):
"""Get emails from outlook."""
items = []
outlook = win32com.client.Dispatch("Outlook.Application").GetNamespace("MAPI")
inbox = outlook.GetDefaultFolder(6) # "6" refers to the inbox
@thenbrent
thenbrent / woocommerce-disable-paypal-for-subscriptions.md
Last active October 31, 2016 20:17
Using WooCommerce and want to disable PayPal for subscription purchases, but still offer it as an option for buying one-off products? Activate this plugin.

This gist has been migrated to a repo here.

@enzondio
enzondio / gist:4052828
Created November 10, 2012 22:48
IPython Notebook: Playing with Wolfram Alpha
{
"metadata": {
"name": "Wolfram Alpha Playground"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
@simecek
simecek / get.dropbox.folder.r
Created August 8, 2012 14:39
Get Dropbox Folder
get.dropbox.folder <- function() {
if (!require(RCurl)) stop ("You need to install RCurl package.")
if (Sys.info()["sysname"]!="Windows") stop("Currently, 'get.dropbox.folder' works for Windows only. Sorry.")
db.file <- paste(Sys.getenv('APPDATA'), '\\Dropbox\\host.db', sep='')
base64coded <- readLines(db.file, warn=FALSE)[2]
base64(base64coded, encode=FALSE)
}
@hurjas
hurjas / timestamp.js
Created May 11, 2012 15:35 — forked from jonkemp/timestamp.js
Print out a nicely formatted timestamp in JavaScript.
/**
* Return a timestamp with the format "m/d/yy h:MM:ss TT"
* @type {Date}
*/
function timeStamp() {
// Create a date object with the current time
var now = new Date();
// Create an array with the current month, day and time