This is an example Grub module that demonstrates how to add a command to Grub that can process command-line options and other parameters.
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
# Maintainer: Chun Yang <[email protected]> | |
pkgname=ghost | |
pkgver=0.6.4 | |
pkgrel=1 | |
pkgdesc="Free, open, simple blogging platform" | |
arch=('i686' 'x86_64') | |
url="http://ghost.org" | |
license=('MIT') | |
makedepends=('unzip') | |
depends=('nodejs>=0.12' 'npm') |
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
# Maintainer: | |
# Contributor: dorphell <[email protected]> | |
# Updated for systemd by John Lane <archlinux at jelmail dot com> | |
pkgname=netkit-bsd-finger | |
pkgver=0.17 | |
pkgrel=9 | |
pkgdesc="BSD-finger ported to Linux" | |
arch=('i686' 'x86_64') | |
url='http://ftp.linux.org.uk/pub/linux/Networking/netkit' |
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
# Maintainer: Christian Hesse <[email protected]> | |
# Contributor: Judd Vinet <[email protected]> | |
# Contributor: Gaetan Bisson <[email protected]> | |
pkgname=rssh | |
pkgver=2.3.4 | |
pkgrel=4 | |
pkgdesc='Restricted secure shell allowing only scp, sftp, cvs, rsync or rdist' | |
url='http://www.pizzashack.org/rssh/' | |
license=('custom:rssh') |
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
set imgdevpath='/dev/disk/by-uuid/e7bc3210-ee80-4111-a6da-3db1d2e2cbef' | |
set isofile="/iso/tails-i386-1.2.2.iso" | |
loopback loop $isofile | |
linux (loop)/live/vmlinuz fromiso=$imgdevpath/$isofile boot=live config noswap nopersistent nomodeset noautologin splash | |
initrd (loop)/live/initrd.img |
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
-----BEGIN PGP SIGNED MESSAGE----- | |
Hash: SHA1 | |
PGP Transition Statement | |
======================== | |
I have transitioned my GPG key from an old 1024-bit DSA key to a new 4096-bit RSA key. | |
The old key is now invalid; please use my new key from now on. |
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
--- encrypt_hook 2014-12-09 12:47:02.379911026 +0000 | |
+++ encrypt_hook 2014-12-09 12:47:41.416087076 +0000 | |
@@ -7,7 +7,7 @@ | |
# Get keyfile if specified | |
ckeyfile="/crypto_keyfile.bin" | |
if [ -n "$cryptkey" ]; then | |
- IFS=: read ckdev ckarg1 ckarg2 <<EOF | |
+ IFS=: read ckdev ckarg1 ckarg2 ckarg3 ckarg4 <<EOF | |
$cryptkey | |
EOF |
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
<?php //origin: http://www.if-not-true-then-false.com/2012/php-pdo-sqlite3-example/ | |
// Kludges | |
const SQLITE3_TEXT = PDO::PARAM_STR; | |
const SQLITE3_INTEGER = PDO::PARAM_INT; | |
// Set default timezone | |
date_default_timezone_set('UTC'); | |
try { |
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: John Doe <[email protected]> | |
Subject: EICAR Test Message | |
MIME-Version: 1.0 | |
Content-Type: multipart/mixed; | |
boundary="XXXXboundary text" | |
This is a multipart message in MIME format. | |
--XXXXboundary text | |
Content-Type: text/plain |
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 python2 | |
# | |
# dockbar.py | |
# | |
# Example program places a coloured bar across the top of the | |
# current monitor | |
# | |
# demonstrates | |
# | |
# (a) creating the bar as an undecorated "dock" window |