Skip to content

Instantly share code, notes, and snippets.

View quaid's full-sized avatar

Karsten Wade quaid

View GitHub Profile
@quaid
quaid / gist:b3bf1c45528d71de338b6fcb3082f9cf
Created February 17, 2022 22:20
Update email to community@ after 20220217 sig-community meeting
To: community@lists.operate-first.cloud
Subject: New SIG Community forms two WGs: Website Updates WG and Contrib_X Docs WG
Folks:
In today's SIG Community meeting we ratified our own charter, meaning we became officially official and could start doing things:
https://github.com/operate-first/community/blob/main/sig-community/charter.md
Now, I can't easily give you an operate-first.cloud link for that because we need to update the website information architecture and content. So today we formed the "Website Updates Working Group (WG)":
# Atomic Host Definition [Discussion Draft]
This document is meant to serve as a baseline definition for Project Atomic hosts, to be implemented from CentOS, Fedora, and Red Hat Enterprise Linux (RHEL).
The purpose of the document is not to restrict the packages or services offered with an Atomic host, but to ensure a baseline of functionality and working standard that each product team can implement **before** adding additional functionality.
The initial working draft is being taken from work going into RHEL Atomic, but it is expected that the CentOS Atomic SIG and Fedora Cloud Workgroup will provide input and direction to Project Atomic going forward. This is simply the first cut at a shared understanding that gives each team a basis for cooperation.
## Atomic Host Definition
@quaid
quaid / .htaccess
Created November 20, 2012 19:52
Rewrite rules for wiki-ovirt.rhcloud.com
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-f
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-d
RewriteRule ^(.*)$ %{DOCUMENT_ROOT}/index.php [L]
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-f
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-d
RewriteRule ^/?images/thumb/[0-9a-f]/[0-9a-f][0-9a-f]/([^/]+)/([0-9]+)px-.*$ %{DOCUMENT_ROOT}/thumb.php?f=$1&width=$2 [L,QSA,B]
@quaid
quaid / gitrss.rb
Created December 6, 2011 19:37 — forked from ryanflorence/gitrss.rb
Create an RSS 2.0 feed from a git log
# Adapted by Ryan Florence (http://ryanflorence.com)
# original by Chris Dinger: http://www.houseofding.com/2009/03/create-an-rss-feed-of-your-git-commits/
#
# Takes one, two, or three arguments
# 1. Repository path (required) - the path to the repository
# 2. The url to put as the <link> for both channel and items
# 3. the repository name, defaults to directory name of the repository
#
# Command line usage:
# ruby gitrss.rb /path/to/repo > feed.rss