This file contains hidden or 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
| {-# LANGUAGE OverloadedStrings #-} | |
| import Turtle | |
| import Data.Text (words) | |
| rpmspecSrc qf spec = do | |
| (_res, out) <- procStrict "rpmspec" ["-q", "--srpm", "--undefine=dist", "--qf", qf, spec] empty | |
| return out | |
| nvr = "%{name}-%{version}-%{release}" |
This file contains hidden or 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/bash | |
| if [[ "$#" == 1 ]]; then | |
| PUBKEYFILE="${HOME}/.ssh/id_rsa.pub" | |
| INFILE="$1" | |
| OUTFILE="${1}.sh" | |
| elif [[ "$#" == 2 ]]; then | |
| PUBKEYFILE="${HOME}/.ssh/id_rsa.pub" | |
| INFILE="$1" | |
| OUTFILE="$2" |
This file contains hidden or 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
| import xml.etree.ElementTree as ET | |
| import sys, getopt | |
| # Author: Shane Mulligan | |
| # 13 April 2014 | |
| # This program reorders the execution of a scenarios triggers | |
| # to match their display orders. | |
| def main(argv): |
This file contains hidden or 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
| diff -r cef5557669dc -r 1f3bfd78d908 common/content/bookmarks.js | |
| --- a/common/content/bookmarks.js Sat Aug 02 21:25:32 2014 -0700 | |
| +++ b/common/content/bookmarks.js Thu Nov 20 12:20:02 2014 +1300 | |
| @@ -650,6 +650,10 @@ | |
| } | |
| }); | |
| + options.add(["defsearchtext", "ds"], | |
| + "The default search query", | |
| + "string", "", {}); |
NewerOlder