All pastesPublic feed

Public feed

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

    2056513·text·605 B·2011-05-11 01:04 UTC
    OK! Let's move on to whatever's next
    OK! Together we'll be fine
    OK! Even if the wind changes
    OK! I know the dreams won't!
    
    Caught up dreaming my way this far
    I ended up not noticing...
    ...that
  • Untitled

    2056511·text·1.1 KB·2011-05-11 00:52 UTC
    lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 16384
     inet6 ::1 prefixlen 128 
     inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1 
     inet 127.0.0.1 netmask 0xff000000 
     inet6 2001:470:8d23:: prefixlen
  • Anonymous

    2056509·text·162 B·2011-05-11 00:40 UTC
    object teammember {
     var noise = 'silence'
    
     method set_noise {
     noise = shift
     }
    
     method get_noise {
     return noise
     }
    }
  • Miscellany

    2056508·text·162 B·2011-05-11 00:40 UTC
    object teammember {
     var noise = 'silence'
    
     method set_noise {
     noise = shift
     }
    
     method get_noise {
     return noise
     }
    }
  • Mine

    2056507·nasm·2.1 KB·2011-05-11 00:34 UTC
    00383a80 <_ZN11CMatrixGLES11MultMatrixfEPKf>:
     383a80: 6a43 ldr r3, [r0, #36] ; 0x24
     383a82: ed2d 8b10 vpush {d8-d15}
     383a86: b090 sub
  • VigorFly200 Log

    2056505·text·1.1 KB·2011-05-11 00:32 UTC
    VigorFly200 syslog: Nicaragua scan command!^M
    VigorFly200 syslog: read scan reslut @00 ms
    VigorFly200 syslog: status 2 0x04 ----> 0x05 @00 ms
    VigorFly200 syslog: WiMAX: HsTimer=0, link_status=0, co
  • Miscellany

    2056504·text·1.1 KB·2011-05-11 00:30 UTC
    VigorFly200 syslog: Nicaragua scan command!^M
    VigorFly200 syslog: read scan reslut @00 ms
    VigorFly200 syslog: status 2 0x04 ----> 0x05 @00 ms
    VigorFly200 syslog: WiMAX: HsTimer=0, link_status=0, co
  • Anonymous

    2056503·text·1.1 KB·2011-05-11 00:27 UTC
    (gdb) bt
    #0 0x00383aaa in Matrix4Mul (this=0x20030010, matrix=0xbefff038) at MatrixGLES.cpp:268
    #1 CMatrixGLES::MultMatrixf (this=0x20030010, matrix=0xbefff038) at MatrixGLES.cpp:275
    #2 0x00383e
  • Something

    2056495·text·226.5 KB·2011-05-10 23:36 UTC
    
        
  • Anonymous

    2056492·text·150 B·2011-05-10 23:16 UTC
    find /foo/bar/ -mtime -3 -size +1000k -exec /bin/ln -s {} /local/media/New/ \;
    find /local/media/New/ -mindepth 1 -mtime +4 -exec /bin/rm -r {} \;
  • Anonymous

    2056491·text·150 B·2011-05-10 23:14 UTC
    find /foo/bar/ -mtime -3 -size +1000k -exec /bin/ln -s {} /local/media/New/ \;
    find /local/media/New/ -mindepth 1 -mtime +4 -exec /bin/rm -r {} \;
  • Anonymous

    2056490·text·1.7 KB·2011-05-10 23:03 UTC
    UP1500 ~ # cat sqrt.c 
    #include <math.h>
    
    float _sqrt(float x) {
     return sqrt(x);
    }
    
    UP1500 ~ # gcc -O3 -mcpu=ev67 -c sqrt.c 
    UP1500 ~ # objdump -d sqrt.o 
    
    sqrt.o: file format el
  • Gstreamer, Matroska

    2056488·text·1.3 KB·2011-05-10 22:47 UTC
    Got tags from element matroskademux0:
     video-codec : XVID MPEG-4
     language-code : en
    
    Got tags from element matroskademux0:
     audio-codec : MPEG-1 layer 3
     languag
  • Something

    2056483·text·14.4 KB·2011-05-10 22:39 UTC
    using System;
    using System.Diagnostics;
    using System.Globalization;
    using System.Text;
    using System.Windows.Input;
    using Microsoft.Practices.Composite.Events;
    using Microsoft.Practices.Composite
  • Miscellany

    2056480·text·12.2 KB·2011-05-10 22:32 UTC
    NFO:root:we have 146 devices
    | SIP Device | User Agent | Fingerprint |
    ----------------------------------------------------------------------------------
    |
  • Something

    2056475·text·1.2 KB·2011-05-10 22:20 UTC
    PS1='\[\033[0;32m\]\A\[\033[0;31m\]\u\[\033[0;34m\]@\[\033[0;35m\]\h\[\033[0;34m\]:\[\033[00;36m\]\W\[\033[0;33m\] $\[\033[0m\] '
    alias diff='colordiff' # requires colordiff package
    ali
  • Mine

    2056472·text·602 B·2011-05-10 22:10 UTC
    def es_divisible(n,d):
     if(n%d==0):
     return True
     else:
     return False
    def es_primo(n):
     d=2
     while True:
     if(n==d):
     return True
     elif(es_d
  • Stuff

    2056471·text·422 B·2011-05-10 22:04 UTC
    static void rotate_tile(unsigned int size,unsigned char *target)
    {
     unsigned int i,j,k,l=0;
     
     for (k=0;k<size;k++)
     {
     unsigned char temp[8][8];
     for(i=0;i<8;i++)
     for(j=0;j<4;j++)
     {
  • Mine

    2056469·java·1.5 KB·2011-05-10 21:53 UTC
    import java.util.Map;
    import java.util.TreeMap;
    
    public class Test {
     private static final int MAX_PRIO = 3;
     private static boolean[] toogle= new boolean[MAX_PRIO+1];
     private static int[] no
  • Something

    2056468·text·596 B·2011-05-10 21:53 UTC
    static void rotate_tile(unsigned int size,unsigned char *target)
    {
     unsigned char rotate[8][8];
     unsigned int i,j,k,l=0;
     
     for (k=0;k<size;k++)
     {
     unsigned char temp[8][8];
     for(i=0;i<8;i+

older pastes →