24 Pages

apache2

Course: CS 401, Fall 2009
School: UCCS
Rating:
 
 
 
 
 

Word Count: 1803

Document Preview

Web Apache Server A PAtCHy server: developed by the Apache group formed 2/95 around a number of people who provided patch files for NCSA httpd 1.3 by Rob McCool. History-http://www.apache.org/ABOUT_APACHE.html First official public release (0.6.2) in April 1995 Add adaptive pre-fork child processes (very important!). Modular structure and API for extensibility (Bob Thau) Port to multiple platforms. Add...

Register Now

Unformatted Document Excerpt

Coursehero >> Colorado >> UCCS >> CS 401

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
Web Apache Server A PAtCHy server: developed by the Apache group formed 2/95 around a number of people who provided patch files for NCSA httpd 1.3 by Rob McCool. History-http://www.apache.org/ABOUT_APACHE.html First official public release (0.6.2) in April 1995 Add adaptive pre-fork child processes (very important!). Modular structure and API for extensibility (Bob Thau) Port to multiple platforms. Add documentation. Apache 1.0 was released on 12/1/95. Pass NCSA httpd to be #1 server in Internet. 04/21/09 C. Edward Chow CS4 01 Pag Web Server Installation Statistics http://www.netcraft.co.uk/survey/ 04/21/09 C. Edward Chow CS4 01 Pag Compiling Apache_1.3.12 Download apache_1.3.12.tar.gz from http://www.apache.org/dist or closer mirror sites $tar xzvf apache_1.3.12.tar.gz $ ./configure --prefix=PREFIX $ make $ make install $ PREFIX/bin/apachectl start Here PREFIX is the prefix of the directory containing the distribution, typically it is /usr/local/apache. CS4 01 Pag 04/21/09 C. Edward Chow CS401 Apache Testbed bilbo.uccs.edu and frodo.uccs.edu are installed with Apache1.3.12. /mpc/home/www/sites contains the configuration files of various web sites contained in the CD-ROM of Apache text. See http://cs.uccs.edu/~cs401/cs401lab.html for more detail on how to carry out the exercise. Copy /mpc/home/www/sites to your directory. To avoid conflict, use port # = 8<last 3 digits of SS#> Add "Port 8<last 3 digits of SS#>" to httpd.conf. 04/21/09 C. Edward Chow CS4 01 Pag Apache Exercise Setup Replace domain name/IP address on 3rd left Linux PC www.butterhlies.com 192.168.123.2 with bilbo.uccs.edu 128.198.192.182 sales.butterthlies.com 192.168.123.3 with b2b.uccs.edu 128.198.192.172 www.faraway.com 192.168.124.1 with wait.uccs.edu 128.198.192.202 Replace domain name/IP address on 4th left Linux PC www.butterhlies.com 192.168.123.2 with frodo.uccs.edu 128.198.192.183 sales.butterthlies.com 192.168.123.3 with feline.uccs.edu 128.198.192.173 www.faraway.com 192.168.124.1 with walden.uccs.edu 128.198.192.203 Replace domain name/IP address on 5th left Linux PC www.butterhlies.com 192.168.123.2 with gandalf.uccs.edu 128.198.192.194 sales.butterthlies.com 192.168.123.3 with gallop.uccs.edu 128.198.192.174 www.faraway.com 192.168.124.1 with wind.uccs.edu 128.198.192.204 CS4 01 Pag 04/21/09 C. Edward Chow Apache Testbed: LAN Setup /usr/www/lan_setup script for bilbo: ifconfig eth0 128.198.192.182 ifconfig eth0:0 128.198.192.172 ifconfig eth0:1 128.198.192.202 Or on linuxconf for bilbo, select config | networking | IP aliases for virtual hosts | eth0. Type in 128.198.192.172, 128.198.192.202 for IP aliases (I have not succeeded in using the above method.) Normally we skip lan_setup. We will share the same lan_setup. Run the above lan_setup if you find the computer is configured incorrectly (through ifconfig). CS4 01 Pag 04/21/09 C. Edward Chow Ifconfig command Interface configuration command. There is an equivalent command ipconfig on win32. In Redhat linux, it is in /sbin. I have modified /etc/profile to include that directory in $PATH. Use ifconfig to show the status Use ifconfig eth0:1 down to shut down the IP aliase. Use ifconfig eth0:1 up to bring it up again. 04/21/09 C. Edward Chow CS4 01 Pag Apache Web Site Exercises Each site.<exercise> directory contains conf: configuration files, httpd.conf, srm.conf, access.conf, mime.types htdocs: contains web pages, scripts logs: access_log, error_log, httpd.pid, (referer_log, agent_log) go: alias of "httpd -d xxSITESxx/site.<name> -X" -d for the site directory, -X single process execution Edit the httpd.conf file. Add the following lines Port 8<last 3 digits of your SS#> TransferLog /mpc/home/<login>/sites/site.<name>/logs/access_log In go shell script file, replace xxSITESxx with /mpc/home/<login>/sites replace <name> with the corresponding site name. Type go to start the web server CS4 01 Pag 04/21/09 C. Edward Chow Examine httpd Configuration To enhance the security, webuser is created to run httpd Add "User webuser" and "Group webgroup" to httpd.conf. "tail -f <site>/logs/error_log" or "ps aux | grep webuser" to see if the server is configured and running. [Sat Feb 7 20:23:57 1998] Server configured -- resuming normal operations or webuser 13013 0.0 2.2 1260 704 ? S 20:23 0:00 httpd -d /home/cs401 "tail -f <site>/logs/access_log" to see the processing results of client requests usrp16.uccs.edu - - [07/Feb/1998:03:21:16 -0700] "GET / HTTP/1.0" 200 170 Use a browser (on vinci or other machines) to access the server a few times with url = http://bilbo:8345/ "kill `cat <site>/logs/httpd.pid`" to terminate web server. note that it is back quote ` and not ` 04/21/09 C. Edward Chow CS4 01 Pag Httpd Configuration File Apache uses a set of (73) directives to describe to httpd how the web site should be configured. http://www.apache.org/docs/mod/directives.html Each Apache configuration directive is described using a common format that looks like this: Syntax: directive-name some args Default: directive-name default-value Context: context-list Override: override Status: status Module: module-name Compatibility: compatibility notes 04/21/09 C. Edward Chow CS4 01 Pag Block Directives Directives that limit the application of other directives. Specify by a group like a tag section in html. <VirtualHost host[:port]> ... </VirtualHost> <VirtualHost...><Directory dir>, <Files file>, <Location URL> in ascending order of authority. <Location> can overwrite others. dir, file, URL can specify using wildcards and full regular expressions preceded by "~" 04/21/09 C. Edward Chow CS4 01 Pag List of Directives User, Group: specify user and group that httpd runs on. ServerName: hostname of server (for redirection URL) ResourceConfig, AccessConfig: for reading additional related directives. Can be disabled by /dev/null as value Port: specify the port httpd run on ServerAdmin:email addr. for browser to do automatic replies. DocumentRoot: TransferLog, ErrorLog, PidFile: where access,error logs, httpd.pid should be located. Can be file or pipe "|rotatelogs" The file is relative to the server root directory (specified httpd in -d <server root> or /usr/local/etc/httpd) 04/21/09 C. Edward Chow CS4 01 Pag Directives KeepAlive [on|off](on): keep connection alive for n requests before terminate provided they come in before timeout. n is defined in MaxKeepAliveRequests <n>(100) directive KeepAliveTimeout <n>(15): wait for the next request for n seconds before terminate the connections. Timeout <n>(300): max. time in sec for a block data. HostNameLookups [on|off|double](off): do reverse DNS lookup for logging the domain name of the request. MaxClients <n>(256): the limit of # of simultaneous requests (hence the # of child processes). MaxRequestsPerChild <n>(0): Spare(child) server dies after <n> requests, avoid mem leak. 0 mean infinite requests. Min/MaxSpareServers <n>(5/10): # of Idle child servers StartServers <n>(5): sets the number of child server processes created on startup. CS4 C. Edward Chow 01 Pag 04/21/09 Homework#3 Exercise 1: Site.toddle and Site.simple "cp -r /mpc/home/www/sites /mpc/home/<login>" Edit the httpd.conf in conf directory DocumentRoot /usr/www/site.simple/htdocs DocumentRoot /mpc/home/<login>/sites/site.simple/htdocs Port 8<last 3 digits of your SS#> TransferLog logs/access_log Edit go shell script "httpd -d /mpc/home/<login>/sites/site.<name> [-X]" go in the site.simple does not have X. go will start the web server. Control-c will terminate it. Use browser to visit the site a few times. Remember to specify the port # in url. For IE browser, type http://bilbo.uccs.edu:<portno>/ or http://frodo.uccs.edu:<portno>/ depending which machine CS4 Check the access_log file. Keep them as record 01 C. Edward Chow Pag 04/21/09 Homework#3 Exercise 1 User webuser Group webgroup ServerName bilbo.uccs.edu or frodo.uccs.edu DocumentRoot /mpc/home/<login>/sites/site.toddle/htdocs Port 8<last 3 digits of your SS#> TransferLog logs/access_log 04/21/09 C. Edward Chow CS4 01 Pag Site.twocopy Create two web servers: one serves customers; one for sales. There are two directories in site.twocopy. In customers/conf/httpd.conf, replace www.butterthlies.com with bilbo.uccs.edu add Port 8<last 3 digits of SS#> Here BindAddress is used to specify the reception of request from specific IP address (domain name) by this web server. BindAddress bilbo.uccs.edu In sales/conf/httpd.conf replace sales.butterthlies.com with b2b.uccs.edu Replace Listen sales.butterthlies.com:80 with Listen b2b.uccs.edu:8<last 3 digits of SS#> httpd -d /mpc/home/<login>/sites/site.twocopy/customers -X httpd -d /mpc/home/<login>/sites/site.twocopy/sales -X CS4 C. Edward Chow 01 Pag 04/21/09 Web Hosting Named-based vs. IP-based Virtual Host (VH) HOST: <name> a unique IP address for each VH on metaheader different to support a lot of VHs old browsers not support this Use <VirtualHost hostname[:port]> block directives Specify ServerAdmin, DocumentRoot, ServerName, ErrorLog, TransferLog for individual VH Be aware that UNIX File Limits on # of file descriptors. (default 64) only support 32 VHs? You may want to increase # of child servers. 04/21/09 C. Edward Chow CS4 01 Pag Site.Virtual/Name-based cd /mpc/home/<login>/sites/site.virtual/Name-based edit the httpd.conf in conf directory: NameVirtualHost 192.168.123.2 NameVirtualHost 128.198.192.182 Port 8<last 3 digits of SS#> <VirtualHost www.butterthlies.com> <VirtualHost bilbo.uccs.edu:portno> Here portno is 8<last 3 digits of your SS#> ServerAdmin sales@butterthlies.com ServerAdmin <login>@cs.uccs.edu /usr/www /mpc/home/<login>/sites/ <VirtualHost sales.butterthlies.com> <VirtualHost sales-bilbo.uccs.edu:portno>...

Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

