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 | |
| # print a ps listing that includes the used swap space | |
| # inspired by Erik Ljungstrom 27/05/2011 | |
| maxwidth=$( stty -a | tr ';' '\n' | grep columns | awk '{ print $2 }' ) | |
| maxwidth=$(( maxwidth - 10 )) | |
| pscols=vsz:10,rss:10,pid,user,pri,stime,time:12,cmd | |
| paste <( echo SWAP ) <( ps -p $$ -o $pscols | head -1 ) | |
| for procdir in /proc/[0-9]* ; do | |
| PID=$( basename $procdir ) |
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
| Name: rinse | |
| Version: 1.9.1 | |
| Release: 0%{?dist} | |
| Summary: Carry out the installation of a new RPM-based distribution. | |
| Group: Development/Tools | |
| License: Artistic | |
| URL: http://www.steve.org.uk/Software/rinse/ | |
| Source: http://www.steve.org.uk/Software/rinse/rinse-%{version}.tar.gz | |
| BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root | |
| BuildRequires: make |
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
| %define dlurl http://c758482.r82.cf2.rackcdn.com/Sublime%20Text%202.0.1%20x64.tar.bz2 | |
| %define chksum bd816d93239a0af9ade257b2a9dcf8d2 | |
| %define version 2.0.1 | |
| Summary: Sublime Text 2 | |
| Name: sublime_text | |
| Version: %{version} | |
| Release: 1 | |
| License: Commerical | |
| Group: Applications/Editors |
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
| /* force gmail fixed width font to NOT be courier | |
| */ | |
| div.gs font[face="courier new, monospace"] { | |
| font-family: monospace !important; | |
| } | |
| /* this matches inside gmail's edit iframe | |
| the CSS rule can not span documents inside iframes | |
| */ | |
| html body.editable font[face="courier new, monospace"] { |
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
| #include <stdlib.h> | |
| #include <stdarg.h> | |
| void openlog(const char *ident, int option, int facility) { | |
| return; | |
| } | |
| void syslog(int priority, const char *format, ...) { | |
| va_list va; | |
| va_start(va, format); |
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
| ### | |
| # Copyright (c) 2013, Andy Bakun and Yelp! | |
| # All rights reserved. | |
| # | |
| # Redistribution and use in source and binary forms, with or without | |
| # modification, are permitted provided that the following conditions are met: | |
| # | |
| # * Redistributions of source code must retain the above copyright notice, | |
| # this list of conditions, and the following disclaimer. | |
| # * Redistributions in binary form must reproduce the above copyright notice, |
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
| %define version 0.4 | |
| Summary: evrouter | |
| Name: evrouter | |
| Version: %{version} | |
| Release: 1 | |
| License: GPL2 | |
| Group: Applications | |
| URL: http://www.bedroomlan.org/projects/evrouter | |
| Source: http://debian.bedroomlan.org/debian/pool/main/e/evrouter/evrouter_%{version}.tar.gz |
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
| #!/usr/bin/php | |
| <?php | |
| date_default_timezone_set("GMT"); | |
| $type = "a type"; | |
| $key = "some identifier"; | |
| $json = "canonical url of this json stuff"; | |
| $entries = json_decode(file_get_contents("php://stdin")); |
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
| file { "/my/wrapper": | |
| source => "puppet://...." | |
| } | |
| exec { "work-that-requires-key": | |
| command => "ssh-agent /my/wrapper", | |
| require => File["/my/wrapper"] | |
| } |
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
| Summary: git-crypt git module | |
| Name: git-crypt | |
| Version: 0.3 | |
| Release: 1%{?dist} | |
| License: GPL | |
| Group: Development/Tools | |
| BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-%(id -un)-root | |
| Source0: %{name}-%{version}.tar.bz2 | |
| Requires: openssl >= 0.9.8, pam, openssh-server, openssh | |
| URL: https://www.agwa.name/projects/git-crypt/ |