All pastesPublic feed

Public feed

Pastes people chose to make public. Author names hidden.
  • elohim top

    2065940·text·1.8 KB·2011-05-20 18:44 UTC
    elohim@Elohim:~$ top
    
    top - 13:44:29 up 10 days, 22:47, 2 users, load average: 13.62, 12.56, 11.77
    Tasks: 216 total, 3 running, 211 sleeping, 0 stopped, 2 zombie
    Cpu(s): 57.1%us, 39.2%sy,
  • BarbVillageFisher

    2065939·text·19.0 KB·2011-05-20 18:43 UTC
    import java.awt.BasicStroke;
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Container;
    import java.awt.Font;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import j
  • broken meerkat

    2065938·text·3.9 KB·2011-05-20 18:39 UTC
    elohim@Elohim:~$ sudo apt-get install xmame-x xmame-sdl
    [sudo] password for elohim: 
    E: Could not get lock /var/lib/dpkg/lock - open (11: Resource temporarily unavailable)
    E: Unable to lock the adm
  • Stack.java

    2065937·java·1.1 KB·2011-05-20 18:38 UTC
    package datastructs;
    
    public class Stack<T> {
    
     private StackNode<T> currentNode;
    
     public Stack() {
     currentNode = null;
     }
    
     public void push(T value){
     StackNod
  • StackNode.java

    2065935·java·513 B·2011-05-20 18:36 UTC
    package datastructs;
    
    public class StackNode<T> {
    
     private T value;
     private StackNode<T> next;
    
     public StackNode(T value, StackNode<T> next) {
     this.value = value;
  • Queue.java

    2065934·java·434 B·2011-05-20 18:34 UTC
    package datastructs;
    
    import java.util.ArrayList;
    
    public class Queue<T> {
    
     ArrayList<T> container = new ArrayList<T>();
    
     public void enqueue(T value){
     container.add(value);
  • binom_iter

    2065926·text·132 B·2011-05-20 18:19 UTC
    int binom_iter(int a, int b)
    {
     int i;
     float e = 1.0f;
     for(i=b; i >= 0; i--)
     e *= (a-i)/(b-i);
     return (int) e;
    }
  • Miscellany

    2065921·text·2.1 KB·2011-05-20 18:05 UTC
    2011.05.20.
    
    [19:22:18] <zsola> ez keszen van
    [19:22:19] <zsola> :))))
    [19:22:27] <zsola> benarkoztal shokey
    [19:22:32] <meditation> jo
    [19:22:38] <meditation> csak kussolj
    [19:22:40] <meditati
  • Something

    2065920·text·3.7 KB·2011-05-20 18:04 UTC
    #! /bin/sh
    #set -x
    
    # TOOLS NEEDED
    # SED
    # CURL
    # TEMPFILE
    # TOUCH
    # RM
    # GREP
    # CAT
    # MKDIR
    # LS
    # TAIL
    
    URL="http://www.xkcd.com"
    CONFDIR="${CONFIG:="$HOME/.xkcd/test"}"
    CONF="detai
  • Cheebitox

    2065919·c·7.8 KB·2011-05-20 18:03 UTC
    /* Lab - 7 */
    
    domains
    
     file = f
     S = string
     E = string* 
     I = integer 
     J = integer* 
    
    predicates
     
     /* Запросы */
     submenu
     talk(S)
     ssymbl(S)
     
     scheck(S,S,I)
    
     /* Мозг */
     br
  • Armi

    2065918·javascript·17 B·2011-05-20 17:58 UTC
    <html>
    
    </html>
  • Stuff

    2065914·text·1.6 KB·2011-05-20 17:43 UTC
    CREATE TABLE `registration_registrationprofile` (
     `id` int(11) NOT NULL AUTO_INCREMENT,
     `user_id` int(11) NOT NULL,
     `activation_key` varchar(40) NOT NULL,
     PRIMARY KEY (`id`),
     UNIQUE KEY
  • Anonymous

    2065912·text·154 B·2011-05-20 17:32 UTC
    .__________>/^\< 
    | ' ' ' ' ' ' ' ' ' ' '|__\ 
    | WAMBULANCE - | i<< 
    I_______________|I 
    ..""(@)"""""""""(@)"............ WAHHHHHHH BB QUIT :(:(:(
  • Stuff

    2065911·text·584 B·2011-05-20 17:28 UTC
    -- Fait par Jean-Pierre Deschamps
    if not :SYSTEM.EVENT_WINDOW IN ('FEN_RAP_EQUIPEMENTVEHICULE', 'FEN_RAP_ENTRETIEN', 'FEN_RAP_PIECE', 'FEN_RAP_EMPLOYE', 'FEN_RAP_FOURNISSEUR', 'FEN_RAP_REVENU', 'FEN_
  • Miscellany

    2065910·java·720 B·2011-05-20 17:24 UTC
    package signcopy;
    
    import org.bukkit.Location;
    import org.bukkit.event.player.PlayerListener;
    import org.bukkit.event.player.PlayerItemHeldEvent;
    import org.bukkit.Material;
    import org.bukkit.Wo
  • cbo_clean.pl

    2065909·perl·1.0 KB·2011-05-20 17:13 UTC
    #! /usr/bin/perl -w
    #
    # Copyright (c) 2010 LCD 47 <lcd047@gmail.com>
    # All rights reserved.
    #
    # $Revision: 1.4 $
    # $Id: cbo_clean.pl,v 1.4 2011/03/15 12:20:23 lcd047 Exp $
    # $Source: /usr/share
  • Stuff

    2065902·text·64.1 KB·2011-05-20 16:59 UTC
    
        
  • Anonymous

    2065899·text·250 B·2011-05-20 16:55 UTC
    enabled_optware_feeds="cs05q1armel cs05q3armel cs08q1armel \
    ddwrt \
    dns323 \
    ds101 ds101g \
    fsg3v4 \
    mbwe-bluering \
    nslu2 \
    oleg \
    openwrt-brcm24 \
    slugos5be slugos5le \
    syno-e500 syno-i68
  • Unnamed

    2065898·text·4 B·2011-05-20 16:51 UTC
    test
  • Someone

    2065895·bash·928 B·2011-05-20 16:51 UTC
    # Prepare location
    mkdir unison
    cd unison
    
    # Fetch files
    git clone git://github.com/pgiblox/ingen.git
    git clone git://github.com/pgiblox/unison.git -b ingen_integration
    
    # Note: You will need

older pastes →