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
;; this is a test | |
; não existe fold nem map no r5rs. ele está no SRFI-1 e r6rs | |
; http://srfi.schemers.org/srfi-1/srfi-1.html#FoldUnfoldMap | |
(define (fold f default ls) | |
(if (null? ls) | |
default |
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/hooks/lvm2 2012-02-06 12:40:19.264960345 -0300 | |
+++ b/hooks/lvm2 2012-02-06 12:40:00.498396658 -0300 | |
@@ -19,7 +19,7 @@ | |
[ "${quiet}" = "y" ] && LVMQUIET=">/dev/null" | |
msg "Activating logical volumes..." | |
- [ -d /etc/lvm ] && /sbin/lvm vgscan --sysinit | |
- eval /sbin/lvm vgchange --sysinit -a y $LVMQUIET | |
+ [ -d /etc/lvm ] && /sbin/lvm vgscan | |
+ eval /sbin/lvm vgchange -a y $LVMQUIET |
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/init 2012-02-06 12:40:19.264960345 -0300 | |
+++ b/init 2012-02-06 12:39:59.955066307 -0300 | |
@@ -40,6 +40,9 @@ | |
rootdelay=10 | |
fi | |
+echo haha | |
+sleep 5 | |
+ | |
if [ -e "/hooks" ]; 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
# Maintainer: Kevin Knapp | |
pkgname=rust-beta-bin | |
pkgver=1.0.0_beta.2 | |
pkgrel=1 | |
arch=('i686' 'x86_64') | |
pkgdesc='Fast, concurrent, safe. The Rust programming language and its package manager, Cargo.' | |
url='http://www.rust-lang.org/' | |
provides=('rust' 'cargo') | |
conflicts=('rust' 'rust-nightly-bin' 'rust-git' 'rust-nightly' 'cargo-nightly-bin') | |
depends=('shared-mime-info') |
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 | |
path=~testandius/.cabal/bin:/usr/local/sbin:/usr/local/bin:/usr/bin:\ | |
/usr/lib/jvm/default/bin:/usr/bin/site_perl:\ | |
/usr/bin/vendor_perl:/usr/bin/core_perl | |
cd ~testandius | |
run() { sudo -u testandius "$@"; } |
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 | |
path=~testandius/.cabal/bin:/usr/local/sbin:/usr/local/bin:/usr/bin:\ | |
/usr/lib/jvm/default/bin:/usr/bin/site_perl:\ | |
/usr/bin/vendor_perl:/usr/bin/core_perl | |
cd ~testandius | |
run() { sudo -u testandius "$@"; } |
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
return { | |
misc={ autumn="verylongseason" }, | |
override_enabled=true, | |
presetdata={ | |
data="SURVIVAL_TOGETHER", | |
desc="The multiplayer Don't Starve experience.", | |
location="forest", | |
overrides={ }, | |
text="Together Forever" | |
}, |
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
blibli |
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 | |
#export DRI_PRIME=1 | |
cmd=mpv | |
param='--msg-level=all=no,cplayer=info' | |
filter='/Playing/!d; s/^Playing: //' | |
order='%C@' # by default, order by ctime |
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/bash | |
cd $(dirname $(realpath $0))/parity | |
find \( -name data -o -name '*.vol*+*.par2' \) -prune -or -name '*.par2' -type f \ | |
\( -exec par2 verify -qq {} \; -o -print \) | sed 's/\.par2$//; s/^/Bad file: /' |
OlderNewer