All pastesPublic feed

Public feed

Pastes people chose to make public. Author names hidden.
  • helloworld Makefile

    2075103·text·391 B·2011-06-05 15:33 UTC
    PLUGIN=helloworld
    
    OUTFILE=$(PLUGIN).so
    
    CXX=g++
    RM=rm -vf
    
    DEFINES=-DLINUX 
    INCLUDES=-Iamx
    
    CXXFLAGS=-c -O2 $(DEFINES) $(INCLUDES)
    LDFLAGS=-shared -s 
    
    OBJECTS=$(patsubst %.cpp,%.o,$(wil
  • helloworld Makefile.mingw

    2075101·text·506 B·2011-06-05 15:32 UTC
    PLUGIN=helloworld
    
    OUTFILE=$(PLUGIN).dll
    DEFFILE=$(PLUGIN).def
    
    CXX=mingw32-g++
    DEL=del /Q /F
    
    DEFINES=-DWIN32 -DHAVE_STDINT_H -D__need_size_t
    INCLUDES=-Iamx
    
    CXXFLAGS=-c -O2 $(DEFINES) $(I
  • Someone

    2075092·text·386 B·2011-06-05 15:01 UTC
    /****************************************************************************
    ** Meta object code from reading C++ file 'pipelinemanager.h'
    **
    ** Created: Mon Oct 11 22:00:34 2010
    ** by: The
  • Someone

    2075089·cpp·689 B·2011-06-05 14:58 UTC
    #include <functional>
    #include <cstdio>
    
    template <typename R, typename V1, typename V2>
    std::function<R(V2)> pa(const std::function<R(V1,V2)> &f, V1 v) {
     return [&](V2 x) { return f(v, x); }
  • Someone

    2075088·text·19.0 KB·2011-06-05 14:58 UTC
    deskey@debian:~$ glxinfo
    name of display: :0.0
    display: :0 screen: 0
    direct rendering: Yes
    server glx vendor string: SGI
    server glx version string: 1.2
    server glx extensions:
     GLX_ARB_multi
  • nicdev007

    2075081·text·284 B·2011-06-05 14:21 UTC
    1) checkout your master,
    2) fetch sit/master
    3) merge sit/master to local/master
    4) make changes 
    5) commit changes 
    6) push to your own (nicdevs/master) 
    7) checkout sit
    8) merge master to sit
  • nicdev007

    2075079·text·282 B·2011-06-05 14:17 UTC
    1) checkout your master,
    2) fetch sit/master
    3) merge sit/master to local/master
    4) make changes 
    5) commit changes 
    6) push to your own (nicdevs/master) 
    7) push to sit main branch(sit/master)
  • Someone

    2075076·text·688 B·2011-06-05 14:03 UTC
    # deb cdrom:[Debian GNU/Linux 6.0.1a _Squeeze_ - Official amd64 NETINST Binary-1 20110320-$
    
    #deb cdrom:[Debian GNU/Linux 6.0.1a _Squeeze_ - Official amd64 NETINST Binary-1 20110320-1$
    
    deb http:/
  • Someone

    2075074·cpp·3.2 KB·2011-06-05 13:57 UTC
    #include <iostream>
    #include <cstdlib>
    using namespace std;
    
    void einlesen(int array[], int n){
     cout << "Geben Sie nun die Zahlen ein:" << endl;
     for(int i = 0; i < n; i++){
     int input;
     ci
  • Unnamed

    2075071·cpp·2.5 KB·2011-06-05 13:54 UTC
    #include <iostream>
    using namespace std;
    
    enum Monat {
     Jan,Feb,Mrz,Apr,Mai,Jun,
     Jul,Aug,Sep,Okt,Nov,Dez
    };
    
    struct Datum {
     short tag;
     enum Monat mon;
     unsigned int jahr;
    };
    
    enum Art
  • thecomicproject

    2075070·text·1.8 KB·2011-06-05 13:48 UTC
    BTW here is my little take on the question of black money stashed abroad based on my what I know from friends in the private banking world.
    No industrial sits on cash; it is always invested - & not i
  • thecomicproject

    2075066·text·1.5 KB·2011-06-05 13:45 UTC
    BTW here is my little take on the question of black money stashed abroad based on my what I know from friends in the private banking world.
    No industrial sits on cash; it is always invested - & not i
  • Stuff

    2075059·cpp·1.4 KB·2011-06-05 13:18 UTC
    .h
    
    #include <windows.h>
    #include <stdio.h>
    #include <string.h>
    #define MY_APP_ERROR_HDR ("Found a Error!")
    #define NEED_IGNORE (1)
    #define NEED_DEBUG (2)
    char __stdcall _FASSERT(void* expr,
  • Stuff

    2075058·text·1.4 KB·2011-06-05 13:17 UTC
    .h
    
    #include <windows.h>
    #include <stdio.h>
    #include <string.h>
    #define MY_APP_ERROR_HDR ("Found a Error!")
    #define NEED_IGNORE (1)
    #define NEED_DEBUG (2)
    char __stdcall _FASSERT(void* expr,
  • Stuff

    2075053·text·934 B·2011-06-05 13:06 UTC
    07:59:43.968502 IP (tos 0x0, ttl 64, id 11988, offset 0, flags [DF], proto TCP (6), length 60)
     127.0.0.1.37375 > 127.0.0.1.8330: Flags [S], cksum 0x0cfd (correct), seq 500636784, win 32792, optio
  • Something

    2075052·text·934 B·2011-06-05 13:05 UTC
    07:59:43.968502 IP (tos 0x0, ttl 64, id 11988, offset 0, flags [DF], proto TCP (6), length 60)
     127.0.0.1.37375 > 127.0.0.1.8330: Flags [S], cksum 0x0cfd (correct), seq 500636784, win 32792, optio
  • Someone

    2075050·text·174 B·2011-06-05 13:04 UTC
    07:59:11.775402 IP (tos 0x0, ttl 64, id 57463, offset 0, flags [DF], proto TCP (6), length 64)
     10.253.253.32.60214 > 10.253.253.28.8330: Flags [S], cksum 0x6bda (correct
  • Mine

    2075047·text·5 B·2011-06-05 12:41 UTC
    TUTTI
  • 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

older pastes →