This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# A Liquid tag for Jekyll sites that allows posting links to Debian BTS. | |
# by: Andrew Shadura | |
# | |
# Example usage: {% bts 123456 %} //adds a link to a bug #123456 | |
# | |
# Or, you can just use debian/changelog format, like closes: #123456 | |
# Launchpad bugs are also supported. | |
require 'cgi' | |
require './plugins/post_filters' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.menu { | |
border-style: solid; | |
border-width: 1; | |
} | |
.menubar .menuitem *:prelight, | |
.menubar .menuitem:prelight { | |
background-color: @theme_selected_bg_color; | |
color: @theme_selected_fg_color; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -e | |
PREREQ="" | |
prereqs () { | |
echo "${PREREQ}" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Subject: Detect available Tcl headers automatically. | |
From: Andrew Shadura <[email protected]> | |
--- a/lib/critcl/critcl.tcl | |
+++ b/lib/critcl/critcl.tcl | |
@@ -3647,7 +3647,13 @@ | |
} | |
proc ::critcl::MinTclVersion {file} { | |
- return [GetParam $file mintcl 8.4] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | |
xmlns:exslt="http://exslt.org/common" | |
xmlns:math="http://exslt.org/math" | |
xmlns:date="http://exslt.org/dates-and-times" | |
xmlns:func="http://exslt.org/functions" | |
xmlns:set="http://exslt.org/sets" | |
xmlns:str="http://exslt.org/strings" | |
xmlns:dyn="http://exslt.org/dynamic" | |
xmlns:saxon="http://icl.com/saxon" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name OpenStreetMap on Facebook | |
// @namespace [email protected] | |
// @include *://*.facebook.com/* | |
// @version 1 | |
// @grant none | |
// | |
// ==/UserScript== | |
var f = (function () { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Configure the blue led on BananaPi | |
* | |
* based on Roman Reichel's code, which itself is | |
* | |
* based on mii-tool from David A. Hinds <[email protected]> | |
* | |
* http://sourceforge.net/projects/net-tools | |
* | |
* which itself is based on mii-diag by Donald Becker <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.DEFAULT_GOAL := all | |
.PHONY: ${MAKECMDGOALS} | |
$(filter-out all,${MAKECMDGOALS}) all: .forward-all | |
@# no op | |
.forward-all: | |
${MAKE} -C build ${MAKECMDGOALS} | |
${MAKEFILE_LIST}: ; | |
.SUFFIXES: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env tclsh | |
namespace eval ::autofile { | |
} | |
rename ::proc ::autofile::proc | |
rename ::open ::autofile::open | |
set ::autofile::files(::) {} | |
::autofile::proc proc {name args body} { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 47946d0a8a68a8e260c9a44e8b2ab448b86f946e Mon Sep 17 00:00:00 2001 | |
From: Andrew Shadura <[email protected]> | |
Date: Thu, 27 Aug 2015 18:59:12 +0200 | |
Subject: Add Python3 compatibility | |
diff --git a/reconfigure/parsers/iniparse/config.py b/reconfigure/parsers/iniparse/config.py | |
index d007f16..cc37ac4 100644 | |
--- a/reconfigure/parsers/iniparse/config.py | |
+++ b/reconfigure/parsers/iniparse/config.py | |
@@ -143,7 +143,7 @@ class BasicConfig(ConfigNamespace): |
OlderNewer