All pastesPublic feed

Public feed

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

    2000599·actionscript·112 B·2010-11-24 01:17 UTC
    I’ve been visiting your blog for a while now and I always find a gem in your new posts. Thanks for sharing.
  • Zantier - 3 heptagons

    2000586·text·1.3 KB·2010-11-24 01:05 UTC
    <C><P /><Z><S><S L="79" X="367" H="10" Y="199" T="1" P="0,0,0,0.2,206,0,0,0" /><S L="79" X="325" H="10" Y="147" T="1" P="0,0,0,0.2,257,0,0,0" /><S L="79" X="340" H="10" Y="82" T="1" P="0,0,0,0.2,309,0
  • Something

    2000573·text·3.3 KB·2010-11-24 00:50 UTC
    Myn advances and fires an eldritch blast towards the wight deathlock, but the beam misses its mark.
    
    The wight, in turn, claws at the nearby warlord, but misses horribly. It shifts to the side, look
  • sentric2

    2000568·text·9.4 KB·2010-11-24 00:49 UTC
    <?xml version="1.0" encoding="utf-8"?>
    <methodResponse>
     <params>
     <param>
     <value>
     <struct>
     <member>
     <name>command</name>
     <value>
     <int
  • Untitled

    2000552·text·389 B·2010-11-24 00:43 UTC
    #!/bin/bash
    
    if [ "$2" == "" ]
    then
     echo usage start containername
     exit 1
    fi
    
    if [ "$1" == "start" ]
    then
     attr -S -s SMACK64 -V '*' /dev/tty
     attr -S -s SMACK
  • Untitled

    2000550·text·387 B·2010-11-24 00:42 UTC
    #!/bin/bash
    
    if [ "$2" == "" ]
    then
     echo usage start containername
     exit 1
    fi
    
    if [ "$1" == "start" ]
    then
     attr -S -s SMACK64 -V '*' /dev/tty
     attr -S -s SMACK
  • Etwas

    2000549·text·333 B·2010-11-24 00:42 UTC
    root@vs1:~# ping 62.116.91.101
    PING 62.116.91.101 (62.116.91.101) 56(84) bytes of data.
    64 bytes from 62.116.91.101: icmp_req=1 ttl=64 time=0.000 ms
    unknown option 86
    64 bytes from 62.116.91.101:
  • d4de

    2000512·text·28.6 KB·2010-11-24 00:31 UTC
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /bin/mkdir -p
    checking for gawk... gawk
    checking w
  • Rizze

    2000509·text·1.2 KB·2010-11-24 00:30 UTC
    <C><P /><Z><S><S X="182" P="0,0,0,0.2,0,0,0,0" L="344" H="20" Y="387" T="1" /><S X="19" P="0,0,0,0.2,0,0,0,0" L="10" H="31" Y="333" T="1" /><S X="564" P="0,0,0,0.2,0,0,0,0" L="30" H="20" Y="387" T="1"
  • Zantier's map - UBER HARD TURNAR

    2000494·xml·623 B·2010-11-24 00:27 UTC
    <C><P /><Z><S><S L="60" X="42" H="25" Y="257" T="0" P="0,0,0.3,0.2,0,0,0,0" /><S L="20" X="150" H="100" Y="187" T="0" P="0,0,0.3,0.2,0,0,0,0" /><S L="800" X="400" H="20" Y="127" T="1" P="0,0,0,0.2,0,0
  • Someone

    2000493·cpp·587 B·2010-11-24 00:27 UTC
    //XmlElement.h
    
    #ifndef XMLELEMENT_H_
    #define XMLELEMENT_H_
    
    class XmlElement {
     
    private:
     std::string name;
     std::vector<XmlElement> children;
     std::string value;
     bool closed;
    
    public:
  • Stuff

    2000492·text·5.3 KB·2010-11-24 00:27 UTC
    Sniper Have Sniper rifles (duh) They have wimpy little pistols for a side arm, and have a knife for CQC(Close Quarters Combat)
    Scouts and Engi's will use Gallian Rifle Circa 1935
    Players will have a
  • Stuff

    2000490·cpp·877 B·2010-11-24 00:27 UTC
    //XmlElement.cpp
    
    #include <vector>
    #include <string>
    #include <iostream>
    #include "xmlelem.h"
    
    XmlElement::XmlElement() {
     // TODO Auto-generated constructor stub
    
    }
    
    std::vector<XmlEleme
  • Zantier's map - UBER HARD TURNAR

    2000481·xml·623 B·2010-11-24 00:23 UTC
    <C><P /><Z><S><S X="42" Y="257" L="60" H="25" T="0" P="0,0,0.3,0.2,0,0,0,0" /><S X="150" Y="187" L="20" H="100" T="0" P="0,0,0.3,0.2,0,0,0,0" /><S X="400" Y="127" L="800" H="20" T="1" P="0,0,0,0.2,0,0
  • Something

    2000287·text·236 B·2010-11-23 22:12 UTC
    megaf: 2.7.6-0.1mdv2010.1 in main/backports, 2010.1 for i586
    megaf: 2.7.4-0.1mdv2010.1 in main/updates, 2010.1 for i586
    megaf: 2.7.2-0.2mdv2010.1 in main/testing, 2010.1 for i586
    megaf: 2.7.1-1mdv2010
  • enol / capitalize

    2000245·c·377 B·2010-11-23 21:14 UTC
    #include <ctype.h>
    #include <stdio.h>
    
    char *caps (char *s);
    
    int
    main (int argc, char **argv)
    {
     if (argc != 1)
     printf ("%s\n", caps (argv[1]));
     return 0;
    }
    
    char *
    caps (char *s
  • Untitled

    2000237·text·2.8 KB·2010-11-23 21:03 UTC
    Application: Akonadi Resource (akonadi_maildir_resource), signal: Aborted
    Traceback (most recent call last):
     File "/usr/share/gdb/auto-load/usr/lib/libgobject-2.0.so.0.2200.5-gdb.py", line 9, in <
  • Anonymous

    2000181·text·1.4 KB·2010-11-23 20:14 UTC
    Index: firmware/export/config/sansac200.h
    ===================================================================
    --- firmware/export/config/sansac200.h (revision 28650)
    +++ firmware/export/config/sans
  • Miscellany

    2000138·text·154 B·2010-11-23 19:10 UTC
    prefix=/usr
    extensiondir=/usr/share/zeitgeist/_zeitgeist/engine/extensions
    
    Name: zeitgeist
    Description: Zeitgeist Engine Extensions
    Version: 0.6
  • Something

    2000129·text·2.1 KB·2010-11-23 19:02 UTC
    Name:zeitgeist
    Version:0.6
    Release:0
    Summary:Event logging framework
    Group:System/Daemons
    License:LGPLv3
    URL:http://zeitgeist-project.com
    Source:%{name}-%{version}.tar.gz
    BuildRoot:%{_tmppath}

older pastes →