Skip to content

Instantly share code, notes, and snippets.

View forsbergplustwo's full-sized avatar

Bjørn Forsberg forsbergplustwo

View GitHub Profile
@YogliB
YogliB / copy-superpowers.sh
Last active February 3, 2026 21:48
copy-superpowers.sh
#!/bin/bash
# Script to copy skills, commands, and agents from obra/superpowers to .cursor
# Uses npx tiged to download specific directories from GitHub
set -e # Exit on any error
echo "Copying superpowers skills, commands, and agents to .cursor..."
# Copy skills directory
@Nateliason
Nateliason / sentry-codex-workflow-guide.md
Created January 30, 2026 16:03
From Sentry Alert to Merged PR in Minutes: Automating Bug Fixes with Clawdbot + Codex

From Sentry Alert to Merged PR in Minutes: Automating Bug Fixes with Clawdbot + Codex

A practical guide to building an autonomous bug-fix pipeline using Sentry, Slack, Clawdbot, and OpenAI Codex CLI.


What This Is

Imagine this workflow:

anonymous
anonymous / gist:2388015
Created April 14, 2012 21:44
iOS fix for iframe cropping
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript">
$(function(){
if (/iPhone|iPod|iPad/.test(navigator.userAgent))
$('iframe').wrap(function(){
var $this = $(this);
return $('<div />').css({
width: $this.attr('width'),
height: $this.attr('height'),
overflow: 'auto',