All pastesPublic feed

Public feed

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

    2095580·text·34.8 KB·2011-11-25 04:26 UTC
    
        
  • Anonymous

    2095579·text·784 B·2011-11-25 04:19 UTC
    #!/usr/bin/perl
    use strict;
    use warnings;
    
    ($ARGV[0] && $ARGV[1] && $ARGV[2]) ? my ($host, $user, $dir) = ($ARGV[0], $ARGV[1], $ARGV[2]) : die "[err] Usage: ./flowconverter remotefilehost remoteus
  • surreal CentOS iptables

    2095576·text·490 B·2011-11-25 03:53 UTC
    # Generated by iptables-save v1.4.7 on Thu Nov 24 21:38:07 2011
    *filter
    :INPUT ACCEPT [0:0]
    :FORWARD ACCEPT [0:0]
    :OUTPUT ACCEPT [7823:776595]
    -A INPUT -m state --state RELATED,ESTABLISHED -j ACC
  • Untitled

    2095575·text·4.7 KB·2011-11-25 03:46 UTC
    [root@localhost ~]# sudo /etc/init.d/kerio-connect start
    Starting Kerio Connect: . [ OK ]
    
    [root@localhost ~]# netstat -al |grep 4040 
    
    [root@localhost ~]# lsof
  • Mine

    2095564·text·15.7 KB·2011-11-25 03:00 UTC
    tch: [/home/alex/.stuff/OpenWRT/WRT54G/trunk/build_dir/linux-brcm47xx/kmod-switch/switch-robo.c:169] SIOCSMIIREG failed!
    roboswitch: [/home/alex/.stuff/OpenWRT/WRT54G/trunk/build_dir/linux-brcm47xx/k
  • KRS - Lab.vez. 4

    2095557·text·2.4 KB·2011-11-25 01:38 UTC
    1.
    
    #include<stdio.h>
    int main()
    {
     float sum,sump=0,sumnp=0,a[100];
     int n,i;
     scanf("%d", &n);
     for(i=0;i<n;i++)
     scanf("%f", &a[i]);
     for(i=0;i<n;i++)
     {
     if
  • Miscellany

    2095555·text·1.2 KB·2011-11-25 00:59 UTC
    .
    Exception in thread "main" java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/Main
    Caused by: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.Main
    at java.net.URLClassLoader$1.run(UR
  • Something

    2095548·text·2.1 KB·2011-11-24 23:52 UTC
    Na stanici metra vo Washingtone DC sa postavil muž a začal hrať na
    husliach; bolo studené januárové ráno. Hral asi 45 minút Bachove
    skladby. V tom čase, pretože bola špička, prešli stanicou metra ti
  • Miscellany

    2095546·text·966 B·2011-11-24 22:46 UTC
    % ls path/to/ROMs/Sega_{32X,CD,Genesis}
    mm/ROMs/Sega_32X:
    BIOS Doom_32X.32x Mortal_Kombat_II.bin
    
    mm/ROMs/Sega_CD:
    BIOS Snatch
  • Unnamed

    2095543·text·4.5 KB·2011-11-24 22:33 UTC
    package net.minecraft.src;
    
    import java.util.Random;
    
    public class BlockDiamondFurnace extends BlockContainer
    {
    
     protected BlockDiamondFurnace(int i, boolean flag)
     {
     super(i,
  • Stuff

    2095541·text·1.8 KB·2011-11-24 22:29 UTC
    Este Sabado 26/11, 10:30hs en Rivera 3565 (oficina GuruHub)
    
    "PHP small talks" 
    
    Título:Scaling existing and new sites with Varnish, Nginx, MySQL and PHP-FPM
    Categoria: Frameworks & Ferramentas
  • Stuff

    2095540·text·1.7 KB·2011-11-24 22:25 UTC
    Título:Scaling existing and new sites with Varnish, Nginx, MySQL and PHP-FPM
    Categoria: Frameworks & Ferramentas
    Nível: Intermediário, Avançado
    
    Resumo: How to serve 2.000.000 legacy pages per-s
  • Someone

    2095537·text·433 B·2011-11-24 21:38 UTC
    ./a.out
    1 joystick(s) found
    using joystick 0
    
     +-------------------------------------------------+
     | trying to calibrate joystick |
     | please don't move your pad until we
  • Someone

    2095536·text·419 B·2011-11-24 21:27 UTC
    % ./a.out
    1 joystick(s) found
    using joystick 0
    
     +-------------------------------------------------+
     | trying to calibrate joystick |
     | please don't move your pad until w
  • first

    2095531·text·1.4 KB·2011-11-24 21:19 UTC
    2011-11-23 04:07:46.000 iTunes[1984:15337]: amai: AMAuthInstallSsoInitialize: can't find SSOClient.framework
    2011-11-23 04:08:02.000 iTunes[1984:10b13]: DeviceRequest failed: 0xe000404f
    2011-11-23 0
  • error 40

    2095529·text·7.8 KB·2011-11-24 21:13 UTC
    2011-11-23 05:34:17.000 iTunes[313:10a3f]: amai: AMAuthInstallSsoInitialize: can't find SSOClient.framework
    2011-11-23 05:34:20.000 iTunes[313:11303]: DeviceRequest failed: 0xe000404f
    2011-11-23 05:
  • error 40

    2095528·text·7.8 KB·2011-11-24 21:11 UTC
    2011-11-23 05:34:17.000 iTunes[313:10a3f]: amai: AMAuthInstallSsoInitialize: can't find SSOClient.framework
    2011-11-23 05:34:20.000 iTunes[313:11303]: DeviceRequest failed: 0xe000404f
    2011-11-23 05:
  • Untitled

    2095527·text·94 B·2011-11-24 21:06 UTC
    http://172.16.1.223:8010/builders/vlc-osx-intel64/builds/254/steps/Build%20VLC/logs/stdio/text
  • Anonymous

    2095523·python·423 B·2011-11-24 20:40 UTC
    import sys
    
    # True si el complex 'c' pertany a el conjunt de Mandelbrot, False sino.
    def es_mandelbrot(c):
     z = 0
     for i in range(100):
     z = z*z+c;
     return abs(z) < 4
    
    # Dibuixem de (-2, -1)
  • Anonymous

    2095522·python·424 B·2011-11-24 20:37 UTC
    import sys
    
    # True si el complex 'c' pertany a el conjunt de Mandelbrot, False sino.
    def es_mandelbrot(c):
     z = 0
     for i in range(100):
     z = z*z+c;
     return abs(z) < 4
    
    # Dibuixem de (-2, -1)

older pastes →