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
| # FreeBSD 7.1 | |
| http://virtualboxes.org/images/freebsd/ | |
| # FreeBSD 9.0 -- pre-prepared VM image for Google Code-In | |
| http://wiki.freebsd.org/GoogleCodeIn/GettingStarted | |
| # FreeBSD 10.1, 10.2 | |
| http://www.osboxes.org/freebsd/ | |
| # FreeBSD STABLE, CURRENT snapshot -- pre-installed VM images |
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
| From 6bccc3fc7362967ea7d4c296a22793f7f3a2c6d8 Mon Sep 17 00:00:00 2001 | |
| From: Przemyslaw Pawelczyk <[email protected]> | |
| Date: Sat, 18 Feb 2012 23:51:38 +0100 | |
| Subject: [PATCH] Stop searching forward at the end of the buffer. | |
| Requested-by: Jacobo de Vera <[email protected]> | |
| --- | |
| window-copy.c | 11 ++--------- | |
| 1 files changed, 2 insertions(+), 9 deletions(-) |
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
| # Add following lines to: | |
| # - /etc/bash.bashrc | |
| # - /etc/profile | |
| export HISTSIZE=1000000 | |
| export HISTFILESIZE=$HISTSIZE | |
| export HISTCONTROL=ignoredups |
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
| -- Standard awesome library | |
| require("awful") | |
| require("awful.autofocus") | |
| require("awful.rules") | |
| -- Theme handling library | |
| require("beautiful") | |
| -- Notification library | |
| require("naughty") | |
| -- Load Debian menu entries |
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/sh | |
| # SPDX-License-Identifier: MIT | |
| ## Copyright (C) 2012 Przemyslaw Pawelczyk <[email protected]> | |
| ## | |
| ## This script is licensed under the terms of the MIT license. | |
| ## https://opensource.org/licenses/MIT | |
| LDIR="$HOME/qemu" | |
| KDIR="$LDIR/$1" |
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/sh | |
| # SPDX-License-Identifier: MIT | |
| ## Copyright (C) 2011 Przemyslaw Pawelczyk <[email protected]> | |
| ## | |
| ## This script is licensed under the terms of the MIT license. | |
| ## https://opensource.org/licenses/MIT | |
| # | |
| # Usage: gitio URL [CODE] | |
| # |
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
| Blondie - Call me (Original 12 Mix) | |
| =================================== | |
| Colour me your colour baby, colour me your car | |
| Colour me your colour darling, I know who you are | |
| Come up off your colour chart | |
| I know where you're coming from | |
| Call me (call me) on the line | |
| Call me, call me any, any time |
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/sh | |
| # SPDX-License-Identifier: MIT | |
| ## Copyright (C) 2011 Przemyslaw Pawelczyk <[email protected]> | |
| ## | |
| ## This script is licensed under the terms of the MIT license. | |
| ## https://opensource.org/licenses/MIT | |
| # | |
| # Converting EPS w/ crop marks to PDF w/ TrimBox+CropBox and final JPEG | |
| # Simple script with brief explanation |
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/gawk -f | |
| # SPDX-License-Identifier: GPL-2.0-only | |
| ## (C) Copyright 2007-2008 Przemyslaw Pawelczyk <[email protected]> | |
| ## | |
| ## This script is licensed under the terms of the GNU GPL v2 only license. | |
| ## https://www.gnu.org/licenses/gpl-2.0.html | |
| # | |
| # Siemens ringtone converter v. 0.3 | |
| # |
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
| --- p7zip_9.04.orig/CPP/7zip/UI/Console/Main.cpp 2009-06-27 16:18:14.000000000 +0200 | |
| +++ p7zip_9.04/CPP/7zip/UI/Console/Main.cpp 2011-01-10 01:25:36.000000000 +0100 | |
| @@ -48,6 +48,10 @@ | |
| #include "myPrivate.h" | |
| #include "Windows/System.h" | |
| +#include <iostream> | |
| + | |
| +#define MAX_PWD_SIZE_FROM_STDIN 1024 | |
| + |