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
# == WHAT | |
# Simple script for growl notifications in irssi | |
# | |
# == WHO | |
# Nate Murray 2008 | |
# Modif: Leho Kraav 2009 | |
# | |
# == CONFIG | |
# /SET growl_on_regex [regex] | |
# /SET growl_channel_regex [regex] |
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/python | |
# Copyright 2007 by Tobia Conforto <tobia.conforto@gmail.com> | |
# | |
# This program is free software; you can redistribute it and/or modify it under the terms of the GNU General | |
# Public License as published by the Free Software Foundation; either version 2 of the License, or (at your | |
# option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the | |
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
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
import subprocess | |
import os | |
from termcolor import colored | |
rootdir = 'Documents/thunderbird/tbird2oe/1-LocalFolders/localhost-Inbox-pruned' | |
md5 = {} | |
for subdir, dirs, files in os.walk(rootdir): | |
ii = 0 |
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
$projectroot = '/path/to/gitosis/repositories'; | |
$gitosis_conf = '/path/to/gitosis/repositories/gitosis-admin.git/gitosis.conf'; | |
$username = $cgi->remote_user; | |
$export_auth_hook = sub { | |
my $projectdir = shift; | |
if($projectdir =~ (/(.*?)\.git/)) { | |
my $projectname = basename($1); | |
open FILE, $gitosis_conf or die 'Could not open gitosis config file. Please make sure that $gitosis_conf is set properly'; | |
my $project_match = 0; | |
my $user_match = 0; |
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/perl | |
# summad/arvud eesti keeles | |
# VB original provided by Tarmo Ko~lli [lennuki@hot.ee] | |
# PHP-sse ymberkirjut Jaanus Kase (terminus@privador.com) | |
# ausqna ma ei tea mis printsiibil see toimib :) | |
# aga sellegipoolest vqiks creditsid kuskil kasutades alles j2tta | |
# Perli versioon Martin Lillepuu <martin@lillepuu.com> | |
# täisarvu sqnelemine eesti keeles |
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
# Copyright 1999-2008 Gentoo Foundation | |
# Distributed under the terms of the GNU General Public License v2 | |
# $Header: $ | |
use onlydeps || inherit webapp | |
DESCRIPTION="SQL based, powerful small business accounting system" | |
SRC_URI="http://www.sql-ledger.com/source/${P}.tar.gz" | |
HOMEPAGE="http://www.sql-ledger.com/" |
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 grub.cfg file was created by Lance http://www.pendrivelinux.com | |
# Suggested Entries and the suggestor, if available, will also be noted. | |
# Adding an Unlisted ISO: To try ISO Files that are not yet listed, use | |
# the existing menuentry examples in /boot/grub/grub.cfg and append any | |
# options normally found in the distributions syslinux.cfg file on the | |
# "append" line to the "linux" line of the menu entry. | |
set timeout=10 | |
set default=0 |
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 | |
TMPFILE=`mktemp` | |
#save the timestamp | |
touch -r file-name $TMPFILE | |
> file_name | |
#restore the timestamp after truncation | |
touch -r $TMPFILE file-name | |
rm $TMPFILE |
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
diff --git a/drivers/platform/x86/Kconfig b/drivers/platform/x86/Kconfig | |
index 7f43cf8..17e2fa1 100644 | |
--- a/drivers/platform/x86/Kconfig | |
+++ b/drivers/platform/x86/Kconfig | |
@@ -744,13 +742,18 @@ config XO15_EBOOK | |
config SAMSUNG_LAPTOP | |
tristate "Samsung Laptop driver" | |
- depends on RFKILL && BACKLIGHT_CLASS_DEVICE && X86 | |
+ depends on X86 |
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 | |
SYSPATH="/sys/devices/platform/samsung" | |
SUMMARY="Samsung Status" | |
BODY=() | |
BODY+=("performance_level: $(cat "$SYSPATH/performance_level")") | |
BODY+=("backlight: $(cat "/sys/class/backlight/acpi_video0/brightness") / $(cat "/sys/class/backlight/acpi_video0/max_brightness")") | |
BODY+=("kbd_backlight: $(cat "$SYSPATH/leds/samsung::kbd_backlight/brightness") / $(cat "$SYSPATH/leds/samsung::kbd_backlight/max_brightness")") | |
BODY+=("$(cat "$SYSPATH/rfkill/rfkill0/name"): $(cat "$SYSPATH/rfkill/rfkill0/state")") | |
BODY+=("$(cat "$SYSPATH/rfkill/rfkill1/name"): $(cat "$SYSPATH/rfkill/rfkill1/state")") |
OlderNewer