All pastesPublic feed

Public feed

Pastes people chose to make public. Author names hidden.
  • Something

    2074667·text·24.6 KB·2011-06-04 17:21 UTC
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    
    <!--
     Theme: The Eames (http://theeamestheme.tumblr.com/)
     Design & Product
  • Someone

    2074665·text·1.2 KB·2011-06-04 17:10 UTC
    #!/bin/bash
    
    BANNED_IP_LIST="/usr/local/ddos/banned.ip.list"
    REPORTED_IP_LIST="/usr/local/ddos/reported.ip.list"
    SERVER=`ifconfig eth0 | awk '/inet addr/ {split ($2,A,":"); print A[2]}'`
    
    for i
  • Unnamed

    2074662·text·34.1 KB·2011-06-04 17:04 UTC
    
        
  • Miscellany

    2074661·text·803 B·2011-06-04 17:01 UTC
    ; Berechnet die Fakutaet und den Binomialkoeffizienten
    
    (defun fak (a) ; Funktion Fakultaet berechnen
     (if (<= a 1) ; Trivialfall, komische Eingaben und Ende der Rekursion abfangen
     (
  • Miscellany

    2074659·text·1.1 KB·2011-06-04 16:57 UTC
    ; 
    ; STYLEMGR.INI 
    ; 
    ; This .INI file defines the fonts used by the WWUI library 
    ; 
    
    [Font File List]
    File01=54251___.TTF
    File02=ARI_____.TTF
    
    ;
    ; Font names follow this
  • Untitled

    2074654·text·10.8 KB·2011-06-04 16:39 UTC
    Script started on Sat 04 Jun 2011 11:35:55 AM CDT
    GNU gdb (GDB) 7.2
    Copyright (C) 2010 Free Software Foundation, Inc.
    License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
  • Untitled

    2074652·text·3.3 KB·2011-06-04 16:35 UTC
    Works of/about the following authors are included:
    
    Abelard
    Adorno, Theodor W.
    Agamben, Giorgio
    Alain
    Alembert, Jean Le Rond d'
    Althusser, Louis
    Anselm
    Aquinas, St. Thomas
    Arendt, Hannah
    Ar
  • Stuff

    2074651·text·461 B·2011-06-04 16:34 UTC
    ; Addiert eine Zahl d zu allen Elementen einer Liste
    ;Caesar-Code like, nur mit Zahlen
    
    (defun caesar( l d) ; Funktion caesar
     (setq r '() ) ;initailisiere leere Liste r
     (while (eq ( eq l
  • Untitled

    2074650·text·20.8 KB·2011-06-04 16:29 UTC
    #!/usr/bin/perl
    # change the above line to point to the perl program
    
    ################################################################################
    # system_webwork_setup.pl
    # 
    # This file ch
  • Mine

    2074645·text·499 B·2011-06-04 16:26 UTC
    -----BEGIN PGP SIGNATURE-----
    Version: GnuPG v2.0.17 (MingW32)
    
    iQEcBAABAgAGBQJN6lxJAAoJEDyssJPBdvSEJ1AIAKrCzkbRk5OjJa9aZV8G7luU
    9o07BsRZ8O8oUNi3XR7j6uy8W5YN0DvI5c/swR+KBcmICJzWN0JvUB2F9BEbcrzS
    L
  • Stuff

    2074642·text·460 B·2011-06-04 16:15 UTC
    ; Addiert eine Zahl d zu allen Elementen einer Liste
    ;Caesar-Code like, nur mit Zahlen
    
    (defun caesar( l d) ; Funktion caesar
     (setq r '() ) ;initailisiere leere Liste r
     (while (eq ( eq l
  • Miscellany

    2074641·text·706 B·2011-06-04 16:14 UTC
    ; Berechnet die Fakutaet und den Binomialkoeffizienten
    
    (defun fak (a) ; Funktion Fakultaet berechnen
     if (<= a 1) ; Trivialfall, komische Eingaben und Ende der Rekursion abfangen
     (
  • Something

    2074638·text·646 B·2011-06-04 15:55 UTC
    categories = [
     ("general",["name","description","side","category","footprintx",footprinty","movementclass","buildcostenergy,"buildcostmetal","maxdamage","corpse",|]),
     ("movement"
  • Stuff

    2074637·text·198 B·2011-06-04 15:53 UTC
    (defun caesar( l d)
     (setq r '() )
     (while (eq ( eq l () ) nil ))
     (
     ( cons ( ( + (pop l) d) r) ) 
     )
     (reverse r)
    )
    
    (setq somelist '(1 2 3 4))
    
    (caesar somelist 2)
  • Miscellany

    2074636·text·351 B·2011-06-04 15:51 UTC
    (defun fak (a)
     if (= a 1)
     (
     1
     )else
     (
     (* a fak(- a 1 ))
     )
    )
     
    (fak 3)
    
    (defun binom (n k)
     if (= k 0)
     (
     0
     )else
     (
     if
  • Unnamed

    2074635·text·10.6 KB·2011-06-04 15:48 UTC
    aubergine:redland wlach$ build
    
    =============
    Building module redland
    =============
    Entering /Users/wlach/git/libo/redland/raptor
    
    if [ -f ../unxmacxi.pro/misc/build/raptor-1.4.18.exists ] ;
  • Unnamed

    2074633·php·841 B·2011-06-04 15:45 UTC
    <?php
    $slider = query_posts(array('post_type' => 'slider_item'));
    
     
    ?>
     <!--Slider -->
     <div class="outer-slider">
     <ul id="slider">
     <?php
     foreach ($slider as
  • Stuff

    2074630·php·873 B·2011-06-04 15:44 UTC
    <?php
    $slider = query_posts(array('post_type' => 'slider_item', 'column_order' => 'menu_order'));
    
     
    ?>
     <!--Slider -->
     <div class="outer-slider">
     <ul id="slider">
     <?p
  • Unnamed

    2074629·text·223.6 KB·2011-06-04 15:43 UTC
    
        
  • Miscellany

    2074626·text·223.8 KB·2011-06-04 15:34 UTC
    
        

older pastes →