Skip to content

Instantly share code, notes, and snippets.

View robbert229's full-sized avatar

John Rowley robbert229

View GitHub Profile
@RossComputerGuy
RossComputerGuy / FTB Revelation on the Steam Deck (Guide).md
Last active January 31, 2024 10:29
FTB Revelation on the Steam Deck (Guide)

Running FTB Revelation on the Steam Deck

This guide is an outline of my experience with running FTB Revelation on the Steam Deck. I believe many others may want to play a modded version of Minecraft and I have discovered this modpack's requirements fits within the performance of the Steam Deck. I will try my best to update this guide as I find more issues and fixes while I continue playing.

Getting Started

The first step is to download PolyMC from Discover. You must exit to desktop mode on the Steam Deck, open Discover, and install "PolyMC". Once that is done, open the desktop Steam client. From there you will add PolyMC as a "Non-Steam Game". If you want the art to show up in the Steam Client, I recommend using SGDBoop.

@jonnyreeves
jonnyreeves / cookie_read_test.go
Created February 4, 2016 09:50
Testing Cookie Writes in Golang
@cmoore4
cmoore4 / docker-compose.yml
Created October 26, 2015 15:40
Docker-Compose Auto-Scale with Nginx Upstreams
nginx:
image: myclient/nginx
environment:
- HOSTHOST=UBUNTU
- PROXY_PORT=8069
links:
- myservice:myservice
ports:
- "80:80"
- "443:443"
@insin
insin / gulpfile.js
Created November 8, 2014 21:14
Watch and rebuild Sphinx docs with Gulp
var gulp = require('gulp')
var shell = require('gulp-shell')
gulp.task('build-docs', shell.task('make html', {cwd: './docs'}))
gulp.task('docs', ['build-docs'], function() {
gulp.watch(['./docs/*.rst', './docs/*.py'], ['build-docs'])
})
@lontivero
lontivero / gist:593fc51f1208555112e0
Last active August 3, 2025 12:15
Generates Markdown from VS XML documentation file
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
using System.Xml;
using System.Xml.Linq;
namespace GithubWikiDoc
{
@dannvix
dannvix / intercept-https-with-python-mitmproxy.md
Last active March 6, 2025 01:41
Intercept and manipulate HTTPs traffic with Python and mitmproxy

Intercepts HTTPs Traffic with Python & mitmproxy

Warning

This Gist is created in 2014, and it's highliy outdated now, according to one of mitmproxy's manjor contributor (check his comment below). Thanks for letting us know, @mhils!

Introduction

Modern applications usually make use of back-end API servers to provide their services. With a non-transparent HTTPs proxy, which intercepts the communication between clients and servers (aka the man-in-the-middle scheme), you can easily manipulate both API requests and responses.

@ianmackinnon
ianmackinnon / match.c
Created August 8, 2012 12:01
C Regex multiple matches and groups example
# gcc -Wall -o match match.c && ./match
#
#include <stdio.h>
#include <string.h>
#include <regex.h>
@dideler
dideler / bootstrapping.md
Last active September 29, 2025 12:57
Bootstrapping - a list of useful resources to get up and running quickly

Welcome!

UPDATE: This list is no longer maintained. I've moved it to its own repo so you can send suggestions as Pull Requests. https://github.com/dideler/bootstrapping/

For feedback or suggestions, please send a tweet (@dideler). Gist comments don't notify me. Pull requests aren't possible with gists (yet), so I don't recommend forking because then I can't easily get the change.

Starring this gist will give me an idea of how many people consider this list useful.