All pastesPublic feed

Public feed

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

    2075046·csharp·23.1 KB·2011-06-05 12:39 UTC
    #requires -version 2.0
    <#
    .SYNOPSIS
     Creates an EXE wrapper from a PowerShell script by compressing the script and embedding into
     a newly generated assembly.
    .DESCRIPTION
     Creates an E
  • Miscellany

    2075036·text·498 B·2011-06-05 12:07 UTC
    Last login: Sun Jun 5 13:54:15 on ttys000
    ves1-1x-dhcp184:~ glennkarlsen$ /rbinstall/mkamsboot-mac clppa.bin bootloader-clipplus.sansa patched.bin
    mkamsboot Version 1.4
    This is free software; see
  • Something

    2075032·text·243 B·2011-06-05 12:02 UTC
    COOLER MASTER CMP-350 500W MidT ATX
    ASUS P7H55/USB3 Intel H55 Soket 1156 DDR3 2200MHz (O/C) USB 3.0
    INTEL Core i3 560 Soket 1156 3.33GHz 4MB Cache 32nm
    KINGSTON 4GB (2*2GB) KIT DDR3 1333MHz CL9 Ram
  • Miscellany

    2075031·text·244 B·2011-06-05 11:59 UTC
    Last login: Sun Jun 5 13:52:47 on ttys000
    ves1-1x-dhcp184:~ glennkarlsen$ cd rbinstall
    ves1-1x-dhcp184:rbinstall glennkarlsen$ ls
    bootloader-clipplus.sansa mkamsboot-mac
    clppa.bin mkamsboot.dmg
  • Unnamed

    2075030·text·66 B·2011-06-05 11:58 UTC
    bootloader-clipplus.sansa mkamsboot-mac
    clppa.bin mkamsboot.dmg
  • Miscellany

    2075024·text·303 B·2011-06-05 11:45 UTC
    (setq A '(1 2 3 4 5))
    
    (setq newlist '())
    
    (defun caesar (X newlist d)
     (if (cdr X)
     (progn
     (push (+ (car X) d) newlist)
     (caesar (cdr X) newlist d)
     )
     (push (+ (
  • Untitled

    2075021·java·3.6 KB·2011-06-05 11:39 UTC
    package com.l2dc.gameserver.taskmanager;
    
    import java.lang.ref.WeakReference;
    import java.util.LinkedList;
    import java.util.Stack;
    import java.util.concurrent.ScheduledFuture;
    
    import javolutio
  • Untitled

    2075020·text·3.6 KB·2011-06-05 11:38 UTC
    package com.l2dc.gameserver.taskmanager;
    
    import java.lang.ref.WeakReference;
    import java.util.LinkedList;
    import java.util.Stack;
    import java.util.concurrent.ScheduledFuture;
    
    import javolutio
  • Someone

    2075018·text·3.8 KB·2011-06-05 11:38 UTC
    package com.l2dc.gameserver.taskmanager;
    
    import java.lang.ref.WeakReference;
    import java.util.LinkedList;
    import java.util.Stack;
    import java.util.concurrent.ScheduledFuture;
    
    import javolutio
  • caesar

    2075017·text·221 B·2011-06-05 11:32 UTC
    (setq A '(1 2 3 4 5))
    
    (setq B '())
    
    (defun caesar (X Y d)
     (if (CDR X)
     (proc
     (caesar (CDR X) Y d)
     (CONS '(+ (CAR X) d) 'Y)
     )
     (CONS '(+ (CAR X) d) 'Y)
     )
    )
  • Something

    2075014·text·2.4 KB·2011-06-05 11:26 UTC
    (defun groesser(ListA ListB)
     (while ( and (equal (car ListA) (car ListB)) (eq ( or (eq (car ListA) nil) (eq (car ListB) nil) ) nil ) ) ;Finde die erste Stelle, an der sich die beiden Listen
  • Anonymous

    2075006·text·279 B·2011-06-05 10:44 UTC
    <?php
     $args = array(
     'orderby' => 'title', 'order' => 'ASC',
     'category__not_in' => array ('7') 
     );
    
     $query = new WP_Query($args);
     if($query->have_posts()) :
     while ($query->have_posts(
  • Something

    2075003·text·82.6 KB·2011-06-05 10:37 UTC
    
        
  • Anonymous

    2075000·text·48.5 KB·2011-06-05 10:34 UTC
    
        
  • Stuff

    2074998·text·404 B·2011-06-05 10:27 UTC
    diff -r 44de9d4987f0 src/bin/Makefile.am
    --- a/src/bin/Makefile.am Sun Jun 05 11:37:07 2011 +0200
    +++ b/src/bin/Makefile.am Sun Jun 05 12:26:42 2011 +0200
    @@ -49,7 +49,6 @@
     parser_cdda.c\
     box.c
  • Miscellany

    2074991·text·2.0 KB·2011-06-05 10:25 UTC
    /bin/bash ../../libtool --tag=CC --mode=link gcc -std=gnu99 -I/opt/e17/include/eina-1 -I/opt/e17/include/eina-1/eina -I/opt/e17/include/eet-1 -I/opt/e17/include/evas-1 -I/opt/e17/include/ecore-1 -I
  • Anonymous

    2074989·text·7.4 KB·2011-06-05 10:21 UTC
    regis@Voyager [05-06-11 12:18:01] ~/Desktop/Apps/0ad/0ad-r09530-alpha/build/workspaces/gcc $ make CONFIG=Release -j2
    ==== Building mocks_real ====
    ==== Building network ====
    mocks_real.cpp
    precomp
  • Unnamed

    2074984·python·3.3 KB·2011-06-05 10:01 UTC
    # -*- coding: utf-8 -*-
    
    from xml.parsers import expat
    from urllib import FancyURLopener
    import pickle
    
    class Weather():
     weatherBase = list()
     def showWeather(self, channel, connection, args,
  • Something

    2074978·text·349 B·2011-06-05 09:42 UTC
    (defun groesser(ListA ListB)
     (dolist (x ListA)
     (if (eq (first ListB) x)
     (pop ListB) 
     ()
     (message "%S %S %S"x ListA ListB)
     )
    )
    
    (defun kleiner(ListA
  • Someone

    2074971·javascript·288 B·2011-06-05 09:00 UTC
    function checkAll() {
     $('div[id="uniform-undefined"] span').hasClass('checked') ? (check.removeClass('checked'), $('input[type="checkbox"]').attr('checked', false))

older pastes →