All pastesPublic feed

Public feed

Pastes people chose to make public. Author names hidden.
  • Partielle Spezialisierung

    1897866·cpp·681 B·2010-07-10 14:02 UTC
    #include <iostream>
    
    using namespace std;
    
    template <class T1, class T2>
    class Objekt
    {
     public:
     void hello()
     {
     cout << "Nicht- spezialisiertes Template" << endl;
     }
    };
  • shitan

    1897864·text·17.0 KB·2010-07-10 13:59 UTC
    !!################################
    !!ALSA Information Script v 0.4.59
    !!################################
    
    !!Script ran on: Sat Jul 10 13:57:47 UTC 2010
    
    !!Linux Distribution
    !!------------------
    
    Ub
  • Mine

    1897838·text·210 B·2010-07-10 13:20 UTC
    0.14-1mdv2010.1 in contrib/release, cooker for x86_64
    0.14-1mdv2010.1 in contrib/release, cooker for i586
    0.13-1mdv2007.1 in contrib/release, cooker for ppc
    0.11-2mdv2007.0 in contrib/release, cooker
  • Vollstndige Spezialisierung

    1897795·cpp·491 B·2010-07-10 10:53 UTC
    #include <iostream>
    using namespace std;
    
    template <class T1,class T2> 
    struct X
    {
     void hello()
     {
     cout << "Nicht-spezialisiertes Template" << endl;
     }
    };
    
    template <> 
    struc
  • tragedy

    1897772·text·11.7 KB·2010-07-10 09:15 UTC
    [10:25:51] <Chroniko> !state amatsuki all deleted
    [10:25:54] <Chii[AR]> STATE: Amatsuki - Episode 1 to 13 FILE STATUS: STATE SET TO: deleted
    [10:26:16] <Chroniko> !state blue drop all deleted
    [10:2
  • tragedy

    1897770·text·11.6 KB·2010-07-10 09:13 UTC
    [10:25:51] <Chroniko> !state amatsuki all deleted
    [10:25:54] <Chii[AR]> STATE: Amatsuki - Episode 1 to 13 FILE STATUS: STATE SET TO: deleted
    [10:26:16] <Chroniko> !state blue drop all deleted
    [10:2
  • Modified fs_dump_st for Access d

    1897741·vbnet·33.1 KB·2010-07-10 07:42 UTC
    
        
  • bijoybn@yahoo.com

    1897736·text·17.7 KB·2010-07-10 07:27 UTC
    #
    # This is the main Apache HTTP server configuration file. It contains the
    # configuration directives that give the server its instructions.
    # See <URL:http://httpd.apache.org/docs/2.2> for detai
  • How To Get Rich On A 1-Cent Week

    1897684·cpp·456 B·2010-07-10 05:21 UTC
    #include <iostream>
    using namespace std;
    
    int main ()
    {
     int payment2;
     int payment = 1;
     int profit = 1;
     int weeks = 1;
    
    // these are initialized to accomodate the first week.
    
     do
  • Untitled

    1897647·text·1.2 KB·2010-07-10 03:14 UTC
    top - 20:13:50 up 11 days, 7:12, 10 users, load average: 0.30, 0.46, 0.57
    Tasks: 193 total, 3 running, 190 sleeping, 0 stopped, 0 zombie
    Cpu(s): 4.4%us, 0.5%sy, 0.0%ni, 95.1%id, 0.0%wa,
  • Someone

    1897644·python·3.3 KB·2010-07-10 03:00 UTC
    #Created by Kyle Cheung- July 8, 2010. Licensed under the MIT/X11 license: http://www.opensource.org/licenses/mit-license.php
    
    #Meh, the outrageous prices of movie concessions
    sizes = [ 'small', 'm
  • ml|

    1897580·text·16.5 KB·2010-07-10 00:36 UTC
    -- $HOME/.xmonad/xmonad.hs for i531 --
    
    {-# LANGUAGE NoMonomorphismRestriction #-}
    
    import System.IO
    import XMonad
    
    import XMonad.Actions.CycleWS
    import XMonad.Actions.GridSelect
    import XMonad.Actions
  • CRC32

    1897568·python·5.7 KB·2010-07-10 00:08 UTC
    #!/usr/bin/env python
    # -*- coding: utf-8 -*-
    # Version 0.2 2009.01.25
    # Copyright (c) 2009, Taoufik El Aoumari
    # Released under the GPL license http://www.gnu.org/licenses/gpl-3.0.txt
    """
     E
  • Funktionstemplates

    1897542·cpp·310 B·2010-07-09 23:32 UTC
    template <typename T>
    T nullValue()
    {
     return T(); // T wird nur als Rückgabetyp verwendet
    }
    int main()
    {
     nullValue(); // unzulaessig
     d
  • CRC32

    1897534·python·5.7 KB·2010-07-09 23:22 UTC
    #!/usr/bin/env python
    # -*- coding: utf-8 -*-
    # Version 0.2 2009.01.25
    # Copyright (c) 2009, Taoufik El Aoumari
    # Released under the GPL license http://www.gnu.org/licenses/gpl-3.0.txt
    """
     E
  • Unnamed

    1897532·text·316 B·2010-07-09 23:20 UTC
    olorin_: 1.0.6-2plf2010.0 in plf-free/backports, 2010.0 for i586
    olorin_: 1.0.6-2mdv2010.0 in contrib/backports, 2010.0 for i586
    olorin_: 1.0.4-1plf2010.0 in plf-free/release, 2010.0 for i586
    olorin_:
  • CRC32

    1897527·python·5.7 KB·2010-07-09 23:17 UTC
    #!/usr/bin/env python
    # -*- coding: utf-8 -*-
    # Version 0.2 2009.01.25
    # Copyright (c) 2009, Taoufik El Aoumari
    # Released under the GPL license http://www.gnu.org/licenses/gpl-3.0.txt
    """
     E
  • Template

    1897484·cpp·625 B·2010-07-09 21:27 UTC
    template <class T>
    void swap(T& par1,T& par2)
    {
     T temp = par1; // Der Kopierkonstruktor muss vorhanden sein
     par1 = par2; // Der Zuweisungsoperator muss vorhanden sein
     par2 = temp;
  • Unnamed

    1897480·text·2.5 KB·2010-07-09 21:15 UTC
    00:00.0 Host bridge: ATI Technologies Inc Radeon Xpress 7930 Host Bridge
     Subsystem: LG Electronics, Inc. Device 011b
    00:01.0 PCI bridge: ATI Technologies Inc RS7932 PCI Bridge
    00:04.0 PCI bridge:
  • Something

    1897409·text·218 B·2010-07-09 19:20 UTC
    0.29.0-1mdv2010.1 in contrib/release, cooker for i586
    0.29.0-1mdv2010.1 in contrib/release, cooker for x86_64
    0.26.0-2mdv2008.0 in contrib/release, cooker for ppc
    0.26.0-2mdv2007.0 in contrib/release,

older pastes →