- it can take stdout (-h -v etc) and make a manpage from it
- e.g. help2man --include maninfo clockr > clockr.1
- https://raw.githubusercontent.com/shaggytwodope/clockr/master/maninfo < the external file for input
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 bash | |
# pomf clone uploader | |
# requires: curl | |
# formerly known as 1339load | |
#1339.cf works, so does pomf.cat, if you test others and they work, tell me. | |
dest_url='https://pomf.cat/upload.php' | |
return_url='https://a.pomf.cat' | |
if [[ -n "${1}" ]]; then |
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head> | |
<meta http-equiv="Content-type" content="text/html; charset=utf-8" /> | |
<title>Freedom of speech with encrypted pastes - Stikked</title> | |
<link rel="shortcut icon" href="http://paste.scratchbook.ch/favicon.ico" /> | |
<link type="text/css" rel="stylesheet" href="http://paste.scratchbook.ch/static/asset/1422360278af9c4884aaa89b249e8c4a2e366f107b.css" media="screen" /> | |
<link type="text/css" rel="stylesheet" href="http://paste.scratchbook.ch/static/asset/1412081190c333a9d41fdb00f9462ec9dc65f32f57.css" media="print" /> | |
<script type="text/javascript"> |
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/vbash | |
source /opt/vyatta/etc/functions/script-template | |
configure | |
set interfaces ethernet eth0 address dhcp | |
set interfaces ethernet eth0 description 'OUTSIDE' | |
set interfaces ethernet eth0 duplex 'auto' | |
set interfaces ethernet eth0 speed 'auto' | |
set interfaces ethernet eth1 address '10.0.0.1/24' |
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
.TH SENT 1 November 2015 User Commands | |
.SH NAME | |
sent \- manual page for sent 0.1 | |
.SH DESCRIPTION | |
usage: sent FILE1 [FILE2 ...] | |
.PP | |
Simple plaintext presentation tool. | |
.SH SEE ALSO | |
The full documentation for | |
.B sent |

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
# Personal Access Token required - go here: https://github.com/settings/tokens | |
repo="newrepo" | |
gh_user="adriankoshka" | |
gh_token="mytoken" | |
curl -u "$gh_user:$gh_token" https://api.github.com/user/repos -d '{"name":"'$repo'"}' |
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
@namespace html url(http://www.w3.org/1999/xhtml); | |
@namespace xul url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); | |
/* | |
Author: Twily | |
Description: Minimal flat styled tabs for Australis | |
Compitability: Firefox Nightly v31.0a1 - v32.0a1 (Australis) | |
CSS Variables were introduced to Firefox in v29.0a1 | |
Website: http://twily.info/ | |
License: CC BY-NC-SA |
- Go to youtube
- Go to Subscriptions
- Scroll down to bottom and press the
Export Subscriptions button
- Download the file
or
- Just press THIS (should work)
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 bash | |
for i in $(ls -1 scrubbed*); do | |
echo "hostname: $i" | |
cat $i | grep -e "MACAddress" | sed -e "s/^.*MACAddress=//g" -e "/^\s*$/d" | |
done |
OlderNewer