Skip to content

Instantly share code, notes, and snippets.

View neechbear's full-sized avatar
💭
Moved to https://gitlab.com/nicolaw

Nicola Worthington neechbear

💭
Moved to https://gitlab.com/nicolaw
View GitHub Profile
├── demos
│   ├── acme-consolidated
│   │   ├── main.tf
│   │   └── variables.tf
│   ├── acme-part-1-registration
│   │   ├── main.tf
│   │   └── variables.tf
│   └── acme-part-2-core
│   ├── main.tf
│   └── variables.tf
@abn
abn / rpm-build-workflow.md
Last active May 18, 2022 05:04
RPM build and hosting workflow using github, travis-ci and copr

RPM Build Flow

This document details a simple RPM build flow pattern used to build and host RPM artifacts for open source projects. The below is a visual summary of this flow.

In order to achieve this multiple tools and services are used. The services and their purpose in the flow is as listed below.

Service Purpose
GitHub As is the most common use for GitHub, it holds the build source code. In this case we hold only the spec files and related source files. All other sources, including project binaries/sources are retrieved at build time.
@node13h
node13h / .emacs
Last active December 16, 2020 08:40
.emacs for Python development
;;; package --- Summary
;;; Commentary:
;;;
;;; Code:
;;;
;; Added by Package.el. This must come before configurations of
;; installed packages. Don't delete this line. If you don't want it,
;; just comment it out by adding a semicolon to the start of the line.
/*
-----------------------------------
Emoji - natural display for the web
-----------------------------------
These font face definitions allows to display emoji glyphs intermingled with
arbitrary characters outside emoji unicode blocks.
Usage
@nictuku
nictuku / sshd.go
Created April 8, 2012 15:43
Go SSH server complete example
package main
import (
"fmt"
"io"
"io/ioutil"
"log"
"code.google.com/p/go.crypto/ssh"
"code.google.com/p/go.crypto/ssh/terminal"
@bradland
bradland / gencert.sh
Created January 27, 2012 20:39
Generate a self-signed SSL cert
#!/bin/bash
# Bash shell script for generating self-signed certs. Run this in a folder, as it
# generates a few files. Large portions of this script were taken from the
# following artcile:
#
# http://usrportage.de/archives/919-Batch-generating-SSL-certificates.html
#
# Additional alterations by: Brad Landers
# Date: 2012-01-27