Java and IRC. What Is IRC? Nicks, Channels and Operators. Using IRC. What Is an IRC Bot? IRC Protocol
|
|
|
- Adela Carter
- 10 years ago
- Views:
Transcription
1 What Is IRC? Java and IRC Making a Java IRC Bot With The PircBot Framework IRC stands for Internet Relay Chat Created by Jarkko Oikarinen in 1988 and still growing in popularity An IRC server allows people to chat in channels (rooms or groups), or privately People from all over the world can use it IRC servers can be joined together to provide vast networks with thousands of users Copyright Paul Mutton, 1 Copyright Paul Mutton, 2 Using IRC A user runs a client program to connect to the IRC server The client program allows you to send and receive messages to and from other users Some popular IRC clients are: - mirc BitchX xchat Nicks, Channels and Operators Each user must have a unique nickname Commonly referred to as a nick Must not contain certain characters, e.g. spaces Channel names must start with # or & Some users may be channel operators Can kick other users out of their channel Can op and deop other users in the channel Can ban users from entering the channel Copyright Paul Mutton, 3 Copyright Paul Mutton, 4 IRC Protocol The IRC protocol is text-based RFC 1459 defines how messages are sent from client to server and server to client TCP sockets are used for connecting Some IRC servers will support extra commands that are not in RFC 1459 The protocol is asynchronous in nature What Is an IRC Bot? Bot is short for robot An IRC Bot is a special type of IRC client Does not require a human user Often responds automatically to certain events One analogy is to think of an IRC Bot as a normal IRC client, but where the human user has been replaced by a program! Copyright Paul Mutton, 5 Copyright Paul Mutton, 6 1
2 What Can IRC Bots Do? Tell people what the time is Pass messages on to other users Display information from TV listings Perform simple mathematics Send and receive files Monitor channels to generate statistics... anything you want! Using Bots Sensibly Never annoy other users with your Bot Only place your Bot in channels where it may be of use or amusement Bots should only speak when spoken to! Make the purpose of your Bot clear Make it clear that you own your Bot Never try to pretend that it s not a Bot! Copyright Paul Mutton, 7 Copyright Paul Mutton, 8 What is PircBot? A framework for writing IRC Bots with Java Simplifies the task of writing an IRC Bot No need to worry about the underlying protocol Very simple Bots can be written within minutes! Event-driven architecture Can make a Bot that responds to certain events Where Can I Download PircBot? The PircBot homepage Documentation changelog PircBot FAQ Examples of some Bots that use PircBot Download the zip file Contains a file named pircbot.jar Also contains a directory full of documentation Copyright Paul Mutton, 9 Copyright Paul Mutton, 10 Extending PircBot To use PircBot, you must import its package import org.jibble.pircbot.*; PircBot is an abstract class You cannot instantiate it You must extend it and inherit its functionality You can override some of the methods in the PircBot class to respond to certain events An Example: SimpleBot import org.jibble.pircbot.*; public class SimpleBot extends PircBot { public SimpleBot() { setname( SimpleBot ); Copyright Paul Mutton, 11 Copyright Paul Mutton,
3 Connecting To an IRC Server public static void main(string[] args) { SimpleBot bot = new SimpleBot(); bot.setverbose(true); try { bot.connect( compsoc1.ukc.ac.uk ); catch (Exception e) { System.out.println( Can t connect: + e); return; bot.joinchannel( #bots ); Some Notes About SimpleBot SimpleBot.java The setname method is inherited from the PircBot class and sets the nick that will be used when the Bot joins an IRC server Connecting to an IRC server setverbose(true) causes everything to be printed out as it arrives from the IRC server Each method in the PircBot class is fully described in the provided API documentation Copyright Paul Mutton, 13 Copyright Paul Mutton, 14 Making SimpleBot Tell the Time In your SimpleBot class, override the onmessage method: - public void onmessage(string channel, String sender, String login, String hostname, String message) { if (message.equalsignorecase( time )) { String time = new java.util.date().tostring(); sendmessage(channel, sender + : + time); Running Your IRC Bot pircbot.jar contains the classes for PircBot Add this file to your classpath when you compile or run your IRC Bot manually, e.g. javac classpath pircbot.jar;. *.java java classpath pircbot.jar;. SimpleBot Note: Unix users should use : instead of ; Copyright Paul Mutton, 15 Copyright Paul Mutton, 16 Other Built-in PircBot Features DCC send/receive files DCC chat Coloured messages Maintain lists of joined channels and users List all channels on a server Many event-driven methods that may be overridden onconnect, ondisconnect, onjoin, onop, etc. Rejoining a Channel When Kicked public void onkick(string channel, String kickernick, String login, String hostname, String recipientnick, String reason) { if (recipientnick.equalsignorecase(getnick())) { joinchannel(channel); Note that we only attempt to rejoin the channel if it was us that was kicked Copyright Paul Mutton, 17 Copyright Paul Mutton,
4 Reconnecting to an IRC Server PircBot Ident Server public void ondisconnect() { while (!isconnected()) { try { reconnect(); catch (Exception e) { // Couldn t reconnect. // Pause for a short while before retrying? Some IRC servers require you to connect from a machine that runs an Ident Server PircBot can emulate the functionality of an Ident Server if you do not already run one Provides the IRC server with your Bot s login when it asks for it bot.startidentserver(); Copyright Paul Mutton, 19 Copyright Paul Mutton, 20 PircBot Flood Protection Some IRC servers disconnect clients that send too many messages too quickly. PircBot queues most outgoing messages. Queued messages are sent with a small delay between them to prevent flooding You can get the current size of this queue by calling the getoutgoingqueuesize() method Colors and Formatting Examples String chan = #bots ; sendmessage(chan, Colors.BOLD + Hello! ); Hello! sendmessage(chan, Colors.RED + Red text ); Red text sendmessage(chan, Colors.BLUE + Blue text ); Blue text Copyright Paul Mutton, 21 Copyright Paul Mutton, 22 Further Text Formatting DCC Send File sendmessage(chan, Colors.BOLD + Colors.RED + Bold and red ); Bold and red sendmessage(chan, Colors.BLUE + Blue + Colors.NORMAL + normal ); Blue normal File file = new File( c:/stuff/elvis.mp3 ); String nick = Dave ; int timeout = ; dccsendfile(file, nick, timeout); Target client must be able to establish a TCP connection to your Bot to receive the file Copyright Paul Mutton, 23 Copyright Paul Mutton,
5 User List Example onuserlist is called after we join a channel This example overrides the onuserlist method and simply prints out each nick public void onuserlist(string channel, User[] users) { for (int i = 0; i < users.length; i++) { User user = users[i]; String nick = user.getnick(); System.out.println(nick); Copyright Paul Mutton, 25 Multiple Server Support in PircBot An individual instance of a subclass of PircBot can only join one IRC server at a time Multiple server support can be achieved by creating multiple instances Create a class to control a Collection of PircBot objects and allow them to interact Copyright Paul Mutton, 26 IRC Bots Based On PircBot (1) ComicBot Creates comic strips out of things that people say IRC Bots Based On PircBot (2) Monty The first ever PircBot! Learns from what it sees other people saying Dictionary and thesaurus lookup feature Can remind people to do things after a set time Shows TV schedule listings Performs google searches Calculates results of mathematical expressions etc. Copyright Paul Mutton, 27 Copyright Paul Mutton, 28 IRC Bots Based On PircBot (3) SocialNetworkBot Attempts to produce graphical representations of who talks to who on IRC channels An IRC Client Based On PircBot ScreenIRC IRC client with a Swing GUI Can be detached from a server and reconnected without appearing to have ever left Copyright Paul Mutton, 29 Copyright Paul Mutton,
6 Final Words... If you want to make your own IRC Bot that uses PircBot, then remember that these slides only provide a briefest glimpse into what you may need to know Refer to the API documentation that is included inside the zip file A good starting place is to read the documentation for the PircBot class Copyright Paul Mutton,
IRC - Internet Relay Chat
IRC - Internet Relay Chat Protocol, Communication, Applications Jenisch Alexander [email protected] Morocutti Nikolaus [email protected] Introduction Facts. How it works. IRC specifiaction. Communication.
3.5. cmsg Developer s Guide. Data Acquisition Group JEFFERSON LAB. Version
Version 3.5 JEFFERSON LAB Data Acquisition Group cmsg Developer s Guide J E F F E R S O N L A B D A T A A C Q U I S I T I O N G R O U P cmsg Developer s Guide Elliott Wolin [email protected] Carl Timmer [email protected]
Transparent Redirection of Network Sockets 1
Transparent Redirection of Network Sockets 1 Timothy S. Mitrovich, Kenneth M. Ford, and Niranjan Suri Institute for Human & Machine Cognition University of West Florida {tmitrovi,kford,nsuri}@ai.uwf.edu
Server Setup. Basic Settings
Server Setup Basic Settings CrushFTP has two locations for its preferences. The basic settings are located under the "Prefs" tab on the main screen while the advanced settings are under the file menu.
/helpop <command> you can get the detailed help for one single command.
These are the Commands you need, to enter or leave a channel or to change your nick. You can use some of these commands every day or maybe more often. They control how you appear in IRC, and allow you
Manual. Programmer's Guide for Java API
2013-02-01 1 (15) Programmer's Guide for Java API Description This document describes how to develop Content Gateway services with Java API. TS1209243890 1.0 Company information TeliaSonera Finland Oyj
Transparent Redirection of Network Sockets 1
Transparent Redirection of Network Sockets Timothy S. Mitrovich, Kenneth M. Ford, and Niranjan Suri Institute for Human & Machine Cognition University of West Florida {tmitrovi,kford,[email protected].
LAB4 Making Classes and Objects
LAB4 Making Classes and Objects Objective The main objective of this lab is class creation, how its constructer creation, object creation and instantiation of objects. We will use the definition pane to
Division of Informatics, University of Edinburgh
CS1Bh Lecture Note 20 Client/server computing A modern computing environment consists of not just one computer, but several. When designing such an arrangement of computers it might at first seem that
The Java Series. Java Essentials I What is Java? Basic Language Constructs. Java Essentials I. What is Java?. Basic Language Constructs Slide 1
The Java Series Java Essentials I What is Java? Basic Language Constructs Slide 1 What is Java? A general purpose Object Oriented programming language. Created by Sun Microsystems. It s a general purpose
New York University Computer Science Department Courant Institute of Mathematical Sciences
New York University Computer Science Department Courant Institute of Mathematical Sciences Course Title: Data Communications & Networks Course Number: g22.2662-001 Instructor: Jean-Claude Franchitti Session:
Crash Course in Java
Crash Course in Java Based on notes from D. Hollinger Based in part on notes from J.J. Johns also: Java in a Nutshell Java Network Programming and Distributed Computing Netprog 2002 Java Intro 1 What is
First Java Programs. V. Paúl Pauca. CSC 111D Fall, 2015. Department of Computer Science Wake Forest University. Introduction to Computer Science
First Java Programs V. Paúl Pauca Department of Computer Science Wake Forest University CSC 111D Fall, 2015 Hello World revisited / 8/23/15 The f i r s t o b l i g a t o r y Java program @author Paul Pauca
1.00 Lecture 1. Course information Course staff (TA, instructor names on syllabus/faq): 2 instructors, 4 TAs, 2 Lab TAs, graders
1.00 Lecture 1 Course Overview Introduction to Java Reading for next time: Big Java: 1.1-1.7 Course information Course staff (TA, instructor names on syllabus/faq): 2 instructors, 4 TAs, 2 Lab TAs, graders
Developing an Inventory Management System for Second Life
Developing an Inventory Management System for Second Life Abstract Anthony Rosequist Workflow For the progress report a month ago, I set the goal to have a basic, functional inventory management system
2- Electronic Mail (SMTP), File Transfer (FTP), & Remote Logging (TELNET)
2- Electronic Mail (SMTP), File Transfer (FTP), & Remote Logging (TELNET) There are three popular applications for exchanging information. Electronic mail exchanges information between people and file
IRC-Client. IRC Group: Arne Bochem, Benjamin Maas, David Weiss
IRC-Client IRC Group: Arne Bochem, Benjamin Maas, David Weiss September 1, 2007 Contents 1 Introduction 2 1.1 Description.............................. 2 1.2 Motivation.............................. 2
Java Language Tools COPYRIGHTED MATERIAL. Part 1. In this part...
Part 1 Java Language Tools This beginning, ground-level part presents reference information for setting up the Java development environment and for compiling and running Java programs. This includes downloading
What really is a Service?
Internet Services What really is a Service? On internet (network of networks), computers communicate with one another. Users of one computer can access services from another. You can use many methods to
Forming a P2P System In order to form a P2P system, the 'central-server' should be created by the following command.
CSCI 5211 Fall 2015 Programming Project Peer-to-Peer (P2P) File Sharing System In this programming assignment, you are asked to develop a simple peer-to-peer (P2P) file sharing system. The objective of
1001ICT Introduction To Programming Lecture Notes
1001ICT Introduction To Programming Lecture Notes School of Information and Communication Technology Griffith University Semester 2, 2015 1 3 A First MaSH Program In this section we will describe a very
Programming in Python. Basic information. Teaching. Administration Organisation Contents of the Course. Jarkko Toivonen. Overview of Python
Programming in Python Jarkko Toivonen Department of Computer Science University of Helsinki September 18, 2009 Administration Organisation Contents of the Course Overview of Python Jarkko Toivonen (CS
Java CPD (I) Frans Coenen Department of Computer Science
Java CPD (I) Frans Coenen Department of Computer Science Content Session 1, 12:45-14:30 (First Java Programme, Inheritance, Arithmetic) Session 2, 14:45-16:45 (Input and Programme Constructs) Materials
#Celine_Dion - EFnet - IRC Tutorial
#Celine_Dion - EFnet - IRC Tutorial I. Configure And Use mirc 1. Get The Program First you will need to download and install a program called mirc to connect to the IRC (Internet Relay Chat) Network. You
Implementing an IRC Server Using an Object- Oriented Programming Model for Concurrency
Implementing an IRC Server Using an Object- Oriented Programming Model for Concurrency Bachelor Thesis Fabian Gremper ETH Zürich [email protected] May 17, 2011 September 25, 2011 Supervised by:
CS170 Lab 11 Abstract Data Types & Objects
CS170 Lab 11 Abstract Data Types & Objects Introduction: Abstract Data Type (ADT) An abstract data type is commonly known as a class of objects An abstract data type in a program is used to represent (the
Free Java textbook available online. Introduction to the Java programming language. Compilation. A simple java program
Free Java textbook available online "Thinking in Java" by Bruce Eckel, 4th edition, 2006, ISBN 0131872486, Pearson Education Introduction to the Java programming language CS 4354 Summer II 2015 The third
Chapter 14 Analyzing Network Traffic. Ed Crowley
Chapter 14 Analyzing Network Traffic Ed Crowley 10 Topics Finding Network Based Evidence Network Analysis Tools Ethereal Reassembling Sessions Using Wireshark Network Monitoring Intro Once full content
www.virtualians.pk CS506 Web Design and Development Solved Online Quiz No. 01 www.virtualians.pk
CS506 Web Design and Development Solved Online Quiz No. 01 Which of the following is a general purpose container? JFrame Dialog JPanel JApplet Which of the following package needs to be import while handling
JAVAMAIL API - SMTP SERVERS
JAVAMAIL API - SMTP SERVERS http://www.tutorialspoint.com/javamail_api/javamail_api_smtp_servers.htm Copyright tutorialspoint.com SMTP is an acronym for Simple Mail Transfer Protocol. It is an Internet
Installing Java (Windows) and Writing your First Program
Appendix Installing Java (Windows) and Writing your First Program We will be running Java from the command line and writing Java code in Notepad++ (or similar). The first step is to ensure you have installed
Troubleshooting / FAQ
Troubleshooting / FAQ Routers / Firewalls I can't connect to my server from outside of my internal network. The server's IP is 10.0.1.23, but I can't use that IP from a friend's computer. How do I get
The HoneyNet Project Scan Of The Month Scan 27
The HoneyNet Project Scan Of The Month Scan 27 23 rd April 2003 Shomiron Das Gupta [email protected] 1.0 Scope This month's challenge is a Windows challenge suitable for both beginning and intermediate
Mail User Agent Project
Mail User Agent Project Tom Kelliher, CS 325 100 points, due May 4, 2011 Introduction (From Kurose & Ross, 4th ed.) In this project you will implement a mail user agent (MUA) that sends mail to other users.
(For purposes of this Agreement, "You", " users", and "account holders" are used interchangeably, and where applicable).
Key 2 Communications Inc. Acceptable Use Policy Please read carefully before accessing and/or using the Key 2 Communications Inc. Web site and/or before opening an account with Key 2 Communications Inc..
HelpSystems Web Server User Guide
HelpSystems Web Server User Guide Copyright Copyright HelpSystems, LLC. Robot is a division of HelpSystems. HelpSystems Web Server, OPAL, OPerator Assistance Language, Robot ALERT, Robot AUTOTUNE, Robot
How to Install Java onto your system
How to Install Java onto your system 1. In your browser enter the URL: Java SE 2. Choose: Java SE Downloads Java Platform (JDK) 7 jdk-7- windows-i586.exe. 3. Accept the License Agreement and choose the
latest Release 0.2.6
latest Release 0.2.6 August 19, 2015 Contents 1 Installation 3 2 Configuration 5 3 Django Integration 7 4 Stand-Alone Web Client 9 5 Daemon Mode 11 6 IRC Bots 13 7 Bot Events 15 8 Channel Events 17 9
Free Java textbook available online. Introduction to the Java programming language. Compilation. A simple java program
Free Java textbook available online "Thinking in Java" by Bruce Eckel, 4th edition, 2006, ISBN 0131872486, Pearson Education Introduction to the Java programming language CS 4354 Summer II 2014 Jill Seaman
AP Computer Science Static Methods, Strings, User Input
AP Computer Science Static Methods, Strings, User Input Static Methods The Math class contains a special type of methods, called static methods. A static method DOES NOT operate on an object. This is because
Chapter 46 Terminal Server
Chapter 46 Terminal Server Introduction... 46-2 TTY Devices... 46-2 Multiple Sessions... 46-4 Accessing Telnet Hosts... 46-5 Command Reference... 46-7 connect... 46-7 disable telnet server... 46-7 disconnect...
W3Perl A free logfile analyzer
W3Perl A free logfile analyzer Features Works on Unix / Windows / Mac View last entries based on Perl scripts Web / FTP / Squid / Email servers Session tracking Others log format can be added easily Detailed
History OOP languages Year Language 1967 Simula-67 1983 Smalltalk
History OOP languages Intro 1 Year Language reported dates vary for some languages... design Vs delievered 1957 Fortran High level programming language 1958 Lisp 1959 Cobol 1960 Algol Structured Programming
Java 7 Recipes. Freddy Guime. vk» (,\['«** g!p#« Carl Dea. Josh Juneau. John O'Conner
1 vk» Java 7 Recipes (,\['«** - < g!p#«josh Juneau Carl Dea Freddy Guime John O'Conner Contents J Contents at a Glance About the Authors About the Technical Reviewers Acknowledgments Introduction iv xvi
An Android-based Instant Message Application
An Android-based Instant Message Application Qi Lai, Mao Zheng and Tom Gendreau Department of Computer Science University of Wisconsin - La Crosse La Crosse, WI 54601 [email protected] Abstract One of the
Lab 1 Beginning C Program
Lab 1 Beginning C Program Overview This lab covers the basics of compiling a basic C application program from a command line. Basic functions including printf() and scanf() are used. Simple command line
PROFESSIONAL. Node.js BUILDING JAVASCRIPT-BASED SCALABLE SOFTWARE. Pedro Teixeira WILEY. John Wiley & Sons, Inc.
PROFESSIONAL Node.js BUILDING JAVASCRIPT-BASED SCALABLE SOFTWARE Pedro Teixeira WILEY John Wiley & Sons, Inc. INTRODUCTION xxvii CHAPTER 1: INSTALLING NODE 3 Installing Node on Windows 4 Installing on
Getting Started with the Internet Communications Engine
Getting Started with the Internet Communications Engine David Vriezen April 7, 2014 Contents 1 Introduction 2 2 About Ice 2 2.1 Proxies................................. 2 3 Setting Up ICE 2 4 Slices 2
Java Web Services SDK
Java Web Services SDK Version 1.5.1 September 2005 This manual and accompanying electronic media are proprietary products of Optimal Payments Inc. They are to be used only by licensed users of the product.
HOW TO USE THE File Transfer Protocol SERVER ftp.architekturaibiznes.com.pl
HOW TO USE THE File Transfer Protocol SERVER ftp.architekturaibiznes.com.pl In order to access the A&B server with a view to uploading or downloading materials, any FTP client software can be used. If
Computer Networks Practicum 2015
Computer Networks Practicum 2015 Vrije Universiteit Amsterdam, The Netherlands http://acropolis.cs.vu.nl/ spyros/cnp/ 1 Overview This practicum consists of two parts. The first is to build a TCP implementation
Napster and Gnutella: a Comparison of two Popular Peer-to-Peer Protocols. Anthony J. Howe Supervisor: Dr. Mantis Cheng University of Victoria
Napster and Gnutella: a Comparison of two Popular Peer-to-Peer Protocols Anthony J Howe Supervisor: Dr Mantis Cheng University of Victoria February 28, 2002 Abstract This article presents the reverse engineered
File Transfer Protocols In Anzio
The New File Transfer Protocols in Anzio version 12.6 What s New in Version 12.6 With the release of Anzio Lite and AnzioWin version 12.6 we are introducing a new user interface and support for additional
CrushFTP User Manager
CrushFTP User Manager Welcome to the documentation on the CrushFTP User Manager. This document tries to explain all the parts tot he User Manager. If something has been omitted, please feel free to contact
Handout 1. Introduction to Java programming language. Java primitive types and operations. Reading keyboard Input using class Scanner.
Handout 1 CS603 Object-Oriented Programming Fall 15 Page 1 of 11 Handout 1 Introduction to Java programming language. Java primitive types and operations. Reading keyboard Input using class Scanner. Java
User Guide. You will be presented with a login screen which will ask you for your username and password.
User Guide Overview SurfProtect is a real-time web-site filtering system designed to adapt to your particular needs. The main advantage with SurfProtect over many rivals is its unique architecture that
High speed networks and distributed systems Oxford Brookes MSc dissertation. IRC distributed bot lending platform: The Loufiz project
High speed networks and distributed systems Oxford Brookes MSc dissertation Subject: IRC distributed bot lending platform The Loufiz project Dissertation Supervisor: Faye Mitchell Field code: DSD Module
Object Oriented Software Design
Object Oriented Software Design Introduction to Java - II Giuseppe Lipari http://retis.sssup.it/~lipari Scuola Superiore Sant Anna Pisa September 14, 2011 G. Lipari (Scuola Superiore Sant Anna) Introduction
Appendix A Using the Java Compiler
Appendix A Using the Java Compiler 1. Download the Java Development Kit from Sun: a. Go to http://java.sun.com/j2se/1.4.2/download.html b. Download J2SE v1.4.2 (click the SDK column) 2. Install Java. Simply
Remote Online Support
Remote Online Support STRONGVON Tournament Management System 1 Overview The Remote Online Support allow STRONGVON support personnel to log into your computer over the Internet to troubleshoot your system
Sample CSE8A midterm Multiple Choice (circle one)
Sample midterm Multiple Choice (circle one) (2 pts) Evaluate the following Boolean expressions and indicate whether short-circuiting happened during evaluation: Assume variables with the following names
Java with Eclipse: Setup & Getting Started
Java with Eclipse: Setup & Getting Started Originals of slides and source code for examples: http://courses.coreservlets.com/course-materials/java.html Also see Java 8 tutorial: http://www.coreservlets.com/java-8-tutorial/
The Darwin Game 2.0 Programming Guide
The Darwin Game 2.0 Programming Guide In The Darwin Game creatures compete to control maps and race through mazes. You play by programming your own species of creature in Java, which then acts autonomously
Lesson: All About Sockets
All About Sockets http://java.sun.com/docs/books/tutorial/networking/sockets/index.html Page 1 sur 1 The Java TM Tutorial Start of Tutorial > Start of Trail Trail: Custom Networking Lesson: All About Sockets
Design and Implementation of an Intelligent Network Monitoring and Management Tool in Internet and Intranet
International Journal of Electronic and Electrical Engineering. ISSN 0974-2174 Volume 5, Number 2 (2012), pp. 83-89 International Research Publication House http://www.irphouse.com Design and Implementation
SMTP-32 Library. Simple Mail Transfer Protocol Dynamic Link Library for Microsoft Windows. Version 5.2
SMTP-32 Library Simple Mail Transfer Protocol Dynamic Link Library for Microsoft Windows Version 5.2 Copyright 1994-2003 by Distinct Corporation All rights reserved Table of Contents 1 Overview... 5 1.1
USING HDFS ON DISCOVERY CLUSTER TWO EXAMPLES - test1 and test2
USING HDFS ON DISCOVERY CLUSTER TWO EXAMPLES - test1 and test2 (Using HDFS on Discovery Cluster for Discovery Cluster Users email [email protected] if you have questions or need more clarifications. Nilay
BF2CC Daemon Linux Installation Guide
BF2CC Daemon Linux Installation Guide Battlefield 2 + BF2CC Installation Guide (Linux) 1 Table of contents 1. Introduction... 3 2. Opening ports in your firewall... 4 3. Creating a new user account...
PERFORMANCE COMPARISON OF COMMON OBJECT REQUEST BROKER ARCHITECTURE(CORBA) VS JAVA MESSAGING SERVICE(JMS) BY TEAM SCALABLE
PERFORMANCE COMPARISON OF COMMON OBJECT REQUEST BROKER ARCHITECTURE(CORBA) VS JAVA MESSAGING SERVICE(JMS) BY TEAM SCALABLE TIGRAN HAKOBYAN SUJAL PATEL VANDANA MURALI INTRODUCTION Common Object Request
Topics. Introduction. Java History CS 146. Introduction to Programming and Algorithms Module 1. Module Objectives
Introduction to Programming and Algorithms Module 1 CS 146 Sam Houston State University Dr. Tim McGuire Module Objectives To understand: the necessity of programming, differences between hardware and software,
Java Crash Course Part I
Java Crash Course Part I School of Business and Economics Institute of Information Systems HU-Berlin WS 2005 Sebastian Kolbe [email protected] Overview (Short) introduction to the environment Linux
Development of parallel codes using PL-Grid infrastructure.
Development of parallel codes using PL-Grid infrastructure. Rafał Kluszczyński 1, Marcin Stolarek 1, Grzegorz Marczak 1,2, Łukasz Górski 2, Marek Nowicki 2, 1 [email protected] 1 ICM, University of Warsaw,
Welcome to Introduction to programming in Python
Welcome to Introduction to programming in Python Suffolk One, Ipswich, 4:30 to 6:00 Tuesday Jan 14, Jan 21, Jan 28, Feb 11 Welcome Fire exits Toilets Refreshments 1 Learning objectives of the course An
Development of a Real-time Customer Service System. Abstract
44 Development of a Real-time Customer Service System I.O. AWOYELU ** Department of Computer Science & Engineering, Obafemi Awolowo University, Ile-Ife, Nigeria E-mail: [email protected] Abstract
Creating a Simple, Multithreaded Chat System with Java
Creating a Simple, Multithreaded Chat System with Java Introduction by George Crawford III In this edition of Objective Viewpoint, you will learn how to develop a simple chat system. The program will demonstrate
Object Oriented Software Design
Object Oriented Software Design Introduction to Java - II Giuseppe Lipari http://retis.sssup.it/~lipari Scuola Superiore Sant Anna Pisa October 28, 2010 G. Lipari (Scuola Superiore Sant Anna) Introduction
Java Software Development Kit (JDK 5.0 Update 14) Installation Step by Step Instructions
Java Software Development Kit (JDK 5.0 Update 14) Installation Step by Step Instructions 1. Click the download link Download the Java Software Development Kit (JDK 5.0 Update 14) from Sun Microsystems
Networking Applications
Networking Dr. Ayman A. Abdel-Hamid College of Computing and Information Technology Arab Academy for Science & Technology and Maritime Transport Electronic Mail 1 Outline Introduction SMTP MIME Mail Access
Network Communication
Network Communication Outline Sockets Datagrams TCP/IP Client-Server model OSI Model Sockets Endpoint for bidirectional communication between two machines. To connect with each other, each of the client
Contents. Java - An Introduction. Java Milestones. Java and its Evolution
Contents Java and its Evolution Rajkumar Buyya Grid Computing and Distributed Systems Lab Dept. of Computer Science and Software Engineering The University of Melbourne http:// www.buyya.com Java Introduction
You are to simulate the process by making a record of the balls chosen, in the sequence in which they are chosen. Typical output for a run would be:
Lecture 7 Picking Balls From an Urn The problem: An urn has n (n = 10) balls numbered from 0 to 9 A ball is selected at random, its' is number noted, it is set aside, and another ball is selected from
Mobile Push Architectures
Praktikum Mobile und Verteilte Systeme Mobile Push Architectures Prof. Dr. Claudia Linnhoff-Popien Michael Beck, André Ebert http://www.mobile.ifi.lmu.de WS 2015/2016 Asynchronous communications How to
Linux MPS Firewall Supplement
Linux MPS Firewall Supplement First Edition April 2007 Table of Contents Introduction...1 Two Options for Building a Firewall...2 Overview of the iptables Command-Line Utility...2 Overview of the set_fwlevel
NEW AND IMPROVED! INSTALLING an IRC Server (Internet Relay Chat) on your WRT54G,GS,GL Version 1.02 April 2 nd, 2014. Rusty Haddock/AE5AE
INSTALLING an IRC Server (Internet Relay Chat) on your WRT54G,GS,GL Version 1.02 April 2 nd, 2014 Rusty Haddock/AE5AE NEW AND IMPROVED! - WHAT THIS DOCUMENT IS. 1 / 12 This document will attempt to describe
ERserver. iseries. Securing applications with SSL
ERserver iseries Securing applications with SSL ERserver iseries Securing applications with SSL Copyright International Business Machines Corporation 2000, 2001. All rights reserved. US Government Users
The Konversation Handbook. Gary R. Cramblitt
Gary R. Cramblitt 2 Contents 1 Introduction 6 2 Using Konversation 7 2.1 If you haven t used IRC before................................ 7 2.2 Setting your identity.................................... 9
Writing a C-based Client/Server
Working the Socket Writing a C-based Client/Server Consider for a moment having the massive power of different computers all simultaneously trying to compute a problem for you -- and still being legal!
CipherMail Gateway Quick Setup Guide
CIPHERMAIL EMAIL ENCRYPTION CipherMail Gateway Quick Setup Guide October 10, 2015, Rev: 9537 Copyright 2015, ciphermail.com. CONTENTS CONTENTS Contents 1 Introduction 4 2 Typical setups 4 2.1 Direct delivery............................
Java Cheatsheet. http://introcs.cs.princeton.edu/java/11cheatsheet/ Tim Coppieters Laure Philips Elisa Gonzalez Boix
Java Cheatsheet http://introcs.cs.princeton.edu/java/11cheatsheet/ Tim Coppieters Laure Philips Elisa Gonzalez Boix Hello World bestand genaamd HelloWorld.java naam klasse main methode public class HelloWorld
1) Which of the following is a constant, according to Java naming conventions? a. PI b. Test c. x d. radius
Programming Concepts Practice Test 1 1) Which of the following is a constant, according to Java naming conventions? a. PI b. Test c. x d. radius 2) Consider the following statement: System.out.println("1
How to use the Eclipse IDE for Java Application Development
How to use the Eclipse IDE for Java Application Development Java application development is supported by many different tools. One of the most powerful and helpful tool is the free Eclipse IDE (IDE = Integrated
OCS Training Workshop LAB14. Email Setup
OCS Training Workshop LAB14 Email Setup Introduction The objective of this lab is to provide the skills to develop and trouble shoot email messaging. Overview Electronic mail (email) is a method of exchanging
