All pastesPublic feed

Public feed

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

    2089153·text·1.1 KB·2011-10-11 18:58 UTC
    alias trans { 
     sockclose t 
     set %trans_w $$1 
     set %trans_f milon.morfix.co.il 
     sockopen t %trans_f 80 
    } 
    on *:sockopen:t:{ 
     if !$sockerr { 
     var %s sockwrite -tn t 
     %s GET /
  • Miscellany

    2089150·text·332 B·2011-10-11 18:52 UTC
    int o = al_get_display_orientation(display);
    if (o == ALLEGRO_DISPLAY_ORIENTATION_270_DEGREES) {
     al_change_display_option(display, ALLEGRO_SUPPORTED_ORIENTATIONS, ALLEGRO_DISPLAY_ORIENTATION_270_DE
  • Something

    2089148·text·3.7 KB·2011-10-11 18:45 UTC
    RESPONSIBILITIES/DUTIES
    
    Essential Functions:
    
    · Responsible for enterprise-wide security architecture, policy and procedures.
    
    · Responsible for monitoring & maintenance of secu
  • Miscellany

    2089146·text·12.6 KB·2011-10-11 18:35 UTC
    Directory Server Diagnosis
    
    Performing initial setup:
    
     Trying to find home server...
    
     Home Server = Server2
    
     * Identified AD Forest. 
    
     Ldap search capabality attribut
  • Something

    2089143·text·169.4 KB·2011-10-11 18:15 UTC
    
        
  • Anonymous

    2089140·text·2.7 KB·2011-10-11 17:58 UTC
    [ 19%] Building CXX object CMakeFiles/python_module_PyKDE4_kdeui.dir/sip/kdeui/sipkdeuipart3.o
    /var/abs/extra/kdebindings-python/src/build/sip/kdeui/sipkdeuipart3.cpp: In function 'PyObject* meth_KPl
  • Untitled

    2089138·text·18.4 KB·2011-10-11 17:54 UTC
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
    <html xmlns:fb='http://www.facebook.com/2008/fbml' xmlns='http://www.w3.org/1999/xhtml'>
     <he
  • Untitled

    2089137·text·18.4 KB·2011-10-11 17:52 UTC
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
    <html xmlns:fb='http://www.facebook.com/2008/fbml' xmlns='http://www.w3.org/1999/xhtml'>
     <he
  • Someone

    2089132·text·154 B·2011-10-11 17:29 UTC
    public class TESTER {
     public static void main(String[] args){
     Ocean a = new Ocean();
     a.placeAllBoats();
     System.out.println("COMPLETE.");
     }
    }
  • Someone

    2089131·text·156 B·2011-10-11 17:28 UTC
    public class TESTER {
     public static void main(String[] args){
     Ocean a = new Ocean();
     a.placeAllBoats();
     System.out.println("COMPLETE.");
     }
    }
  • Someone

    2089130·text·1.9 KB·2011-10-11 17:28 UTC
    import java.util.Random;
    public class Ocean extends GoodOcean{
     
     public void placeAllBoats(){
     int n = 0;
     String orient;
     Random generator = new Random();
     while(n != 1){
     try{
     in
  • Something

    2089129·text·1.9 KB·2011-10-11 17:28 UTC
    import java.util.Scanner;
    
    public class BattleshipPlayer {
     private String name;
     protected BattleshipGrid grid;
     private int AChits = 0;
     private int Bhits = 0;
     private int Chits = 0;
     priva
  • Anonymous

    2089128·text·1.5 KB·2011-10-11 17:27 UTC
    public class Position {
     private char row = 'Z';
     private int column = 0;
     private int rowIndex = 0;
     private int colIndex = 0;
    
     public Position(char r, int col){
     row = r;
     if(row == 'A' |
  • Miscellany

    2089127·text·3.6 KB·2011-10-11 17:27 UTC
    public class Boat {
     @SuppressWarnings("unused")
     private boolean Sunk = false;
     private String Ship;
     private Position Pos;
     private String Orientation;
     private int hits[];
  • Anonymous

    2089126·text·1.4 KB·2011-10-11 17:26 UTC
    public class BattleshipGrid {
     private char[][] POS = new char[10][10];
     
     public void shotAt(Position pos, boolean hit, char initial){
     if(hit)
     POS[pos.rowIndex()][pos.columnIndex()] = initi
  • Mine

    2089125·text·662 B·2011-10-11 17:25 UTC
    private void validateUserEntry()
     {
    
     // Checks the value of the text.
    
     if(serverName.Text.Length == 0)
     {
    
     // Initializes the variables to pass to the MessageBox.Show method.
    
     st
  • pteID regkey

    2089123·text·757 B·2011-10-11 17:05 UTC
    REGEDIT4
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Cryptography\Defaults\Provider\Portugal Identity Card CSP]
    "Signature"=hex:97,56,70,60,0a,17,fb,44,f9,d4,be,73,3c,bf,bc,42,db,89,58,41,fe,\
     41,f8
  • Vigenere.java

    2089121·text·13.3 KB·2011-10-11 16:44 UTC
    /*
     * Vigenere.java
     * by Eric Farmer
     */
    
    /**
     * This class contains methods for encrypting and decrypting using the Vigenere
     * cipher. All computation is done with arrays of character codes
  • Someone

    2089118·text·618 B·2011-10-11 16:02 UTC
    public class harmadik {
    
     public static void main(String[] args) {
     int n;
     int szam = 0;
    
     if (args.length == 0) {
     n = 10;
     } else {
     try {
     n = Integer.parseInt(args[0]);
     }
  • Unnamed

    2089116·text·1.2 KB·2011-10-11 15:54 UTC
    /**
     * @(#)Text1.java
     *
     *
     * @author
     * @version 1.00 2011/10/11
     */
    
    import java.util.Scanner;
    
    public class Text1 {
    
     public static void main (String[] args) {
    
     Scanner inp

older pastes →