East Los Angeles College - KX - 08126
Kingston University LondonLibrary ServicesEARTH SCIENCE &amp; GEOGRAPHYEarth Science &amp; Geography Journals: Human GeographyAll journals appear on the main Library Catalogue. Take care to note down when the Library began to subscribe to the journal title to
Delaware - CISC - 2602008
Homework: (each of 5 questions are worth 1.5 grade points: max 7.5 points per homework)1. Write the truth table, then draw the logic diagram for 2-bit (AND, XOR, NOR) and a 1-bit NOT. (you may cut and paste the spare parts on the next slide but must labe
Monmouth IL - HONORS - 210
1 Anna E. Prohaska Honors 210 Professor P. Draves September 28, 2005 Personal Born on February 25, 1986 to Dennis and Mary Ann Prohaska was a little girl, and they called her Anna. Like many college students I have been forced to identify myself by my maj
Oakland University - CSE - 60833
INTRODUCTION TO PARALLEL ALGORITHMS AND PROGRAMMINGCSE 40833/60833 - FALL 2007Instructor Scott Emrich Ofce: 351 Fitzpatrick Hall Phone: (574)631-0353; E-mail: semrich@nd.edu Ofce hours: 10-11:30am, Wed and Fri and by appointment Overview This course wil
Michigan State University - EXAMS - 260
EEP 260: Study Guide for Exam I 2007Topics covered: Whats Development? Whats the Food Problem? How Can LDCs Increase Their Food Production? Source of Questions: Questions will draw on the readings (study questions), lectures, and videos. Structure of the
UMass (Amherst) - RESEC - 460
RESEC 460 - FAMILY ECONOMICS T,Th: 11:15 -12:30 137 Hasbrouck Spring 2003 Professor: M.J. Alhabeeb Office: 212A Stockbridge Hall Phone: 545-5010 Office Hours: T,Th: 3:45-5:00, or by appointment Course Description and Objectives: The major objective of thi
Toledo - GGR - 117
UNIVERSITY OF TORONTO AT MISSISSAUGAGGR117: WHERE ON EARTH?2004/2005 LANDSCAPES OF S-ONTARIO: WHERE?. WHEN. WHAT?. WHY? EXERCISE-1 OBJECTIVES The major objective of this assignment is to learn landscape interpretation, to understand the interrelationshi
UCSD - MAE - 250
MATS 258/MAE 250 - Medical Device Materials and Applications (UC San Diego, Spring 2009)Instructors: Dr. Eunsung Park (Medtronic), Stents, Pacemakers, Implant Materials/Devices Prof. Sungho Jin (UCSD), Advanced/Functional Materials for Implants, Imaging/
Washington - CS - 466
Features High-performance, Low-power AVR 8-bit Microcontroller Advanced RISC Architecture 131 Powerful Instructions Most Single-clock Cycle Execution 32 x 8 General Purpose Working Registers Fully Static Operation Up to 16 MIPS Throughput at 16 MHz On-c
Washington - CS - 466
MAX232, MAX232I DUAL EIA-232 DRIVER/RECEIVERSLLS047H FEBRUARY 1989 REVISED FEBRUARY 2002D D D D D D D D DDOperates With Single 5-V Power Supply LinBiCMOS Process Technology Two Drivers and Two Receivers 30-V Input Levels Low Supply Current . . . 8 mA
Washington - CS - 466
r rTSL230R-LF, TSL230AR-LF, TSL230BR-LF PROGRAMMABLE LIGHT-TO-FREQUENCY CONVERTERSTAOS079 - JANUARY 2006D High-Resolution Conversion of Light D D D D D D D DIntensity to Frequency With No External Components Programmable Sensitivity and Full-Scale Out
Washington - CS - 466
User ManualTDS3000 Series Digital Phosphor Oscilloscopes 071-0274-01This document supports firmware version 2.00 and above.Copyright Tektronix, Inc. All rights reserved. Tektronix products are covered by U.S. and foreign patents, issued and pending. In
Washington - CS - 466
Intel StrongARM SA-1100 MicroprocessorDevelopers ManualAugust 1999Order Number: 278088-004Information in this document is provided in connection with Intel products. No license, express or implied, by estoppel or otherwise, to any intellectual propert
Washington - CS - 466
aFEATURES 2-Axis Acceleration Sensor on a Single IC Chip Measures Static Acceleration as Well as Dynamic Acceleration Duty Cycle Output with User Adjustable Period Low Power &lt;0.6 mA Faster Response than Electrolytic, Mercury or Thermal Tilt Sensors Bandw
Washington - CS - 466
$SSOL.DWLRQ1RWHV7KLVSDJHDQGDOOOLQNHGGR.XPHQWVKDYHEHHQZULWWHQE\/HLWQHU+DUDOG 7KH.UHDWLRQRIPDNHILOHV 0DNHILOHVSURYLGHWKHSRVVLELOLW\RIWUDQVODWLQJRZQSURJUDPVHIIL.LHQWO\ +HUH,GHV.ULEHKRZ\RXKDYHWRDOWHUWKHPDNHILOHVIRU\RXURZQSURJUDPV PDNHGR.SGI 7KH.RPELQDWLRQRI
Oakland University - EG - 120
Spring 2000 means - EG 120 - Test 1 : 27.5 / 30 Test 2 : 24.0 / 30 Test 3 : 21.3 / 30 Project : 13.5 / 15 (with a max of 18 with extra credit) Final Exam : 35.3 / 50
Cornell - ENGRD - 221
ENGRD 221 Prof. N. Zabaras HOMEWORKS 7 &amp; 8 Handed out: Thursday, 11 October 2007 Due: Monday, 22 October 2007 by 5 pm10/11/2007Notes: 1. Drop HW off in the designated homework box in Upson 123 2. Be sure that you indicate your recitation section (and yo
National Taiwan University - MKT - 846
Decision MakingMKT 846 Professor WestAgenda Lookingback.What clues can our &quot;information processing model&quot; provide? Evaluating Ad Effectiveness The Art of Persuasion Whatshould Levi Strauss &amp; Co. be doing? Relating attitudes to choiceThe role of
Wisc Eau Claire - WCC - 0708
2007 Blugold Open Hosted by University of Wisconsin Eau Claire Whitetail Golf Course September 21st, 2007 = WOMENS TEAM SCORE = = 6k Open = 1. 57 UW-La Crosse ( 24:20 2:01:39) = 1 6 Kristen Howe 24:07 2 7 Meghan Dugan 24:08 3 9 Katelyn Williams 24:13 4 11
Washington University in St. Louis - CSE - 131
CSE 131 Quest 1: Conditional Statements and TestingLab Section C, 2:30-4pm Wednesday, September 29, 2004This is an exam. You may use your notes and you may also use the CSE 131 web site. You may ask the TAs to clarify the directions, but there is to be
Michigan State University - CPS - 360
CPS 360 Review: Worksheet I Part I: Problems These questions are designed to make you restate what the major focus of this course is. 1. In this course, we have said we use computers for one main purpose. What is that purpose?2. In this course, we want t
Cornell - HASH - 0177
Biological Pest Management AGR 121Course Description Thiscoursewillemphasizethebuildingandmaintainingofhealthysoil,plantandinsectbiologicalcyclesasthekeytopestand diseasemanagement.Coursecontentincludesstudyofmajorcroppestsanddiseases,includingstructure,
Clarkson - MA - 383
MATH 383 SAMPLE TEST TWO ANSWER KEY Spring 2006Part One: True/False Circle T for true and F for false. 1. F If the relationship between X and Y is dened by the equation Y = 3X 5 then the correlation between X and Y will be zero. 2. T The correlation coec
Auburn - E - 7250
Independent Fault SetsRavi Chandra Paruchuri Auburn University Auburn , Alabama. Abstract This paper discusses the generation and use of independent fault sets in order to obtain the more global approach to automatic test generation. Independent faults w
Winona - COURSE - 410
COPOLYMER EQUATION n = proportion of monomer 1 and monomer 2 being incorporated into a polymer at some point in the reaction. This is given by the change in concentration of monomer 1 relative to monomer 2 as shown below. n = d[M1] d[M2] = (k11[M1][M1*] +
LSU - APPL - 003
Common Professional Staff Titles and Salary Ranges - July 2007 (based on 12 month salary levels) Title CodeN655 N655 N541 N541 N541 N332 N332 N257 N257 N088 N088 N088 N088 N650 N650 N650 N536 N536 N536 L862 L862 L862 L862 N269 N269 F775 F774 F731 F731 F7
Stanford - MERQE - 1035
Case 5:05-cv-03395-JFDocument 206Filed 01/23/2007Page 1 of 151 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28JOEL H. BERNSTEIN (admitted pro hac vice) CHRISTOPHER J. KELLER (admitted pro hac vice) LOUIS GOTTLIEB (admitted pr
USC - CS - 510
University of Southern CaliforniaCenter for Systems and Software EngineeringUniWord Case StudyCS 510 Fall 2007 Barry Boehm, USCUniversity of Southern CaliforniaCenter for Systems and Software EngineeringUniWord Case Study Background The Competition
RPI - BCBP - 4870
Protein Structure Determination, BCBP 4870, Fall 2007 Homework 2 due Nov 8, 2007 (A) Using a Bragg plane diagram, explain why a crystal with P2 symmetry (2-fold screw along the c1axis), has only even-numbered reflections in the c* direction. i.e. (001),
SUNY Buffalo - CSE - 563
Knowledge Representation and Reasoning Logics for Articial IntelligenceStuart C. ShapiroDepartment of Computer Science and Engineering and Center for Cognitive Science University at Bualo, The State University of New York Bualo, NY 14260-2000 shapiro@cs
SUNY Buffalo - CSE - 563
Knowledge Representation and Reasoning Logics for Articial IntelligenceStuart C. ShapiroDepartment of Computer Science and Engineering and Center for Cognitive Science University at Bualo, The State University of New York Bualo, NY 14260-2000 shapiro@cs
SUNY Buffalo - CSE - 563
Knowledge Representation and Reasoning Logics for Articial IntelligenceStuart C. ShapiroDepartment of Computer Science and Engineering and Center for Cognitive Science University at Bualo, The State University of New York Bualo, NY 14260-2000 shapiro@cs
Rose-Hulman - CS - 414
Maintainability RequirementsBasics: integrated problem adder integrated subject updater moderator controls restore pointsElaboration: Integrated problem adder:The problem adder is an integral to the maintainability of the system. With this tool, the sy
Rose-Hulman - CS - 414
Availability Requirements:Quick Rundown:Wants: -24/7 uptime -no corruption of data -code runs completely clean Needs: - work week (Sunday night Friday afternoon) long uptime - corruption handled - working backup systemElaboration:Uptime: Since this is
Rose-Hulman - CS - 414
CS 414 Software Engineering Team 3 Feb 10 Monday 2003 8:30 O259Leader: Stuart Ford Note Taker: Aydrian Howard Timekeeper: Fred PabonAGENDA Review Agenda Stuart Ford (1 min) o Make modifications if needed Current Items (5 min) o Presentation Available o
University of Toronto - ECE - 1770
THE DESIGN AND IMPLEMENTATION OF OPEN ORB V2 Gordon S. Blair, Geoff Coulson, Anders Andersen1, Lynne Blair, Michael Clarke, Fabio Costa, Hector Duran-Limon, Tom Fitzpatrick, Lee Johnston, Rui Moreira2, Nikos Parlavantzas and Katia Saikoski Distributed Mul
Dickinson State - EE - 437
ECE 437Homework - DC Motor DrivesYuvarajan1. The dc motor (Fig. 15.13(a)-both armature and field are supplied by full converters) has Ra =1.0 and Kv = 1.2 V/(rad/s). The dc motor operates with a constant field current If = 0.75A which is 60% of the max
Bowling Green - CS - 2310
Chapter 13: Data StructuresChapter 13Data StructuresJava ProgrammingFROM THE BEGI NNI NG1Copyright 2000 W. W. Norton &amp; Company.Chapter 13: Data Structures13.1 Multidimensional Arrays Multidimensional arrays have more than one dimension. Java allo
Cal Poly - CPE - 269
CPE 229 Course Notes: Lecture 8Copyright: 2005 Bryan MealyYet Another Real Story FSMs are primarily used to control other circuits. It is possible to make a FSM that will output a desired counting sequence (namely counters) but that is more an academic
Mich Tech - GENENG - 1101
Engineering Analysis and Problem SolvingWelcometo ENG11011So Why Choose Engineering?1. 2. 3. 4. 5. 6. 7. 8. 9. 10.Job Satisfaction Variety of Career Opportunities Challenging Work Intellectual Development Potential to Benefit Society Financial Secur
National Taiwan University - COB - 525
212 ReviewBasic Cost Behavior9/12/02Prof. Bentz1Basic Model of Total Cost In A&amp;MIS 212, we use the basic model of total cost, Independent TC = F + vQ VariableDependent Variable Parameters (coefficients)9/12/02Prof. Bentz2Model Characteristics
Washington - EE - 485
Autumn 2008EE485 Homework #2 Solutions 1. (30%) Electromagnetic wave and attenuation. Light with = 650 nm in free space is focused uniformly into a spot size of radius 1 mm on the surface of a semiconductor. Assume 5 mW of optical power enters the semico
Wisconsin - CS - 564
%!PS-Adobe-2.0 %Creator: dvips(k) 5.86 Copyright 1999 Radical Eye Software %Title: class.dvi %Pages: 18 %PageOrder: Ascend %BoundingBox: 0 0 612 792 %DocumentFonts: CMBX12 CMR12 CMSS12 CMSY10 CMBX9 CMR9 CMR10 CMBX10 %+ CMTI10 CMMI10 CMTT10 %DocumentPaperS
University of Toronto - CS - 324
University of Toronto CSC324Principles of Programming Languages, Summer 2001Course Information LecturerDiana Inkpen ofce: phone: e-mail: Wed 4:30-6, Thu 2-3:30 SF4301B 416-978-4299 dianaz@cs.toronto.edu SF2303DOfce HoursInformation SourcesThe web pag
National Taiwan University - AEDE - 205
AEDE 205 Spring 2007 Homework 3 Due Monday, April 23, 2007 (Note: there is no need for Excel for this weeks homework so we will not hold lab. However, the TA will have office hours during the times when he would normally hold lab. Office hours are held in
Canisius College - M - 122
M 122 Review for Test II Sections 2.1 - 2.5, 2.7 &amp; 4.1 - 4.3Name_Determine if the graph of the function is concave up or down and give the coordinates of the vertex. 1) y = (x - 4)2 + 3 1) 2) y = -(x + 5)2 - 5 Algebraically find the coordinates of the v
Binghamton - CS - 350
CS 350: Final Exam (Fall 2005)12/9/2005 Please read the following paragraph carefully. The exam is out of 200. You get 40 points as a holiday gift! Answer 160 points worth of questions. If you answer more than the required questions, I will throw away/sc
Fayetteville State University - PHY - 2054
Appendix A Hitachi V-222 OscillscopeFIRST TIME OPERATION Insert the plug of the power cord on the rear panel into the power supply wall socket and set the controls as follows.POWER INTEN FOCUS AC-GND-DC POSITION V. MODE TRIG SOURCE INT TRIG TIME/DIV POS
UC Riverside - STAT - 170
Homework 1 (Due: 10/11/2002)Problem 1: DS book, page 108-109. Problem Y: 1, 2, 3, 4, 5, 6. Solution: See the Appendix of the Book. Problem 2: DS book, page 96. Problem A: 1, 2, 3, 4, 5 Solution: See the Appendix of the Book. Problem 3: DS book, page 99.
Washington University in St. Louis - VO - 1055
CCSD3ZF0000100000001NJPL3IF0PDS200000001 = SFDU_LABELRECORD_TYPE = STREAMOBJECT = TEXT NOTE = &quot;Description of software provided with the Viking CD-ROM set&quot; PRODUCT_CREATION_TIME = 1990-12-21END_OBJECT = TEXTEND Decompression Software The SOFTWARE
Lake County - LIFE - 355
PCR-Based Detection of Genetically Modified Soybean and Maize in Raw and Highly Processed FoodstuffsC. Tengel, P. Schler1, E. Setzke1, J. Balles, and M. Sprenger-Hauels1 Labor L+S AG, Bad Bocklet, and 1QIAGEN GmbH, Hilden, GermanyBioTechniques 31:426-42
NYU - ATM - 262
two cycles of n(t) (t:0-&gt;2), seed 115, N=12550 40 30 20 10 0 Row 7 -10 -20 -30 -40 -50 0.04 0.12 0.2 0.28 0.36 0.44 0.52 0.6 0.68 0.76 0.84 0.92 1 1.08 1.16 1.24 1.32 1.4 1.48 1.56 1.64 1.72 1.8 1.88 1.96 0 0.08 0.16 0.24 0.32 0.4 0.48 0.56 0.64 0.72 0.8
UNC - ECON - 434
Econ 434: History of Economic DoctrinesQuestions from Previous Versions of Quiz 11. A view that all phenomena conform to inherently stable and universal principles is least consistent with the concepts that underpin: (a) scientific laws about the cosmos
LA Tech - BAK - 406
Maryland - M - 140
MATH 140: Calculus I Calculus is a central pillar of education in the quantitative sciences. It provides the language and conceptual framework to analyze change and accumulation. At the University of Maryland, Math 140141 is the basic sequence of calculus
Allan Hancock College - CS - 9242
54321DDUSBPower 6 5 2 1 C6 100nFCD3 3 4 R4Q1 3 HAT1043M 4ZHCS2000 1 2 5 6 1KCU1 J2 VBus DD+ ID(NC) Gnd Shield USB - Mini B 1 2 3 4 5 Shell R1 C1 1M 100nFBL14.7uH4 20 16 15 19 27 28 17 C5 100nFVCCIO VCC USBDM USBDP Reset OscI OscO 3V3Out
Allan Hancock College - CS - 9242
OKL4 Microkernel Reference ManualAPI Version 0316Open Kernel LabsDRAFTDocument Number: Software Version: Date:OK 10000:2006 (revision 10) 2.1 June 17, 2008Copyright 20062008 Open Kernel Labs, Inc. Copyright 2006 National ICT Australia Limited This p
Allan Hancock College - CS - 9242
Intel IXP42X Product Line of Network Processors and IXC1100 Control Plane ProcessorDeveloper's ManualMarch 2005Document Number: 252480-005Intel IXP42X Product Line of Network Processors and IXC1100 Control Plane Processor ContentsINFORMATION IN THIS
Allan Hancock College - CS - 9242
Iguana Reference ManualOpen Kernel LabsDRAFTDocument Number: Software Version: Date:OK 40008:2007 (revision 4) 2.1.1 May 9, 2008Copyright 20072008 Open Kernel Labs, Inc. This publication is distributed by Open Kernel Labs Pty Ltd, Australia. THIS DOC
Allan Hancock College - CS - 9242
Elfweaver Reference ManualOpen Kernel LabsDRAFTDocument Number: Software Version: Date:OK 40000:2007 (revision 7) 2.1.1 June 17, 2008Copyright 20072008 Open Kernel Labs, Inc. This publication is distributed by Open Kernel Labs Pty Ltd, Australia. THI