5 Pages

htmlconv-utf.pl

Course: MISC 117, Fall 2009
School: Walla Walla University
Rating:
 
 
 
 
 

Word Count: 1383

Document Preview

/usr/bin/perl ## #HTML #! to Doc Text converter for 3Com PalmPilots #html2pdbtxt # #Copyright (C) 1998 Paul J. Lucas #based on convert.pl by Christopher Heschong <chris@screwdriver.net> # #This program is free software; you can redistribute it and/or modify #it under the terms of the GNU General Public License as published by #the Free Software Foundation; either version 2 of the License, or #(at...

Register Now

Unformatted Document Excerpt

Coursehero >> Washington >> Walla Walla University >> MISC 117

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.
/usr/bin/perl ## #HTML #! to Doc Text converter for 3Com PalmPilots #html2pdbtxt # #Copyright (C) 1998 Paul J. Lucas #based on convert.pl by Christopher Heschong <chris@screwdriver.net> # #This program is free software; you can redistribute it and/or modify #it under the terms of the GNU General Public License as published by #the Free Software Foundation; either version 2 of the License, or #(at your option) any later version. # #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #GNU General Public License for more details. # #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. ## $HR = "-" x 10;# \x97 = emdash on Pilot ########## You shouldn't have to change anything below this line. ############# use File::Basename; use Getopt::Std; use encoding 'utf8'; $me = basename( $0 ); $VERSION = '1.2.1'; sub usage { die "usage: $me [-b chars] [-t title] [-u URL] file.html [ file.txt ]\n $me -v\n"; } getopts( 'b:t:u:v' ) or usage; ############################################################################### #Input checks ############################################################################### if ( $opt_v ) { print "$me version $VERSION\n"; exit 0; } $bookmark = $opt_b ? $opt_b : '(*)'; die "$me: bookmark can not contain > character\n" if $bookmark =~ />/; usage unless $#ARGV + 1 >= 1; ( $html_file, $txt_file ) = @ARGV; open( INPUT, '<:encoding(utf8)', "$html_file" ) or die "$me: can not open $html_file for input\n"; $_ = join( '', <INPUT> );# slurp up all of HTML close( INPUT ); if ( $txt_file ) { open( OUTPUT, '>:encoding(iso-8859-1)', "$txt_file" ) or die "$me: can not open $txt_file for output\n"; select OUTPUT; } ############################################################################### #Subroutines ############################################################################### sub encode { ( $_ = $_[0] ) =~ s/./sprintf("%02X",ord($&))/egs; return "%PRE%$_%/PRE%"; } sub decode { ( $_ = $_[0] ) =~ s/[A-F0-9]{2}/pack('C',hex($&))/eg; return "\n$_\n"; } ############################################################################### #Do it! ############################################################################### s!<PRE>(.+?)</PRE>!encode($1)!egs;# "freeze" <PRE> blocks s!\s+! !g;# turn HTML into one big long string unless ( $title = $opt_t ) { $title = $1 if /<TITLE>\s*([^\s].*[^\s])\s*<\/TITLE>/i; $title = $1 if /<TITLE>.*?<\/TITLE>/i; } ## # Convert various tags ## s!<TITLE>(.*?)<\/TITLE>!\xF8$1!gi; s!<BLOCKQUOTE.*?>!\n\n\t!gi; s!</?(?:BR|CENTER|DIV|OPTION|SELECT|TABLE).*?>!\n!gi; s!</?(?:ADDRESS|BLOCKQUOTE|DL|DT|H[1-6]|OL|P|UL).*?>!\n\n!gi; s!<DD>!\n\t!gi; s!<HR.*?>!\n$HR\n!gio; s!<LI>!\n\x95 !gi;# \x95 = bullet character on Pilot s!<(SCRIPT|STYLE|TITLE).*?>.*?</\1>!!gi; s!<TD.*?>! !gi; s!<TR.*?>!\n!gi; s!<.*?ALT="([^"]+?)".*?>![$1]!gi;# extract text from ALT attributes my $endmarker = "---(EOF)---\n"; s!<\/HTML>!$endmarker!gi; # put end-of-file marker for each file in html archives # Create bookmarks at <A NAME ...> tags for non-empty anchors! $bookmarks = s!<A\s+NAME.*?>(.+?)<\/A>!$bookmark$1!gio; s!<A\s+NAME.*?>(\w+?)!$bookmark$1!gio; s!<.*?>!!g;# strip all other HTML tags ## # Clean up whitespace ## s! +! !gm;# collapse spaces s!^ +!!gm;# strip leading spaces s! !!g;# tab-space -> tab s!^[ ]+$!!gm;# strip lines of whitespace s!^\n{2,}!\n!gm;# collapse newlines s!\s*%PRE%(.*?)%/PRE%\s*!decode($1)!egs; # "thaw" <PRE> blocks s! +$!!gm;# strip trailing spaces # Convert numeric entity references s!&#(\d+);!pack( 'c', $1 )!eg; s!&#X([\dA-F]+);!pack( 'c', hex($1) )!eg; # Convert character entity references %char_entity = ( 'quot','"', 'amp','&', 'lt','<', 'gt','>', 'emsp',"\x80", # em space (HTML 2.0) 'sbquo',"\x82", # single low-9 (bottom) quotation mark 'fnof',"\x83", # Florin or Guilder (currency) 'bdquo',"\x84", # double low-9 (bottom) quotation mark 'hellip',"\x85", # horizontal ellipsis 'dagger',"\x86", # dagger 'Dagger',"\x87", # double dagger 'circ',"\x88", # modifier letter circumflex accent 'permil',"\x89", # per mill sign 'Scaron',"\x8A", # latin capital letter S with caron 'lsaquo',"\x8B", # left single angle quotation mark 'OElig',"\x8C", # latin capital ligature OE 'diams',"\x8D", # diamond suit 'clubs',"\x8E", # club suit 'hearts',"\x8F", # heart suit 'spades',"\x90", # spade suit 'lsquo',"\x91", # left single quotation mark 'rsquo',"\x92", # right single quotation mark 'ldquo',"\x93", # left double quotation mark 'rdquo',"\x94", # right double quotation mark 'endash',"\x96", # dash the width of ensp (Lynx) 'ndash',"\x96", # dash the width of ensp (HTML 2.0) 'emdash',"\x97", # dash the width of emsp (Lynx) 'mdash',"\x97", # dash the width of emsp (HTML 2.0) 'tilde',"\x98", # small tilde 'trade',"\x99", # trademark sign (HTML 2.0) 'scaron',"\x9A", # latin small letter s with caron 'rsaquo',"\x8B", # right single angle quotation mark 'oelig',"\x9C", # latin small ligature oe 'Yuml',"\x9F", latin # capital letter Y with diaeresis 'ensp',"\xA0", # en space (HTML 2.0) 'thinsp',"\xA0", # thin space (Lynx) 'nbsp',"\xA0", # non breaking space 'iexcl',"\xA1", # inverted exclamation mark 'cent',"\xA2", # cent (currency) 'pound',"\xA3", # pound sterling (currency) 'curren',"\xA4", # general currency sign (currency) 'yen',"\xA5", # yen (currency) 'brkbar',"\xA6", # broken vertical bar (Lynx) 'brvbar',"\xA6", # broken vertical bar 'sect',"\xA7", # section sign 'die',"\xA8", # spacing dieresis (Lynx) 'uml',"\xA8", # spacing dieresis 'copy',"\xA9", # copyright sign 'ordf',"\xAA", # feminine ordinal indicator 'laquo',"\xAB", # angle quotation mark, left 'not',"\xAC", # negation sign 'shy',"\xAD", # soft hyphen 'reg',"\xAE", # circled R registered sign 'hibar',"\xAF", # spacing macron (Lynx) 'macr',"\xAF", # spacing macron 'deg',"\xB0", # degree sign 'plusmn',"\xB1", # plus-or-minus sign 'sup2',"\xB2", # superscript 2 'sup3',"\xB3", # superscript 3 'acute',"\xB4", # spacing acute 'micro',"\xB5", # micro sign 'para',"\xB6", # paragraph sign 'middot',"\xB7", # middle dot 'cedil',"\xB8", # spacing cedilla 'sup1',"\xB9", # superscript 1 'ordm',"\xBA", # masculine ordinal indicator 'raquo',"\xBB", # angle quotation mark, right 'frac12',"\xBC", # fraction 1/2 'frac14',"\xBD", # fraction 1/4 'frac34',"\xBE", # fraction 3/4 'iquest',"\xBF", # inverted question mark 'Agrave',"\xC0", # capital A, grave accent 'Aacute',"\xC1", # capital A, acute accent 'Acirc',"\xC2", # capital A, circumflex accent 'Atilde',"\xC3", # capital A, tilde 'Auml',"\xC4", # capital A, dieresis or umlaut mark 'Aring',"\xC5", # capital A, ring 'AElig',"\xC6", # capital AE diphthong (ligature) 'Ccedil',"\xC7", # capital C, cedilla 'Egrave',"\xC8", # capital E, grave accent 'Eacute',"\xC9", # capital E, acute accent 'Ecirc',"\xCA", # capital E, circumflex accent 'Euml',"\xCB", # capital E, dieresis or umlaut mark 'Igrave',"\xCC", # capital I, grave accent 'Iacute',"\xCD", # capital I, acute accent 'Icirc',"\xCE", # capital I, circumflex accent 'Iuml',"\xCF", # capital I, dieresis or umlaut mark 'Dstrok',"\xD0", # capital Eth, Icelandic (Lynx) 'ETH',"\xD0", # capital Eth, Icelandic 'Ntilde',"\xD1", # capital N, tilde 'Ograve',"\xD2", # capital O, grave accent 'Oacute',"\xD3", # capital O, acute accent 'Ocirc',"\xD4", # capital O, circumflex accent 'Otilde',"\xD5", # capital O, tilde 'Ouml',"\xD6", # capital O, dieresis or umlaut mark 'times',"\xD7", # multiplication sign 'Oslash',"\xD8", # capital O, slash 'Ugrave',"\xD9", # capital U, grave accent 'Uacute',"\xDA", # capital U, acute accent 'Ucirc',"\xDB", # capital U, circumflex accent 'Uuml',"\xDC", # capital U, dieresis or umlaut mark 'Yacute',"\xDD", # capital Y, acute accent 'THORN',"\xDE", # capital THORN, Icelandic 'szlig',"\xDF", # small sharp s, German (sz ligature) ...

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:

