Skip to content

Instantly share code, notes, and snippets.

View xtaran's full-sized avatar
😷
FFP3 + 4× vaccinated

Axel Beckert xtaran

😷
FFP3 + 4× vaccinated
View GitHub Profile
@scelis
scelis / chpwd_update_git_vars.sh
Created November 27, 2009 20:16
Add git information to your ZSH prompt.
update_current_git_vars
@nyergler
nyergler / maildir2mbox.py
Created January 31, 2012 05:39
Convert maildirs (including subfolders) to mbox format
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Frédéric Grosshans, 19 January 2012
Nathan R. Yergler, 6 June 2010
This file does not contain sufficient creative expression to invoke
assertion of copyright. No warranty is expressed or implied; use at
your own risk.
@robinsmidsrod
robinsmidsrod / _INSTALL.md
Last active May 1, 2025 16:43
Bootstrapping full iPXE native menu with customizable default option with timeout (also includes working Ubuntu 12.04 preseed install)

Add the following chunk to your existing ISC dhcpd.conf file.

if exists user-class and ( option user-class = "iPXE" ) {
    filename "http://boot.smidsrod.lan/boot.ipxe";
}
else {
    filename "undionly.kpxe";
}

(or see https://gist.github.com/4008017 for a more elaborate setup

@agnoster
agnoster / README.md
Last active May 10, 2025 17:44
My ZSH Theme

agnoster.zsh-theme

A ZSH theme optimized for people who use:

  • Solarized
  • Git
  • Unicode-compatible fonts and terminals (I use iTerm2 + Menlo)

For Mac users, I highly recommend iTerm 2 + Solarized Dark

@mojavelinux
mojavelinux / examples.md
Last active September 3, 2020 17:04
Menu and key macros for AsciiDoc

Examples of custom macros for AsciiDoc

Path

path:/home/dallen/[]
path:/etc/my.cnf[]

Key

key:Enter[]

@lsmith77
lsmith77 / oss crowdfunding sites
Created February 8, 2013 08:54
List of crowd funding services that could be relevant for OSS projects
oss focused:
https://bountyoss.com
http://beex.org
http://www.freedomsponsors.org
http://selfstarter.us
not oss focused:
http://flattr.com
http://pledgie.com
http://www.launcht.com
@XVilka
XVilka / TrueColour.md
Last active April 27, 2025 10:17
True Colour (16 million colours) support in various terminal applications and terminals

THIS GIST WAS MOVED TO TERMSTANDARD/COLORS REPOSITORY.

PLEASE ASK YOUR QUESTIONS OR ADD ANY SUGGESTIONS AS A REPOSITORY ISSUES OR PULL REQUESTS INSTEAD!

Dear Nick Ruest,
As stated by the McMaster University's electronic repository, you authored the work entitled "McMaster University Library & Digital Commons" in the framework of your postgraduate degree.
Due to the fact that we are currently planning publications in this subject field, we would be pleased to know whether you would be interested in publishing the above mentioned work with us.
LAP LAMBERT Academic Publishing is a member of an international publishing group, which has almost 10 years of experience in the publication of high-quality research works from well-known institutions across the globe.
Besides producing printed scientific books, we also market them actively through more than 80,000 booksellers.
Kindly confirm your interest in receiving more detailed information in this respect.
Dear Mr. Nick Ruest,
I am Barbara Taylor from the editorial team of Lambert Academic Publishing.
I’m getting in touch with you today concerning an interesting work from 2013 which I found at the York University Canada.
Is it correct that you authored the work entitled “Warc? Warkwark wark? Wark Warrrk”?
A short confirmation would be greatly appreciated. I believe this particular topic could be of interest to a wider audience and we would be glad to consider publishing it.
Should the commercialisation of your work as printed book meet your interest, kindly let me know. I will be glad to provide you with further details in an electronic brochure.
@keithchambers
keithchambers / gist:80b60559ad83cebf1672
Last active October 21, 2021 01:12
Ansible role to set 'noop' i/o scheduler (CentOS 7)
---
- name: test if grub configured for noop i/o scheduler
command: egrep -q 'elevator=noop' /boot/grub2/grub.cfg
register: grub
changed_when: no
failed_when: grub_test.rc == 2
- name: configure grub for noop i/o scheduler
sudo: yes
command: grubby --update-kernel=ALL --args=elevator=noop