首页 > > 详细

CS-546 Lab 8

 Lab 8 3/28/21, 10:58 PM

  Page 1 of 7
Lab 8
Due Saturday by 11:59pm Points 100 Submitting a file upload
Available after Mar 22 at 12am
Submit Assignment
CS-546 Lab 8
Template Time
For this lab, you will be using HTML, CSS, and Handlebars to make your first simple templated web
application! You will be building a form that allows you to search through the TV Maze API for a
keyword.
You will not need to use a database for this lab. 
You must use the async/await keywords (not Promises). You will also be using axios axios
(https://github.com/axios/axios) , which is a HTTP client for Node.js; you can install it with npm i
axios . 
TV Maze API
You will be using two endpoints of the TV Maze API which is an API about TV shows for your Axios
calls. The search show endpoint where you pass the search term as a query string parameter:
http://api.tvmaze.com/search/shows?Search_Term_Here and then you'll get an individual show using
the endpoint http://api.tvmaze.com/shows/:id where :id is the ID of the show you are looking up.
You will use these two endpoints to make your axios.get calls depending on which route is called. 
You will be making three routes/pages in your application:
http://localhost:3000/ the main page of this application will provide a search form to start a
search of shows for a keyword. 
http://localhost:3000/search this page will make the axios call to the search endpoint and return
up to 20 matching results that contain the provided request form param, searchTerm
http://localhost:3000/shows/{id} this page will show all the details of the show with the id
Lab 8 3/28/21, 10:58 PM
  Page 2 of 7
http://localhost:3000/shows/{id} this page will show all the details of the show with the id
matching the provided URL param, id
All other URLS should return a 404
## `GET http://localhost:3000/`
This page will respond with a valid HTML document. The title of the document should be "Show
Finder". You should have the title set as the element of the HTML document and as an h1</div> <div>in your document.</div> <div>Your page should reference a CSS file, /public/site.css ; this file should have at least 5 rulesets that</div> <div>apply to this page; these 5 rules can also apply to elements across all of your pages, or be unique to</div> <div>this page.</div> <div>You should have a main element, and inside of the main element have a p element with a brief (2-3</div> <div>sentence description) of what your website does.</div> <div>Also inside the main element, you will have a form ; this form will POST to /search . This form will</div> <div>have an input and a label ; the label should properly reference the same id as the input . You</div> <div>should also have a button with a type of submit that submits the form. The input in your form</div> <div>should have a name of searchTerm .</div> <div>POST http://localhost:3000/search</div> <div>This route will read the searchTerm parameter and then make an axios call to the TV Maze endpoint</div> <div>searching for that keyword. For example, if the user typed under in the input field, you would make</div> <div>the axios call to: http://api.tvmaze.com/search/shows?q=under</div> <div>(http://api.tvmaze.com/search/shows?q=girls)</div> <div>This route will respond with a valid HTML document with the results returned from the API. The title of</div> <div>the document should be "Shows Found". You should have the title set as the <title> element of the</div> <div>HTML document and as an h1 in your document. In an h2 element, you will print the supplied</div> <div>searchTerm .</div> <div>Your page should reference a CSS file, /public/site.css ; this file should have at least 5 rulesets that</div> <div>apply to this page; these 5 rules can also apply to elements on / , or be unique to this page.</div> <div>You should have a main element, and inside of the main element have a ul tag that has a list of up</div> <div>to 20 shows matching the searchTerm found in the request body in the following format (after</div> <div>Lab 8 3/28/21, 10:58 PM</div> <div>  Page 3 of 7</div> <div>to 20 shows matching the searchTerm found in the request body in the following format (after</div> <div>searching under ). DO NOT SHOW MORE THAN 20 SHOWS.</div> <div><ul></div> <div><li></div> <div><a href="/shows/5828">Over Under</a></div> <div></li></div> <div><li></div> <div><a href="/shows/1">Under The Dome</a></div> <div></li></div> <div><li></div> <div><a href="/shows/48087">Scottish Vets Down Under</a></div> <div></li></div> <div></ul></div> <div>You must also provide an a tag that links back to your / route with the text Make another search .</div> <div>If no matches are found, you will print the following HTML paragraph:</div> <div><p class="not-found">We're sorry, but no results were found for {searchTerm}.</p></div> <div>If the user does not input text into their form or enters just spaces into the input field, make</div> <div>sure to give a response status code of 400 on the page, and render an HTML page with a</div> <div>paragraph class called error error ; this paragraph should describe the error.</div> <div>GET http://localhost:3000/shows/{id}</div> <div>This route will query the TV Maze API using the the id parameter in the URL (for example:</div> <div> http://api.tvmaze.com/shows/1 (http://api.tvmaze.com/shows/:id) ) and will respond with a valid</div> <div>HTML document with some of the show details. The title of the document should be the name of the</div> <div>show. You should have the title set as the <title> element of the HTML document. </div> <div>Your page should reference a CSS file, /public/site.css ; this file should have at least 5 rulesets that</div> <div>apply to this page; these 5 rules can also apply to elements on / , or be unique to this page.</div> <div>You should have a main element, and inside of the main element, you will have a div tag that has</div> <div>an h1 with the show name , an img which the src is set to the value read from image.medium in the</div> <div>data which is a URL to an image for the show, and a dl (definition list) of the following properties of</div> <div>the matching show: language , genres (the entire array in an ul ), rating.average , network.name ,</div> <div>and summary in the HTML structure noted below.</div> <div>Note: Some show summaries contain HTML tags (not all, but some), as shown in the example</div> <div>Lab 8 3/28/21, 10:58 PM</div> <div>  Page 4 of 7</div> <div>Note: Some show summaries contain HTML tags (not all, but some), as shown in the example</div> <div>below. You should use a regex expression to strip any HTML tags out of the Summary before</div> <div>displaying it on the page. </div> <div>Matching Show Data Returned from API (We will not be using all the fields, just the ones noted</div> <div>above):</div> <div>{</div> <div>"id": 1,</div> <div>"url": "http://www.tvmaze.com/shows/1/under-the-dome http://www.tvmaze.com/shows/1/under-the-dome</div> <div>(http://www.tvmaze.com/shows/1/under-the-dome) (http://www.tvmaze.com/shows/1/under-the-dome) ",</div> <div>"name": "Under the Dome",</div> <div>"type": "Scripted",</div> <div>"language": "English",</div> <div>"genres": [</div> <div>"Drama",</div> <div>"Science-Fiction",</div> <div>"Thriller"</div> <div> ],</div> <div>"status": "Ended",</div> <div>"runtime": 60,</div> <div>"premiered": "2013-06-24",</div> <div>"officialSite": "http://www.cbs.com/shows/under-the-dome/ http://www.cbs.com/shows/under-the-dome/</div> <div>(http://www.cbs.com/shows/under-the-dome/) (http://www.cbs.com/shows/under-the-dome/) ",</div> <div>"schedule": {</div> <div>"time": "22:00",</div> <div>"days": [</div> <div>"Thursday"</div> <div> ]</div> <div> },</div> <div>"rating": {</div> <div>"average": 6.5</div> <div> },</div> <div>"weight": 97,</div> <div>"network": {</div> <div>"id": 2,</div> <div>"name": "CBS",</div> <div>"country": {</div> <div>"name": "United States",</div> <div>"code": "US",</div> <div>"timezone": "America/New_York"</div> <div> }</div> <div> },</div> <div>"webChannel": null,</div> <div>"externals": {</div> <div>"tvrage": 25988,</div> <div>"thetvdb": 264492,</div> <div>Lab 8 3/28/21, 10:58 PM</div> <div>  Page 5 of 7</div> <div>"thetvdb": 264492,</div> <div>"imdb": "tt1553656"</div> <div> },</div> <div>"image": {</div> <div>"medium": "http://static.tvmaze.com/uploads/images/medium_portrait/81/202627.jpg http://static.tvmaze.com/uploads/images/medium_portrait/81/202627.jpg</div> <div>(http://static.tvmaze.com/uploads/images/medium_portrait/81/202627.jpg) (http://static.tvmaze.com/uploads/images/medium_portrait/81/202627.jpg) ",</div> <div>"original": "http://static.tvmaze.com/uploads/images/original_untouched/81/202627.j http://static.tvmaze.com/uploads/images/original_untouched/81/202627.j</div> <div>pgpg (http://static.tvmaze.com/uploads/images/original_untouched/81/202627.jpg) (http://static.tvmaze.com/uploads/images/original_untouched/81/202627.jpg) "</div> <div> },</div> <div>"summary": "<p><b>Under the Dome</b> is the story of a small town that is suddenly and inexplic</div> <div>ably sealed off from the rest of the world by an enormous transparent dome. The town's inhabitant</div> <div>s must deal with surviving the post-apocalyptic conditions while searching for answers about the</div> <div>dome, where it came from and if and when it will go away.</p>",</div> <div>"updated": 1573667713,</div> <div>"_links": {</div> <div>"self": {</div> <div>"href": "http://api.tvmaze.com/shows/1 http://api.tvmaze.com/shows/1 (http://api.tvmaze.com/shows/1) (http://api.tvmaze.com/shows/1) "</div> <div> },</div> <div>"previousepisode": {</div> <div>"href": "http://api.tvmaze.com/episodes/185054 http://api.tvmaze.com/episodes/185054</div> <div>(http://api.tvmaze.com/episodes/185054) (http://api.tvmaze.com/episodes/185054) "</div> <div> }</div> <div> }</div> <div>}</div> <div>HTML Format Printed for the show. This will go into your main element:</div> <div><div> </div> <div> <h1>Under The Dome</h1> </div> <div> <img alt= "Under TheDome"src="http://static.tvmaze.com/uploads/images/medium_portrait/81/202627</div> <div>.jpg"/> </div> <div> <dl> </div> <div> <dt>Language</dt> </div> <div> <dd>English</dd> </div> <div> <dt>Genres</dt> </div> <div> <dd> </div> <div> <ul> </div> <div> <li>Drama</li> </div> <div> <li>Science-Fiction</li> </div> <div> <li>Thriller</li> </div> <div> </ul> </div> <div> </dd> </div> <div> <dt>Average Rating</dt> </div> <div> <dd>6.5</dd> </div> <div> <dt>Network</dt> </div> <div> <dd>CBS</dd> </div> <div> <dt>Summary</dt> </div> <div> <dd>Under the Dome is the story of a small town that is suddenly and inexplicably sealed off</div> <div>Lab 8 3/28/21, 10:58 PM</div> <div>  Page 6 of 7</div> <div> <dd>Under the Dome is the story of a small town that is suddenly and inexplicably sealed off</div> <div>from the rest of the world by an enormous transparent dome. The town's inhabitants must deal with</div> <div>surviving the post-apocalyptic conditions while searching for answers about the dome, where it ca</div> <div>me from and if and when it will go away.</dd> </div> <div> </dl> </div> <div></div></div> <div>If there is no show found for the given ID, make sure to give a response status code of 404 on</div> <div>the page, and render an HTML page with a paragraph class called error error ; this paragraph</div> <div>should describe the error. </div> <div>http://localhost:3000/public/site.css</div> <div>This file should have 5 rulesets that apply to the / route, and 5 rulesets that apply to all of your</div> <div>pages. Rulesets may be shared across both pages; for example, if you styled a p tag, it would count</div> <div>as 1 of the 5 for both pages.</div> <div>You may include more than 5 rulesets if you so desire.</div> <div>References and Packages</div> <div>Basic CSS info can easily be referenced in the MDN CSS tutorial (https://developer.mozilla.org/en￾US/docs/Web/Guide/CSS/Getting_started) .</div> <div>Hints</div> <div>You can use variables in your handlebars layout, that you pass to res.render. For example, in your</div> <div>layout you could have:</div> <div><meta name="keywords" content="{{keywords}}" /></div> <div>And in your route:</div> <div>res.render("someView", {keywords: "dogs coffee keto"});</div> <div>Which will render as:</div> <div><meta name="keywords" content="dogs coffee keto" /></div> <div>Or, perhaps, the title tag.</div> <div>Lab 8 3/28/21, 10:58 PM</div> <div>  Page 7 of 7</div> <div>Requirements</div> <div>1. You must not submit your node_modules folder</div> <div>2. You must remember to save your dependencies to your package.json folder</div> <div>3. You must do basic error checking in each function</div> <div>4. Check for arguments existing and of proper type.</div> <div>5. Throw if anything is out of bounds (ie, trying to perform an incalculable math operation or</div> <div>accessing data that does not exist)</div> <div>6. You MUST use async/await for all asynchronous operations.</div> <div>7. You must remember to update your package.json file to set app.js as your starting script!</div> <div>8. Your HTML must be valid (https://validator.w3.org/#validate_by_input) or you will lose points on the</div> <div>assignment.</div> <div>9. Your HTML must make semantical sense; usage of tags for the purpose of simply changing the</div> <div>style of elements (such as i , b , font , center , etc) will result in points being deducted; think in</div> <div>terms of content first, then style with your CSS.</div> <div>10. You can be as creative as you'd like to fulfill front-end requirements; if an implementation is</div> <div>not explicitly stated, however you go about it is fine (provided the HTML is valid and semantical).</div> <div>Design is not a factor in this course.</div> <div>11. All inputs must be properly labeled!</div> <div>12. All previous requirements about the package.json author, start task, dependenices, etc. still apply</div></span> </div> </div> <style type="text/css"> .listkeyword { color: #990099; font-size: 14px; margin:0px 0px 0px 17px; word-wrap: break-word; text-align:left; } </style> <div class="width30bi divfr"> <div class="width99bi margintop20 divbdr divfl"> <div class="divtitle"> <div class="divfl divtitlefont" style="text-align: left"> 联系我们</div> <div class="divfr"> </div> </div> <div> <ul> <li class="divullititle heightline25px divtal">QQ:99515681 </li> <li class="divullititle heightline25px divtal">邮箱:99515681@qq.com </li> <li class="divullititle heightline25px divtal">工作时间:8:00-21:00 </li> <li class="divullititle heightline25px divtal">微信:codinghelp</li> </ul> </div> </div> <div class="width99bi margintop20 divbdr divfl"> <div class="divtitle"> <div class="divfl divtitlefont" style="text-align: left"> 热点文章</div> <div class="divfr"> <img src="/image/j01.jpg" width="14" height="14" alt="程序代写更多图片" /></div> <div class="divfr"> <a href="Lists-0-1.html" id="infotop2_amore" title="程序代写周排行更多">更多</a></div> </div> <div> <ul> <li class="divullititle heightline25px divtal"><a href="2024041918888528121.html" title="辅导 CS1B Spring 2024 TTH HW08讲解 Java语言" target="_blank"> 辅导 cs1b spring 2024 tth hw... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918888527961.html" title="讲解 Managing Financial Risk Problem Set 1讲解 留学生Matlab程序" target="_blank"> 讲解 managing financial risk... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918888527811.html" title="辅导 CS 0449 – Project 5: /dev/dice讲解 R语言" target="_blank"> 辅导 cs 0449 – project 5: /... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918888527651.html" title="辅导 ELEC 2141 Digital Circuit Design Term 1, 2024 Assignment 2讲解 留学生SQL语言" target="_blank"> 辅导 elec 2141 digital circu... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918888527501.html" title="讲解 CSC171 — Videogame Project讲解 留学生Java程序" target="_blank"> 讲解 csc171 — videogame pro... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918830877961.html" title="讲解 COMP3411 Artificial Intelligence Term 1, 2024 Assignment 3 – Nine-Board Tic-Tac-Toe讲解 留学生C/C++语言" target="_blank"> 讲解 comp3411 artificial int... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918830877811.html" title="讲解 STAT3061: Random Processes & Applications Assignment 1辅导 数据结构程序" target="_blank"> 讲解 stat3061: random proces... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918830877651.html" title="辅导 Accounting 452, Spring 2024 Assignment 2 - Earnings Quality辅导 留学生Matlab程序" target="_blank"> 辅导 accounting 452, spring ... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918796158751.html" title="辅导 FINC5001 Foundations in Finance Semester 1, 2023讲解 Python语言程序" target="_blank"> 辅导 finc5001 foundations in... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918796158591.html" title="辅导 7SSMM712 – Topics in Applied Finance讲解 回归" target="_blank"> 辅导 7ssmm712 – topics in a... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918796158431.html" title="讲解 COM 337 - Film Studies for the Digital Age (Spring 2023-2024)辅导 C/C++程序" target="_blank"> 讲解 com 337 - film studies ... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918796158281.html" title="辅导 MES202TC - Digital VLSI System Design and Design Automation讲解 Java语言" target="_blank"> 辅导 mes202tc - digital vlsi... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918796158121.html" title="辅导 Geography 2041B Distance Studies 2024辅导 留学生Matlab语言" target="_blank"> 辅导 geography 2041b distanc... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918792403121.html" title="辅导 ECOS3006 International Trade Mid-semester Exam Semester 2, 2023讲解 R程序" target="_blank"> 辅导 ecos3006 international ... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918792402961.html" title="讲解 FIT5225 2024 SM1 Creating and Deploying an Image Object Detection Web Service within a Containeri" target="_blank"> 讲解 fit5225 2024 sm1 creati... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918695397651.html" title="讲解 CIT 593: Introduction to Computing Systems Fall 2017 Final Exam辅导 R编程" target="_blank"> 讲解 cit 593: introduction t... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918695397501.html" title="讲解 MATH 4931: TAKE HOME EXAM辅导 留学生Matlab语言" target="_blank"> 讲解 math 4931: take home ex... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918695397341.html" title="辅导 CSCI 547|INFO 533: Systems and Protocol Security and Information Assurance Assignment II调试SQL 程序" target="_blank"> 辅导 csci 547|info 533: syst... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918695397181.html" title="辅导 CS536-S24 Intro to PLs and Compilers Programming Assignment 5辅导 Java程序" target="_blank"> 辅导 cs536-s24 intro to pls ... </a> <span class="colorlan"> 2024-04-19</span> </li> <li class="divullititle heightline25px divtal"><a href="2024041918695397031.html" title="讲解 FIT5212 - Assignment 1辅导 留学生Python程序" target="_blank"> 讲解 fit5212 - assignment 1辅... </a> <span class="colorlan"> 2024-04-19</span> </li> </ul> </div> </div> <div class="width99bi margintop20 divbdr divfl"> <div class="divtitle"> <div class="divfl divtitlefont" style="text-align: left"> 热点标签</div> </div> <div> <ul class="listkeyword"> <a href="Lists.aspx?wd=COM6521" title="COM6521"> com6521 </a> <a href="Lists.aspx?wd=CAN202" title="CAN202"> can202 </a> <a href="Lists.aspx?wd=CS 6476" title="CS 6476"> cs 6476 </a> <a href="Lists.aspx?wd=BASC0003" title="BASC0003"> basc0003 </a> <a href="Lists.aspx?wd=EE3121" title="EE3121"> ee3121 </a> <a href="Lists.aspx?wd=ACCT2002" title="ACCT2002"> acct2002 </a> <a href="Lists.aspx?wd=COMP5313" title="COMP5313"> comp5313 </a> <a href="Lists.aspx?wd=BUSI2131" title="BUSI2131"> busi2131 </a> <a href="Lists.aspx?wd=ISE529" title="ISE529"> ise529 </a> <a href="Lists.aspx?wd=CSIT940/CSIT440" title="CSIT940/CSIT440"> csit940/csit440 </a> <a href="Lists.aspx?wd=CENV6141" title="CENV6141"> cenv6141 </a> <a href="Lists.aspx?wd=COMP3027/COMP3927" title="COMP3027/COMP3927"> comp3027/comp3927 </a> <a href="Lists.aspx?wd=FTEC5580" title="FTEC5580"> ftec5580 </a> <a href="Lists.aspx?wd=COMP1433" title="COMP1433"> comp1433 </a> <a href="Lists.aspx?wd=MSCI223" title="MSCI223"> msci223 </a> <a href="Lists.aspx?wd=MARK203" title="MARK203"> mark203 </a> <a href="Lists.aspx?wd=EN3098" title="EN3098"> en3098 </a> <a href="Lists.aspx?wd=EDEN1000" title="EDEN1000"> eden1000 </a> <a href="Lists.aspx?wd=ECE6483" title="ECE6483"> ece6483 </a> <a href="Lists.aspx?wd=ECON4410" title="ECON4410"> econ4410 </a> <a href="Lists.aspx?wd=MATS16302" title="MATS16302"> mats16302 </a> <a href="Lists.aspx?wd=ELEC372/472" title="ELEC372/472"> elec372/472 </a> <a href="Lists.aspx?wd=ECMT1010" title="ECMT1010"> ecmt1010 </a> <a href="Lists.aspx?wd=COMP222" title="COMP222"> comp222 </a> <a href="Lists.aspx?wd=COMP3211" title="COMP3211"> comp3211 </a> <a href="Lists.aspx?wd=ENGG1340" title="ENGG1340"> engg1340 </a> <a href="Lists.aspx?wd=FIT5216" title="FIT5216"> fit5216 </a> <a href="Lists.aspx?wd=CSC1002" title="CSC1002"> csc1002 </a> <a href="Lists.aspx?wd=COMP10002" title="COMP10002"> comp10002 </a> <a href="Lists.aspx?wd=CMPSC311" title="CMPSC311"> cmpsc311 </a> <a href="Lists.aspx?wd=CHC6186" title="CHC6186"> chc6186 </a> <a href="Lists.aspx?wd=ECON3208" title="ECON3208"> econ3208 </a> <a href="Lists.aspx?wd=CS 161" title="CS 161"> cs 161 </a> <a href="Lists.aspx?wd=COMP27112" title="COMP27112"> comp27112 </a> <a href="Lists.aspx?wd=COMP282" title="COMP282"> comp282 </a> <a href="Lists.aspx?wd=SWEN20003" title="SWEN20003"> swen20003 </a> <a href="Lists.aspx?wd=COMM1190" title="COMM1190"> comm1190 </a> <a href="Lists.aspx?wd=ELEC9764" title="ELEC9764"> elec9764 </a> <a href="Lists.aspx?wd=ACFI3308" title="ACFI3308"> acfi3308 </a> <a href="Lists.aspx?wd=ACCT7101" title="ACCT7101"> acct7101 </a> <a href="Lists.aspx?wd=FIN6035" title="FIN6035"> fin6035 </a> <a href="Lists.aspx?wd=COMP2048" title="COMP2048"> comp2048 </a> <a href="Lists.aspx?wd=GEOG0163" title="GEOG0163"> geog0163 </a> <a href="Lists.aspx?wd=COMP2013" title="COMP2013"> comp2013 </a> <a href="Lists.aspx?wd=COEN 146" title="COEN 146"> coen 146 </a> <a href="Lists.aspx?wd=DTS101TC" title="DTS101TC"> dts101tc </a> <a href="Lists.aspx?wd=SEHH2042" title="SEHH2042"> sehh2042 </a> <a href="Lists.aspx?wd=COMP30023" title="COMP30023"> comp30023 </a> <a href="Lists.aspx?wd=COMP4880/8880" title="COMP4880/8880"> comp4880/8880 </a> <a href="Lists.aspx?wd=CS 455" title="CS 455"> cs 455 </a> <a href="Lists.aspx?wd=07" title="07"> 07 </a> <a href="Lists.aspx?wd=STAT0045." title="STAT0045."> stat0045. </a> <a href="Lists.aspx?wd=FIL-30023" title="FIL-30023"> fil-30023 </a> <a href="Lists.aspx?wd=CELEN085" title="CELEN085"> celen085 </a> <a href="Lists.aspx?wd=PSYC40005" title="PSYC40005"> psyc40005 </a> <a href="Lists.aspx?wd=MATH40082" title="MATH40082"> math40082 </a> <a href="Lists.aspx?wd=ARE271" title="ARE271"> are271 </a> <a href="Lists.aspx?wd=COMP9311" title="COMP9311"> comp9311 </a> <a href="Lists.aspx?wd=EE5311" title="EE5311"> ee5311 </a> <a href="Lists.aspx?wd=IMSE2113" title="IMSE2113"> imse2113 </a> <a href="Lists.aspx?wd=Comp 2322" title="Comp 2322"> comp 2322 </a> <a href="Lists.aspx?wd=ACCT2102" title="ACCT2102"> acct2102 </a> <a href="Lists.aspx?wd=FND109" title="FND109"> fnd109 </a> <a href="Lists.aspx?wd=INT102" title="INT102"> int102 </a> <a href="Lists.aspx?wd=IS3S664" title="IS3S664"> is3s664 </a> <a href="Lists.aspx?wd=IS6153" title="IS6153"> is6153 </a> <a href="Lists.aspx?wd=DATA4000" title="DATA4000"> data4000 </a> <a href="Lists.aspx?wd=ACCFIN5034" title="ACCFIN5034"> accfin5034 </a> <a href="Lists.aspx?wd=FIT5212" title="FIT5212"> fit5212 </a> <a href="Lists.aspx?wd=CS536-S24" title="CS536-S24"> cs536-s24 </a> <a href="Lists.aspx?wd=FIT5225" title="FIT5225"> fit5225 </a> <a href="Lists.aspx?wd=ECOS3006" title="ECOS3006"> ecos3006 </a> <a href="Lists.aspx?wd=MES202TC" title="MES202TC"> mes202tc </a> <a href="Lists.aspx?wd=FINC5001" title="FINC5001"> finc5001 </a> <a href="Lists.aspx?wd=STAT3061" title="STAT3061"> stat3061 </a> <a href="Lists.aspx?wd=CSC171" title="CSC171"> csc171 </a> <a href="Lists.aspx?wd=CS1B" title="CS1B"> cs1b </a> <a href="Lists.aspx?wd=7SSMM712" title="7SSMM712"> 7ssmm712 </a> <a href="Lists.aspx?wd=BU.450.760" title="BU.450.760"> bu.450.760 </a> <a href="Lists.aspx?wd=COMP3411" title="COMP3411"> comp3411 </a> <a href="Lists.aspx?wd=CS170" title="CS170"> cs170 </a> <a href="Lists.aspx?wd=SWEN90004" title="SWEN90004"> swen90004 </a> <a href="Lists.aspx?wd=CPT206" title="CPT206"> cpt206 </a> <a href="Lists.aspx?wd=COMP5313/COMP4313—Large" title="COMP5313/COMP4313—Large"> comp5313/comp4313—large </a> <a href="Lists.aspx?wd=BL5611" title="BL5611"> bl5611 </a> <a href="Lists.aspx?wd=KXO206" title="KXO206"> kxo206 </a> <a href="Lists.aspx?wd=COMP532" title="COMP532"> comp532 </a> <a href="Lists.aspx?wd=ELEC207" title="ELEC207"> elec207 </a> <a href="Lists.aspx?wd=KXO151" title="KXO151"> kxo151 </a> <a href="Lists.aspx?wd=CS 2820" title="CS 2820"> cs 2820 </a> <a href="Lists.aspx?wd=CPT108" title="CPT108"> cpt108 </a> <a href="Lists.aspx?wd=MATH2319" title="MATH2319"> math2319 </a> <a href="Lists.aspx?wd=DTS204TC" title="DTS204TC"> dts204tc </a> <a href="Lists.aspx?wd=QM222" title="QM222"> qm222 </a> <a href="Lists.aspx?wd=COMP2511" title="COMP2511"> comp2511 </a> <a href="Lists.aspx?wd=CCS599" title="CCS599"> ccs599 </a> <a href="Lists.aspx?wd=INFS1001" title="INFS1001"> infs1001 </a> <a href="Lists.aspx?wd=MAT2355" title="MAT2355"> mat2355 </a> <a href="Lists.aspx?wd=EEEE4123" title="EEEE4123"> eeee4123 </a> <a href="Lists.aspx?wd=25721" title="25721"> 25721 </a> <a href="Lists.aspx?wd=IFN647" title="IFN647"> ifn647 </a> <a href="Lists.aspx?wd=POLS0010" title="POLS0010"> pols0010 </a> <a href="Lists.aspx?wd=HPM 573" title="HPM 573"> hpm 573 </a> <a href="Lists.aspx?wd=STAT0023" title="STAT0023"> stat0023 </a> <a href="Lists.aspx?wd=CSCI 1100" title="CSCI 1100"> csci 1100 </a> <a href="Lists.aspx?wd=QBUS6860" title="QBUS6860"> qbus6860 </a> <a href="Lists.aspx?wd=COMP9417" title="COMP9417"> comp9417 </a> <a href="Lists.aspx?wd=COMP2003J" title="COMP2003J"> comp2003j </a> <a href="Lists.aspx?wd=CSE340" title="CSE340"> cse340 </a> <a href="Lists.aspx?wd=CS 2550" title="CS 2550"> cs 2550 </a> <a href="Lists.aspx?wd=CS 61B" title="CS 61B"> cs 61b </a> <a href="Lists.aspx?wd=CS360" title="CS360"> cs360 </a> <a href="Lists.aspx?wd=FIN 3080" title="FIN 3080"> fin 3080 </a> <a href="Lists.aspx?wd=IERG 4080" title="IERG 4080"> ierg 4080 </a> <a href="Lists.aspx?wd=CS6238" title="CS6238"> cs6238 </a> <a href="Lists.aspx?wd=CIT 594" title="CIT 594"> cit 594 </a> <a href="Lists.aspx?wd=FINM7406" title="FINM7406"> finm7406 </a> <a href="Lists.aspx?wd=HW6" title="HW6"> hw6 </a> <a href="Lists.aspx?wd=ELEC9713" title="ELEC9713"> elec9713 </a> <a href="Lists.aspx?wd=ASB-2522" title="ASB-2522"> asb-2522 </a> <a href="Lists.aspx?wd=MSO3610" title="MSO3610"> mso3610 </a> <a href="Lists.aspx?wd=LIT301" title="LIT301"> lit301 </a> <a href="Lists.aspx?wd=MCD4540" title="MCD4540"> mcd4540 </a> <a href="Lists.aspx?wd=GEOG0030" title="GEOG0030"> geog0030 </a> <a href="Lists.aspx?wd=125.330" title="125.330"> 125.330 </a> <a href="Lists.aspx?wd=BIOL0006" title="BIOL0006"> biol0006 </a> <a href="Lists.aspx?wd=125.320" title="125.320"> 125.320 </a> <a href="Lists.aspx?wd=CS3334" title="CS3334"> cs3334 </a> <a href="Lists.aspx?wd=FIT2093" title="FIT2093"> fit2093 </a> <a href="Lists.aspx?wd=ACCT1101" title="ACCT1101"> acct1101 </a> <a href="Lists.aspx?wd=110.309" title="110.309"> 110.309 </a> <a href="Lists.aspx?wd=MASY1-GC" title="MASY1-GC"> masy1-gc </a> <a href="Lists.aspx?wd=CS314" title="CS314"> cs314 </a> <a href="Lists.aspx?wd=ELEC0048" title="ELEC0048"> elec0048 </a> <a href="Lists.aspx?wd=GDS104" title="GDS104"> gds104 </a> <a href="Lists.aspx?wd=MG5637" title="MG5637"> mg5637 </a> <a href="Lists.aspx?wd=FIT2096" title="FIT2096"> fit2096 </a> <a href="Lists.aspx?wd=MATH5905" title="MATH5905"> math5905 </a> <a href="Lists.aspx?wd=EEL4837" title="EEL4837"> eel4837 </a> <a href="Lists.aspx?wd=SEHS4515" title="SEHS4515"> sehs4515 </a> <a href="Lists.aspx?wd=Cpt S 321" title="Cpt S 321"> cpt s 321 </a> <a href="Lists.aspx?wd=ASB2522 Investment" title="ASB2522 Investment"> asb2522 investment </a> <a href="Lists.aspx?wd=MA214" title="MA214"> ma214 </a> <a href="Lists.aspx?wd=CO2104" title="CO2104"> co2104 </a> <a href="Lists.aspx?wd=MGMT2015" title="MGMT2015"> mgmt2015 </a> <a href="Lists.aspx?wd=32516" title="32516"> 32516 </a> <a href="Lists.aspx?wd=MATH32051" title="MATH32051"> math32051 </a> <a href="Lists.aspx?wd=ECON1012" title="ECON1012"> econ1012 </a> <a href="Lists.aspx?wd=MARK2052" title="MARK2052"> mark2052 </a> <a href="Lists.aspx?wd=ECON0019" title="ECON0019"> econ0019 </a> <a href="Lists.aspx?wd=COMP3310" title="COMP3310"> comp3310 </a> <a href="Lists.aspx?wd=DSCI 525" title="DSCI 525"> dsci 525 </a> <a href="Lists.aspx?wd=ABMF3184" title="ABMF3184"> abmf3184 </a> <a href="Lists.aspx?wd=APS106" title="APS106"> aps106 </a> <a href="Lists.aspx?wd=ANTC27" title="ANTC27"> antc27 </a> <a href="Lists.aspx?wd=FINM7401" title="FINM7401"> finm7401 </a> <a href="Lists.aspx?wd=ITP122" title="ITP122"> itp122 </a> <a href="Lists.aspx?wd=TECH2300" title="TECH2300"> tech2300 </a> <a href="Lists.aspx?wd=MATH3026" title="MATH3026"> math3026 </a> <a href="Lists.aspx?wd=COMP9024" title="COMP9024"> comp9024 </a> <a href="Lists.aspx?wd=CAO107" title="CAO107"> cao107 </a> <a href="Lists.aspx?wd=36318" title="36318"> 36318 </a> <a href="Lists.aspx?wd=IS2022" title="IS2022"> is2022 </a> <a href="Lists.aspx?wd=CS 211" title="CS 211"> cs 211 </a> <a href="Lists.aspx?wd=FIT1047" title="FIT1047"> fit1047 </a> <a href="Lists.aspx?wd=ICS4U" title="ICS4U"> ics4u </a> <a href="Lists.aspx?wd=2XC3" title="2XC3"> 2xc3 </a> <a href="Lists.aspx?wd=EN.540.635" title="EN.540.635"> en.540.635 </a> <a href="Lists.aspx?wd=4QQMN506" title="4QQMN506"> 4qqmn506 </a> <a href="Lists.aspx?wd=FINN3081" title="FINN3081"> finn3081 </a> <a href="Lists.aspx?wd=PHYS10362" title="PHYS10362"> phys10362 </a> <a href="Lists.aspx?wd=STA601" title="STA601"> sta601 </a> <a href="Lists.aspx?wd=EC481E" title="EC481E"> ec481e </a> <a href="Lists.aspx?wd=MATH5165" title="MATH5165"> math5165 </a> <a href="Lists.aspx?wd=CSI 2120" title="CSI 2120"> csi 2120 </a> <a href="Lists.aspx?wd=EL1205" title="EL1205"> el1205 </a> <a href="Lists.aspx?wd=COMP7250" title="COMP7250"> comp7250 </a> <a href="Lists.aspx?wd=ECOS3013" title="ECOS3013"> ecos3013 </a> <a href="Lists.aspx?wd=BEAM065" title="BEAM065"> beam065 </a> <a href="Lists.aspx?wd=INFO1113" title="INFO1113"> info1113 </a> <a href="Lists.aspx?wd=COMP2051" title="COMP2051"> comp2051 </a> <a href="Lists.aspx?wd=CSC325" title="CSC325"> csc325 </a> <a href="Lists.aspx?wd=MNE 6130" title="MNE 6130"> mne 6130 </a> <a href="Lists.aspx?wd=AI6126" title="AI6126"> ai6126 </a> <a href="Lists.aspx?wd=ecs150" title="ecs150"> ecs150 </a> <a href="Lists.aspx?wd=IS61x6" title="IS61x6"> is61x6 </a> <a href="Lists.aspx?wd=CSE115" title="CSE115"> cse115 </a> <a href="Lists.aspx?wd=SENG6110" title="SENG6110"> seng6110 </a> <a href="Lists.aspx?wd=BUS265" title="BUS265"> bus265 </a> <a href="Lists.aspx?wd=CptS260" title="CptS260"> cpts260 </a> <a href="Lists.aspx?wd=MPHY0009" title="MPHY0009"> mphy0009 </a> <a href="Lists.aspx?wd=CSC306" title="CSC306"> csc306 </a> <a href="Lists.aspx?wd=ECO2011" title="ECO2011"> eco2011 </a> <a href="Lists.aspx?wd=EE3004" title="EE3004"> ee3004 </a> <a href="Lists.aspx?wd=INU1111" title="INU1111"> inu1111 </a> <a href="Lists.aspx?wd=ST332" title="ST332"> st332 </a> <a href="Lists.aspx?wd=IDEPG001" title="IDEPG001"> idepg001 </a> <a href="Lists.aspx?wd=INFO6001" title="INFO6001"> info6001 </a> <a href="Lists.aspx?wd=CPT106" title="CPT106"> cpt106 </a> <a href="Lists.aspx?wd=FINM7409" title="FINM7409"> finm7409 </a> </ul> </div> </div> <br /> </div> <div class="divfloatclear"> </div> <div class="bottomdiv"> <div class="width1000px divmargin0auto paddingtop20"> <div class="height30px divtal"> <a href="#" title="代写程序联系我们">联系我们</a> - QQ: 99515681 微信:codinghelp </div> <div class="height30px divtal"> © 2024 <a href="#" target="_blank" title="程序代写网技术分享">www.7daixie.com</a> <span style="display:none"> <a href="/sitemap.xml" target="_blank">站长地图</a> </span> </div> <div class="divtal"> <span class="colorlan">程序辅导网!</span> </div> <div class="paddingtop20"> </div> </div> </div> </div> </form> <style type="text/css"> .keifu { position: fixed; top: 30%; right: 0; width: 151px; _position: absolute; _top: expressiondocument.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.bottom,10)||0)-(parseInt(this.currentStyle.marginTop,10)||0)-(parseInt(this.currentStyle.marginBottom,10)||0))); z-index: 100; } </style> <script src="http://www.asgnhelp.com/js/rightfloat.js"></script> <div class="keifu"> </div> <script language="Javascript"> document.oncontextmenu=new Function("event.returnValue=false"); document.onselectstart=new Function("event.returnValue=false"); </script> </body> </html>