Wheaton College - CS - 116
Data StructuresThe 20 Questions Game Due Date: Friday, 5/4/07DESCRIPTIONPROJECT #6In the 20 questions game, one person thinks of something and the other asks yes/no questions until she guesses the thing, guesses wrong, or runs out of guesses. You are
Wheaton College - CS - 116
Data StructuresPeg Solitaire Due Date: Thursday 4/19/07DESCRIPTION In this project, you will be implementing a peg solitaire game. The essence of peg solitaire is a board with holes in it, each containing a peg except one, as pictured at right. There ar
Wheaton College - CS - 116
Data StructuresText Adventure Game Due Date: Friday 3/9/07DESCRIPTIONPROJECT #5This is it! This week you finally get to implement your text adventure game in full. You already have the basic command input cycle implemented from last week; in this fina
Wheaton College - CS - 116
Data StructuresClass Design, Phase II Due Date: Thursday 2/15/07DESCRIPTIONPROJECT #3To continue your work building class definitions, we are now going to use an aspect of class creation that was not in our toolkit last week: namely, overloaded operat
Wheaton College - CS - 116
Data StructuresClass Design, Phase I Due Date: Thursday 2/8/07DESCRIPTIONPROJECT #2In this project, you are going to start building pieces of your game. Specifically, you are going to build a class to store the locations in your game world (often call
Wheaton College - CS - 116
Data StructuresGood Practices Due Date: Thursday 2/1/07DESCRIPTIONPROJECT #1For your first project, you will actually not do any programming! To help get the brain going after your long break, and to help get you in the right frame of mind to follow t
Wheaton College - CS - 116
Data StructuresThe Proposal Due Date: Monday 2/12/07DESCRIPTIONGame Design ProjectTo create a really good text adventure game, you need to start thinking about its design now. For the next couple of weeks, when you want a break from the programming pa
Lake County - BIOE - 202
BIOE 202 Section AB1Lab 5: Oil Red O Stain of Adipocytes, Shape Index Analysis, and Using a Muscle Cell LinethFebruary 18 , 2008Lab #5 Overview Notes about Lab Report #1 Online Quiz Results Pre-lab Exercise Results Review Exercise A and B Protocols A
UCSB - BREN - 282
LCA MethodologyConsequential Life Cycle Inventory AnalysisLCA MethodologySystem Boundaries and Input Data in Consequential Life Cycle Inventory AnalysisTomas Ekvall1* and Bo P. Weidema21 Energy 2 2.-0Systems Technology Division, Chalmers University
University of Toronto - HW - 0203
Dror Bar-Natan: Classes: 2002-03: Math 157 - Analysis I:Homework Assignment 22Assigned Tuesday March 11; due Friday March 21, 2PM at SS 1071web version: http:/www.math.toronto.edu/~drorbn/classes/0203/157AnalysisI/HW22/HW22.htmlRequired reading. All o
University of Toronto - SOL - 0203
Dror Bar-Natan: Classes: 2002-03: Math 157 - Analysis I:Partial Solution of Homework Assignment 1web version: http:/www.math.toronto.edu/drorbn/classes/0203/157AnalysisI/Sol01/Sol01.htmlWarning: The solutions presented here are partial at best. They ar
Montclair - CMPT - 585
OpenSSL - Introduction OpenSSL documentation (man openssl) - ( openssl.pdf ) Message Digest ( man dgst ) &gt; more file1.txt Hussein Wahab Old Dominion University &gt; openssl dgst -sha1 file1.txt SHA1(file.txt)= 439d855153b88dff064af44cc7794026bad31a45 &gt; more
Western Michigan - CS - 595
Intelligent Data Analysis 1 (1997) 131156www.elsevier.com/locate/idaFeature Selection for ClassificationM. Dash 1 , H. Liu 2Department of Information Systems &amp; Computer Science, National University of Singapore, Singapore 119260 Received 24 January 19
Lake County - CI - 301
Tami Flett C&amp;I 301 October 5, 2003 Annotated Bibliography #2 Whitin, Phillis and David J. Whitin. (2002). Promoting communication in the mathematics classroom. Teaching Children Mathematics, 9(4), 205-207. The purpose of this article was to stress the imp
East Los Angeles College - CSC - 302
Network Working Group J. PostelRequest for Comments: 959 J. Reynolds ISIObsoletes RFC: 765 (IEN 149) October 1985 FILE TRANSFER PROTOCOL (FTP)Status of this Memo This memo is the official specification of the File Transfer Protocol (FTP). Distri
East Los Angeles College - CSC - 302
Network Working Group M. CrispinRequest for Comments: 1176 WashingtonObsoletes: RFC 1064 August 1990 INTERACTIVE MAIL ACCESS PROTOCOL - VERSION 2Status of this Memo This RFC suggests a method for personal computers and workstations to dynamically a
East Los Angeles College - CSC - 302
RFC: 793 TRANSMISSION CONTROL PROTOCOL DARPA INTERNET PROGRAM PROTOCOL SPECIFICATION September 1981 prepared for Defense Advanced Research Projects Agency Information Processing Techniques Office 1400 Wilson Boulevard
East Los Angeles College - CSC - 302
RFC: 791 INTERNET PROTOCOL DARPA INTERNET PROGRAM PROTOCOL SPECIFICATION September 1981 prepared for Defense Advanced Research Projects Agency Information Processing Techniques Office 1400 Wilson Boulevard Arlington, Vi
Fayetteville State University - MAP - 4170
Extra Problems for Test 21. A person deposits 100 at the beginning of each year for 20 years. Simple interest at an annual rate of i is credited to each deposit from the date of deposit to the end of the twenty year period. The total amount thus accumula
East Los Angeles College - MD - 466
Graph Transformation and Pointer StructuresMike DoddsSubmitted for the degree of Doctor of PhilosophyThe University of York Department of Computer ScienceSeptember 2008AbstractThis thesis is concerned with the use of graph-transformation rules to sp
UBC - PHYSICS - 555
%!PS-Adobe-2.0 %Creator: dvips 5.518 %Title: prof77.dvi %CreationDate: Tue Feb 28 10:04:35 1995 %Pages: 122 %PageOrder: Ascend %BoundingBox: 0 0 596 842 %EndComments %DVIPSCommandLine: dvips prof77 %DVIPSSource: TeX output 1995.02.28:1003 %BeginProcSet: t
Lake County - CI - 332
Geometry: Shapes, Angles and SymmetryBy: Kim Kershner Caroline Ebrahim Lisa StringerUniversity of Illinois C&amp;I 332 TA: Tedi Cox 12/2/02Overall Introduction and RationaleThe purpose of this unit is to familiarize children with geometry by doing hands-o
Lake County - CI - 336
Why (and how) I teach without long lectures : J. J Uhl Why I gave up long lectures 1. Motivating Questions: o How would you IDEAL teacher teach? o What would the students look like during class time? 2. MAIN IDEA: Technology can replace lectures if used c
BYU - IPT - 287
Iowa State - EE - 230
EE 230 Homework 4 Fall 2006Problem 1 Three networks are shown along with the type of `A' amplifier if this is to be used in a standard feedback network. Determine the value of in all three cases. You may assume the port impedances of the A amplifier are
Wisconsin - ECE - 756
214 426 36 7 250pri 2 0 pri 3 0 pri 2 0 pri 2 0 pri 2 0 pri 3 0 pri 2 0 pri 2 0 pri 2 0 pri 3 0 pri 2 0 pri 2 0 pri 2 0 pri 3 0 pri 2 0 pri 2 0 pri 2 0 pri 3 0 pri 2 0 pri 2 0 pri 2 0 pri 3 0 pri 2 0 pri 2 0 pri 2 0 pri 3 0 pri
UCSB - ESM - 219
&quot;#$%%#&amp;# ' ('$! %&quot;#$%%#&amp;# ' ('$! % &quot;#$% % #) &amp;# ' ('$! %&quot;#$%%#) &amp;# ' ('$! %&quot;#$%%#&amp;# ' ('$! %&amp;* + &amp; * + &amp; * + &amp; *12 13 14&amp;&amp; &amp;/&amp; &amp; ), $ &amp; &amp; ,&amp; # &amp; &amp; $ , &amp; &amp; &amp; . &amp; 0&amp; &amp; . , % %3&amp; &amp; &amp;. &amp;&amp;4$&amp;5 0!% 3+ 0 $&amp;&quot; $*5 $ &amp; . &amp; 47 3
University of Toronto - ECE - 1392
Integrated Circuits for Digital CommunicationsProf. David Johns University of Toronto (johns@eecg.toronto.edu) (www.eecg.toronto.edu/~johns)University of Torontoslide 1 of 4 D.A. Johns, 1997ReferencesGeneral ReferencesE.A. Lee and D.G. Messerschmit
stonybrook.edu - MAT - 319
MAT 319: REVIEW SHEET FOR MIDTERM 2 The midterm will cover all material studied since last midterm - that is, Chapters 3 and 4 of the textbook. There will be no questions which target the material of the first two chapters - but you might still need them:
Grinnell - CS - 364
Pointers and MemoryBy Nick ParlanteCopyright 1998-99, Nick ParlanteAbstract This document explains how pointers and memory work and how to use themfrom the basic concepts through all the major programming techniques. For each topic there is a combinati
Maryland - ENEE - 307
2N3906 / MMBT3906 / PZT39062N3906MMBT3906CPZT3906CE C BE CTO-92ESOT-23Mark: 2ABSOT-223BPNP General Purpose AmplifierThis device is designed for general purpose amplifier and switching applications at collector currents of 10 A to 100 mA.A
Lake County - ECE - 431
ECE 431First Exam - Spring 2006 - Closed book, (standard class sheet allowed), 55 min. Problem points (out of 100) are indicated. Work all problems in exam booklets.Problem #1(20 points)A balanced 3-phase, 208 Volt (line-line) source serves a balanced
LSU - APPL - 003
CONTENTSLSU's OFFICE OF DISABILITY SERVICES (ODS) Vision Mission Role Eligibility for Services DISABILITY LAWS IN POSTSECONDARY EDUCATION The Rehabilitation Act of 1973 - Section 504 The Americans with Disabilities Act (ADA) Definition of Disability Phys
Indiana University-Purdue University Fort Wayne - CHEM - 321
Statistics IMean, Standard Deviation, Relative Standard DeviationThe Science of Measurement Nothing we ever do is correct. That sounds harsh, but it is essentially the truth. Any measurement has some error associated with it. That error can be system
UConn - MATH - 2110
Extrema of Functions of Two VariablesSuppose we wish to examine the possibility of a relative extremum at a point (x0 , y0 ) in the domain of a function z = f (x, y). Let us assume that both f and as many partial derivatives as necessary are continuous n
UConn - MATH - 2110
LinesConsider a line, a vector x0 going from the origin to a point on the line and a vector v parallel to the line. Clearly, if one places a multiple tv of v at the tip of x0 , its tip will be on the line. This leads to the following vector equation for
University of North Carolina, Wilmington - CHM - 312
University of North Carolina, Wilmington - CHM - 312
University of North Carolina, Wilmington - CHM - 312
University of North Carolina, Wilmington - CHM - 312
2D-NMRCOSY, COrrellation SpectroscopYCOSYhttp:/www.chem.queensu.ca/FACILITIES/ NMR/nmr/chem806/Web/homo2_files/frame.htmCOSY, COrrellation SpectroscopY2D-NMR: COSY C5H10O2 IR: 1730 and 1200 cm-1, no peaks above 3000 cm-1COSY: C5H10O2C6H12O2 IR: 173
University of North Carolina, Wilmington - CHM - 312
2D-NMRCOSY, COrrellation SpectroscopYCOSYhttp:/www.chem.queensu.ca/FACILITIES/ NMR/nmr/chem806/Web/homo2_files/frame.htmCOSY, COrrellation SpectroscopY2D-NMR: COSY C5H10O2 IR: 1730 and 1200 cm-1, no peaks above 3000 cm-1COSY: C5H10O2C6H12O2 IR: 173
University of North Carolina, Wilmington - CHM - 312
1H-NMR SPECTROSCOPY2008Unknown C4H8O21H-NMR1H-NMR - Theory3.1 Nuclear Spin States 3.2 Nuclear Magnetic Moments 3.3 Absorption of Energy1H-NMR - Theory1H-NMR - Theory3.4 Absorption / Resonance 3.4 Absorption / Resonance1H-NMR3.7 The Spectrometer
University of North Carolina, Wilmington - CHM - 312
1H-NMR SPECTROSCOPY2008Unknown C4H8O21H-NMR1H-NMR - Theory3.1 Nuclear Spin States 3.2 Nuclear Magnetic Moments 3.3 Absorption of Energy1H-NMR - Theory1H-NMR - Theory3.4 Absorption / Resonance 3.4 Absorption / Resonance1H-NMR3.7 The Spectrometer
University of North Carolina, Wilmington - CHM - 312
University of North Carolina, Wilmington - CHM - 312
INFRARED (IR) SPECTROSCOPYIR Spectroscopy The SpectrumIR Spectroscopy The SpectrumIR SpectroscopyIR Spectroscopy - TheoryhIR Bond Properties and Absorption TrendsEnergy is proportional to the frequency n of the vibrationFrequency is related to the
University of North Carolina, Wilmington - CHM - 312
MASS SPECTROMETRYMASS SPECTROMETRY100 43O50O29 15 0 10 20 ( m a in lib ) E t h y l A c e t a t e 30 40456170 7388 80 90 100506070100177 O O O OHO 50 137 190O H 350 368 217 232 272 298 280 320 310 340 370039 51 65 15 287789 103 20310
University of North Carolina, Wilmington - CHM - 312
UV-Vis Spectroscopyhttp:/www.cem.msu.edu/~reusch/VirtualText/Spectrpy/UV-Vis/spectrum.htmUV-Vis SpectroscopyHPLC: Peak Area vs Detector settingExcedrin ES 250 mg aspirin; 250 mg acetaminophen; 65 mg caffeineDetector set at 240 nmArea % Aspirin 19.5%
University of North Carolina, Wilmington - CHM - 312
University of North Carolina, Wilmington - CHM - 312
CHROMATOGRAPHY SOLID PHASE EXTRACTIONSOLID PHASE EXTRACTIONMacherey-Nagel Chromatography CatalogSPEMacherey-Nagel Chromatography CatalogSOLID PHASE EXTRACTIONMacherey-Nagel Chromatography CatalogMacherey-Nagel Chromatography CatalogSPEMacherey-Na
University of North Carolina, Wilmington - CHM - 312
HIGH PERFORMANCE LIQUID CHROMATOGRAPHY (HPLC)HIGH PERFORMANCE LIQUID CHROMATOGRAPHY High Performance Liquid Chromatography (HPLC) is one of the most widely used techniques for identification, quantification and purification of mixtures of organic compou
University of North Carolina, Wilmington - CHM - 312
GAS CHROMATOGRAPHY (GC)GAS CHROMATOGRAPHYHeInjection portOvenDetector Recordercomputer Carrier Gas ColumnSample is injected (using a syringe) into the injection port. Sample vaporizes and is forced into the column by the carrier gas ( = mobile phase
University of North Carolina, Wilmington - CHM - 312
CHM 312 Fall 2008CHROMATOGRAPHYTHIN LAYER CHROMATOGRAPHY (TLC)THIN LAYER CHROMATOGRAPHYThin layer chromatography (TLC) is an important technique for identification and separation of mixtures of organic compounds. It is useful in:Identification of com
University of North Carolina, Wilmington - CHM - 312
CHM 312 Advanced Techniques in Organic ChemistryInstructor: Office: Office Hours:Course Policies and SyllabusFall 2008Dr. Pamela Seaton DOBO 251 (phone: 962-3279, e-mail: seatonp@uncw.edu) 9:00-10:30 am Mondays and Wednesdays and by appointment. (Also
UMass (Amherst) - PHYS - 120
Speed of Sound Characteristics of SoundDifferent in different materials v = 331 m/sLoudness in air at00Cand at 1 atmintensity; energy per area per time high or low frequency Audible range of human eartemperature dependencePitch v = (331 +0.60
UC Davis - EEC - 280
High-Performance High-Performance System DesignProf. Vojin G. OklobdzijaOverview of the courseRequirements: Knowledge of CMOS digital circuits Basic knowledge of analog circuits Knowledge of Logic DesignTextbook: High-Performance System Design: Circui
Princeton - ELE - 101
PROJECT_BILLIARDS_ELE101ELE101 PROJECT: BILLIARDSThe aim of this project is to write a billiards game for the Palm. This won't be a full-fledged game of eight ball, but rather a simpler game involving one ball to sink plus the cue ball. This project ext
Lake County - IB - 201
Genetics and Evolution IB 201 06-Lecture 11 Evolution of DevelopmentTermsRecapitulation the tendency of developmental stages to represent a series of evolutionaryforms. Examples of such trends recognized by von Baer (below) and Haeckels ontogeny recapi
Lake County - IB - 201
Genetics and Evolution IB 201 06- Lecture 11 Evolution of Development Terms Recapitulation serial homology homeobox (Hox) genes MADS box genes homeotic mutants regulatory hierarchy target gene tagmosisPeople Karl Ernst Von Baer Ernst Haeckel Johann Wolfg
Lake County - IB - 201
Genetics and Evolution IB 201 06- Lecture 13 Natural Selection and AdaptationHISTORYEssentialism vs Populationism Darwin encouraged a change from typological or essentialist thinking about species to that of species as variable, changing populations of