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
smtpd_banner = Welcome! I'm an ESMTP capable SMTP server. | |
biff = no | |
setgid_group = postdrop | |
append_dot_mydomain = no | |
myhostname = mail.mittudomain.hu | |
alias_maps = hash:/etc/postfix/aliases | |
alias_database = hash:/etc/postfix/aliases.db |
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
<?xml version="1.0" standalone='no'?><!--*-nxml-*--> | |
<!DOCTYPE service-group SYSTEM "avahi-service.dtd"> | |
<!-- $Id: vmware.service 995 2005-11-17 15:26:53Z yale $ --> | |
<!-- | |
This file is part of avahi. | |
avahi is free software; you can redistribute it and/or modify it | |
under the terms of the GNU Lesser General Public License as |
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 service-group SYSTEM "avahi-service.dtd"> | |
<!-- $Id: ssh.service 1391 2007-02-07 11:54:54Z lennart $ --> | |
<!-- | |
This file is part of avahi. | |
avahi is free software; you can redistribute it and/or modify it | |
under the terms of the GNU Lesser General Public License as | |
published by the Free Software Foundation; either version 2 of the |
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/awk -f | |
BEGIN { | |
twuser="user" | |
twpass="secret" | |
status = ""; | |
if(twuser == "" || twpass == "") { | |
print "No twitter username or password defined"; | |
exit 1; |
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/awk -f | |
BEGIN { | |
twuser="user" | |
twpass="secret" | |
status = ""; | |
} | |
{ | |
status = status " " $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
def view_hash(hash) | |
a = hash.is_a?(Hash) ? [hash] : hash | |
Hirb::Helpers::Table.render a, :vertical => true | |
end | |
if defined? IRB | |
require 'irb/completion' | |
require 'rubygems' | |
begin | |
require 'hirb' |
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 { | |
post_email="[email protected]"; | |
post_pass="verysecret"; | |
# Optional, delete this line if empty | |
post_siteid="1234567"; | |
####################### DO NOT EDIT BELOW THIS ########################## | |
# Program name and URL | |
post_source = "GNU AWK"; |
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 | |
## This code is proteced by Creative Commons Attribution-Share Alike 2.5 Generic licence | |
## Some rights reserved | |
## | |
## @author: Gabor Garami <[email protected]> | |
## @version: 0.2 | |
## @since: 02/2010 | |
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
Creative Commons | |
Creative Commons Legal Code | |
Attribution-NonCommercial-ShareAlike 2.0 | |
CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL | |
SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT | |
RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. | |
CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND | |
DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. |
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 | |
my( $pack ) = "" ; | |
$pack .= " $_" for ( @ARGV ) ; | |
my( $b ) = 1; | |
while( $b ) | |
{ | |
$b = '' ; | |
@out = `emerge -pv$pack` ; | |
$portage = '/etc/portage/package' ; |
OlderNewer