首页 > > 详细

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="2025102819842434531.html" title="辅导 DL-Fall-25 Kaggle Contest讲解 Python语言程序" target="_blank"> 辅导 dl-fall-25 kaggle conte... </a> <span class="colorlan"> 2025-10-28</span> </li> <li class="divullititle heightline25px divtal"><a href="2025102819842434371.html" title="辅导 EDEN4027 Translation Studies: Theories and Methodologies辅导 留学生Matlab语言程序" target="_blank"> 辅导 eden4027 translation st... </a> <span class="colorlan"> 2025-10-28</span> </li> <li class="divullititle heightline25px divtal"><a href="2025102819842433751.html" title="辅导 Bien 290: Bioengineering Measurements Lab Fall 2025" target="_blank"> 辅导 bien 290: bioengineerin... </a> <span class="colorlan"> 2025-10-28</span> </li> <li class="divullititle heightline25px divtal"><a href="2025102819842432961.html" title="辅导 Qbus6860 Group Assignment讲解 留学生SQL语言程序" target="_blank"> 辅导 qbus6860 group assignme... </a> <span class="colorlan"> 2025-10-28</span> </li> <li class="divullititle heightline25px divtal"><a href="2025102819842432501.html" title="讲解 COMP4920 Applied Ethics: AI Case Study Term 3 2025讲解 Python语言程序" target="_blank"> 讲解 comp4920 applied ethics... </a> <span class="colorlan"> 2025-10-28</span> </li> <li class="divullititle heightline25px divtal"><a href="2025102819842432031.html" title="辅导 BISM7202 Information Systems for Management Case Specification SEMESTER 2, 2025辅导 留学生Matlab语言" target="_blank"> 辅导 bism7202 information sy... </a> <span class="colorlan"> 2025-10-28</span> </li> <li class="divullititle heightline25px divtal"><a href="2025102819842431561.html" title="辅导 BISM7202 Information Systems for Management Assessment Guideline SEMESTER 2, 2025讲解 Statistics统计" target="_blank"> 辅导 bism7202 information sy... </a> <span class="colorlan"> 2025-10-28</span> </li> <li class="divullititle heightline25px divtal"><a href="2025102819819810461.html" title="讲解 PUBPOL 522 – AUTUMN 2025 1 FINANCIAL STATEMENT ANALYSIS辅导 数据结构程序" target="_blank"> 讲解 pubpol 522 – autumn 20... </a> <span class="colorlan"> 2025-10-28</span> </li> <li class="divullititle heightline25px divtal"><a href="2025102819819810151.html" title="讲解 ACCY231 2025 Final Assessment – Business Research Report讲解 Statistics统计" target="_blank"> 讲解 accy231 2025 final asse... </a> <span class="colorlan"> 2025-10-28</span> </li> <li class="divullititle heightline25px divtal"><a href="2025102819819810001.html" title="辅导 MATH2070/2970: Optimisation and Financial Mathematics Semester 2, 2025讲解 留学生R程序" target="_blank"> 辅导 math2070/2970: optimisa... </a> <span class="colorlan"> 2025-10-28</span> </li> <li class="divullititle heightline25px divtal"><a href="2025102819819809841.html" title="讲解 ACCFIN5024 International Financial Accounting for Multi-national Corporations 2025/26调试数据库编程" target="_blank"> 讲解 accfin5024 internationa... </a> <span class="colorlan"> 2025-10-28</span> </li> <li class="divullititle heightline25px divtal"><a href="2025102819819809061.html" title="讲解 COM62204 – Visual Communication调试数据库编程" target="_blank"> 讲解 com62204 – visual comm... </a> <span class="colorlan"> 2025-10-28</span> </li> <li class="divullititle heightline25px divtal"><a href="2025102819782334061.html" title="讲解 INFO1112 A2: Trivia.NET 2025辅导 Python语言" target="_blank"> 讲解 info1112 a2: trivia.net... </a> <span class="colorlan"> 2025-10-28</span> </li> <li class="divullititle heightline25px divtal"><a href="2025102819722291251.html" title="讲解 MGTS7523 Modelling assignment (semester 2, 2025)讲解 Python编程" target="_blank"> 讲解 mgts7523 modelling assi... </a> <span class="colorlan"> 2025-10-28</span> </li> <li class="divullititle heightline25px divtal"><a href="2025102819662504531.html" title="辅导 PSYCHOLOGY 162 HUMAN HAPPINESS讲解 留学生Matlab编程" target="_blank"> 辅导 psychology 162 human ha... </a> <span class="colorlan"> 2025-10-28</span> </li> <li class="divullititle heightline25px divtal"><a href="2025102819662504371.html" title="辅导 Group Assignment specification讲解 Python语言程序" target="_blank"> 辅导 group assignment specif... </a> <span class="colorlan"> 2025-10-28</span> </li> <li class="divullititle heightline25px divtal"><a href="2025102819662504211.html" title="讲解 48360 Geotechnical Engineering调试SPSS" target="_blank"> 讲解 48360 geotechnical engi... </a> <span class="colorlan"> 2025-10-28</span> </li> <li class="divullititle heightline25px divtal"><a href="2025102819662504061.html" title="辅导 FIT9137 Semester 2 2025 Assessment 3讲解 Python编程" target="_blank"> 辅导 fit9137 semester 2 2025... </a> <span class="colorlan"> 2025-10-28</span> </li> <li class="divullititle heightline25px divtal"><a href="2025102819662503901.html" title="讲解 MECH3460 8460 9460 Assignment 3 Shaft Methodologies – Chain Drive Mixer讲解 Python语言程序" target="_blank"> 讲解 mech3460 8460 9460 assi... </a> <span class="colorlan"> 2025-10-28</span> </li> <li class="divullititle heightline25px divtal"><a href="2025102819662503591.html" title="讲解 RBE104TC C Programming Language讲解 Java语言" target="_blank"> 讲解 rbe104tc c programming ... </a> <span class="colorlan"> 2025-10-28</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=MKTG2509" title="MKTG2509"> mktg2509 </a> <a href="Lists.aspx?wd=CSCI 2600" title="CSCI 2600"> csci 2600 </a> <a href="Lists.aspx?wd=38170" title="38170"> 38170 </a> <a href="Lists.aspx?wd=LNG302" title="LNG302"> lng302 </a> <a href="Lists.aspx?wd=CSSE3010" title="CSSE3010"> csse3010 </a> <a href="Lists.aspx?wd=PHAS3226" title="PHAS3226"> phas3226 </a> <a href="Lists.aspx?wd=77938" title="77938"> 77938 </a> <a href="Lists.aspx?wd=ARCH1162" title="ARCH1162"> arch1162 </a> <a href="Lists.aspx?wd=ENGN4536/ENGN6536" title="ENGN4536/ENGN6536"> engn4536/engn6536 </a> <a href="Lists.aspx?wd=ACX5903" title="ACX5903"> acx5903 </a> <a href="Lists.aspx?wd=COMP151101" title="COMP151101"> comp151101 </a> <a href="Lists.aspx?wd=PHL245" title="PHL245"> phl245 </a> <a href="Lists.aspx?wd=CSE12" title="CSE12"> cse12 </a> <a href="Lists.aspx?wd=COMP9312" title="COMP9312"> comp9312 </a> <a href="Lists.aspx?wd=STAT3016/6016" title="STAT3016/6016"> stat3016/6016 </a> <a href="Lists.aspx?wd=PHAS0038" title="PHAS0038"> phas0038 </a> <a href="Lists.aspx?wd=COMP2140" title="COMP2140"> comp2140 </a> <a href="Lists.aspx?wd=6QQMB312" title="6QQMB312"> 6qqmb312 </a> <a href="Lists.aspx?wd=XJCO3011" title="XJCO3011"> xjco3011 </a> <a href="Lists.aspx?wd=REST0005" title="REST0005"> rest0005 </a> <a href="Lists.aspx?wd=EMATM0051" title="EMATM0051"> ematm0051 </a> <a href="Lists.aspx?wd=5QQMN219" title="5QQMN219"> 5qqmn219 </a> <a href="Lists.aspx?wd=LUBS5062M" title="LUBS5062M"> lubs5062m </a> <a href="Lists.aspx?wd=EEE8155" title="EEE8155"> eee8155 </a> <a href="Lists.aspx?wd=CEGE0100" title="CEGE0100"> cege0100 </a> <a href="Lists.aspx?wd=EAP033" title="EAP033"> eap033 </a> <a href="Lists.aspx?wd=ARTD1109" title="ARTD1109"> artd1109 </a> <a href="Lists.aspx?wd=MAT246" title="MAT246"> mat246 </a> <a href="Lists.aspx?wd=ETC3430" title="ETC3430"> etc3430 </a> <a href="Lists.aspx?wd=ECMM462" title="ECMM462"> ecmm462 </a> <a href="Lists.aspx?wd=MIS102" title="MIS102"> mis102 </a> <a href="Lists.aspx?wd=INFT6800" title="INFT6800"> inft6800 </a> <a href="Lists.aspx?wd=DDES9903" title="DDES9903"> ddes9903 </a> <a href="Lists.aspx?wd=COMP6521" title="COMP6521"> comp6521 </a> <a href="Lists.aspx?wd=COMP9517" title="COMP9517"> comp9517 </a> <a href="Lists.aspx?wd=COMP3331/9331" title="COMP3331/9331"> comp3331/9331 </a> <a href="Lists.aspx?wd=COMP4337" title="COMP4337"> comp4337 </a> <a href="Lists.aspx?wd=COMP6008" title="COMP6008"> comp6008 </a> <a href="Lists.aspx?wd=COMP9414" title="COMP9414"> comp9414 </a> <a href="Lists.aspx?wd=BU.231.790.81" title="BU.231.790.81"> bu.231.790.81 </a> <a href="Lists.aspx?wd=MAN00150M" title="MAN00150M"> man00150m </a> <a href="Lists.aspx?wd=CSB352H" title="CSB352H"> csb352h </a> <a href="Lists.aspx?wd=MATH1041" title="MATH1041"> math1041 </a> <a href="Lists.aspx?wd=EENGM4100" title="EENGM4100"> eengm4100 </a> <a href="Lists.aspx?wd=ISYS1002" title="ISYS1002"> isys1002 </a> <a href="Lists.aspx?wd=08" title="08"> 08 </a> <a href="Lists.aspx?wd=6057CEM" title="6057CEM"> 6057cem </a> <a href="Lists.aspx?wd=MKTG3504" title="MKTG3504"> mktg3504 </a> <a href="Lists.aspx?wd=MTHM036" title="MTHM036"> mthm036 </a> <a href="Lists.aspx?wd=MTRX1701" title="MTRX1701"> mtrx1701 </a> <a href="Lists.aspx?wd=MTH3241" title="MTH3241"> mth3241 </a> <a href="Lists.aspx?wd=EEEE3086" title="EEEE3086"> eeee3086 </a> <a href="Lists.aspx?wd=CMP-7038B" title="CMP-7038B"> cmp-7038b </a> <a href="Lists.aspx?wd=CMP-7000A" title="CMP-7000A"> cmp-7000a </a> <a href="Lists.aspx?wd=INTS4010" title="INTS4010"> ints4010 </a> <a href="Lists.aspx?wd=ECON2151" title="ECON2151"> econ2151 </a> <a href="Lists.aspx?wd=INFS5710" title="INFS5710"> infs5710 </a> <a href="Lists.aspx?wd=FINS5516" title="FINS5516"> fins5516 </a> <a href="Lists.aspx?wd=FIN3309" title="FIN3309"> fin3309 </a> <a href="Lists.aspx?wd=FINS5510" title="FINS5510"> fins5510 </a> <a href="Lists.aspx?wd=GSOE9340" title="GSOE9340"> gsoe9340 </a> <a href="Lists.aspx?wd=MATH2007" title="MATH2007"> math2007 </a> <a href="Lists.aspx?wd=MATH2036" title="MATH2036"> math2036 </a> <a href="Lists.aspx?wd=SOEE5010" title="SOEE5010"> soee5010 </a> <a href="Lists.aspx?wd=MARK3088" title="MARK3088"> mark3088 </a> <a href="Lists.aspx?wd=INFS3605" title="INFS3605"> infs3605 </a> <a href="Lists.aspx?wd=ELEC9714" title="ELEC9714"> elec9714 </a> <a href="Lists.aspx?wd=COMP2271" title="COMP2271"> comp2271 </a> <a href="Lists.aspx?wd=MA214" title="MA214"> ma214 </a> <a href="Lists.aspx?wd=COMP2211" title="COMP2211"> comp2211 </a> <a href="Lists.aspx?wd=INFS3604" title="INFS3604"> infs3604 </a> <a href="Lists.aspx?wd=600426" title="600426"> 600426 </a> <a href="Lists.aspx?wd=SIT254" title="SIT254"> sit254 </a> <a href="Lists.aspx?wd=ACCT3091" title="ACCT3091"> acct3091 </a> <a href="Lists.aspx?wd=BBT405" title="BBT405"> bbt405 </a> <a href="Lists.aspx?wd=MSIN0116" title="MSIN0116"> msin0116 </a> <a href="Lists.aspx?wd=COM107/COM113" title="COM107/COM113"> com107/com113 </a> <a href="Lists.aspx?wd=MARK5826" title="MARK5826"> mark5826 </a> <a href="Lists.aspx?wd=SIT120" title="SIT120"> sit120 </a> <a href="Lists.aspx?wd=Comp9021" title="Comp9021"> comp9021 </a> <a href="Lists.aspx?wd=ECO2101" title="ECO2101"> eco2101 </a> <a href="Lists.aspx?wd=EEEN40700" title="EEEN40700"> eeen40700 </a> <a href="Lists.aspx?wd=CS253" title="CS253"> cs253 </a> <a href="Lists.aspx?wd=ECE3114" title="ECE3114"> ece3114 </a> <a href="Lists.aspx?wd=ECMM447" title="ECMM447"> ecmm447 </a> <a href="Lists.aspx?wd=CHNS3000" title="CHNS3000"> chns3000 </a> <a href="Lists.aspx?wd=MATH377" title="MATH377"> math377 </a> <a href="Lists.aspx?wd=ITD102" title="ITD102"> itd102 </a> <a href="Lists.aspx?wd=COMP9444" title="COMP9444"> comp9444 </a> <a href="Lists.aspx?wd=COMP(2041|9044)" title="COMP(2041|9044)"> comp(2041|9044) </a> <a href="Lists.aspx?wd=ECON0060" title="ECON0060"> econ0060 </a> <a href="Lists.aspx?wd=ECON7230" title="ECON7230"> econ7230 </a> <a href="Lists.aspx?wd=MGT001371" title="MGT001371"> mgt001371 </a> <a href="Lists.aspx?wd=ECS-323" title="ECS-323"> ecs-323 </a> <a href="Lists.aspx?wd=CS6250" title="CS6250"> cs6250 </a> <a href="Lists.aspx?wd=MGDI60012" title="MGDI60012"> mgdi60012 </a> <a href="Lists.aspx?wd=MDIA2012" title="MDIA2012"> mdia2012 </a> <a href="Lists.aspx?wd=COMM221001" title="COMM221001"> comm221001 </a> <a href="Lists.aspx?wd=COMM5000" title="COMM5000"> comm5000 </a> <a href="Lists.aspx?wd=MA1008" title="MA1008"> ma1008 </a> <a href="Lists.aspx?wd=ENGL642" title="ENGL642"> engl642 </a> <a href="Lists.aspx?wd=ECON241" title="ECON241"> econ241 </a> <a href="Lists.aspx?wd=COM333" title="COM333"> com333 </a> <a href="Lists.aspx?wd=MATH367" title="MATH367"> math367 </a> <a href="Lists.aspx?wd=MIS201" title="MIS201"> mis201 </a> <a href="Lists.aspx?wd=NBS-7041X" title="NBS-7041X"> nbs-7041x </a> <a href="Lists.aspx?wd=MEEK16104" title="MEEK16104"> meek16104 </a> <a href="Lists.aspx?wd=ECON2003" title="ECON2003"> econ2003 </a> <a href="Lists.aspx?wd=COMM1190" title="COMM1190"> comm1190 </a> <a href="Lists.aspx?wd=MBAS902" title="MBAS902"> mbas902 </a> <a href="Lists.aspx?wd=COMP-1027" title="COMP-1027"> comp-1027 </a> <a href="Lists.aspx?wd=DPST1091" title="DPST1091"> dpst1091 </a> <a href="Lists.aspx?wd=comp7315" title="comp7315"> comp7315 </a> <a href="Lists.aspx?wd=EPPD1033" title="EPPD1033"> eppd1033 </a> <a href="Lists.aspx?wd=M06" title="M06"> m06 </a> <a href="Lists.aspx?wd=EE3025" title="EE3025"> ee3025 </a> <a href="Lists.aspx?wd=MSCI231" title="MSCI231"> msci231 </a> <a href="Lists.aspx?wd=BB113/BBS1063" title="BB113/BBS1063"> bb113/bbs1063 </a> <a href="Lists.aspx?wd=FC709" title="FC709"> fc709 </a> <a href="Lists.aspx?wd=COMP3425" title="COMP3425"> comp3425 </a> <a href="Lists.aspx?wd=COMP9417" title="COMP9417"> comp9417 </a> <a href="Lists.aspx?wd=ECON42915" title="ECON42915"> econ42915 </a> <a href="Lists.aspx?wd=CB9101" title="CB9101"> cb9101 </a> <a href="Lists.aspx?wd=MATH1102E" title="MATH1102E"> math1102e </a> <a href="Lists.aspx?wd=CHME0017" title="CHME0017"> chme0017 </a> <a href="Lists.aspx?wd=FC307" title="FC307"> fc307 </a> <a href="Lists.aspx?wd=MKT60104" title="MKT60104"> mkt60104 </a> <a href="Lists.aspx?wd=5522USST" title="5522USST"> 5522usst </a> <a href="Lists.aspx?wd=LITR1-UC6201.200" title="LITR1-UC6201.200"> litr1-uc6201.200 </a> <a href="Lists.aspx?wd=EE1102" title="EE1102"> ee1102 </a> <a href="Lists.aspx?wd=COSC2803" title="COSC2803"> cosc2803 </a> <a href="Lists.aspx?wd=MATH39512" title="MATH39512"> math39512 </a> <a href="Lists.aspx?wd=OMP9727" title="OMP9727"> omp9727 </a> <a href="Lists.aspx?wd=INT2067/INT5051" title="INT2067/INT5051"> int2067/int5051 </a> <a href="Lists.aspx?wd=BSB151" title="BSB151"> bsb151 </a> <a href="Lists.aspx?wd=MGT253" title="MGT253"> mgt253 </a> <a href="Lists.aspx?wd=FC021" title="FC021"> fc021 </a> <a href="Lists.aspx?wd=BABS2202" title="BABS2202"> babs2202 </a> <a href="Lists.aspx?wd=MIS2002S" title="MIS2002S"> mis2002s </a> <a href="Lists.aspx?wd=PhyA21" title="PhyA21"> phya21 </a> <a href="Lists.aspx?wd=18-213" title="18-213"> 18-213 </a> <a href="Lists.aspx?wd=CEGE0012" title="CEGE0012"> cege0012 </a> <a href="Lists.aspx?wd=MDIA1002" title="MDIA1002"> mdia1002 </a> <a href="Lists.aspx?wd=MATH38032" title="MATH38032"> math38032 </a> <a href="Lists.aspx?wd=MECH5125" title="MECH5125"> mech5125 </a> <a href="Lists.aspx?wd=07" title="07"> 07 </a> <a href="Lists.aspx?wd=CISC102" title="CISC102"> cisc102 </a> <a href="Lists.aspx?wd=MGX3110" title="MGX3110"> mgx3110 </a> <a href="Lists.aspx?wd=CS240" title="CS240"> cs240 </a> <a href="Lists.aspx?wd=11175" title="11175"> 11175 </a> <a href="Lists.aspx?wd=FIN3020S" title="FIN3020S"> fin3020s </a> <a href="Lists.aspx?wd=Eco3420" title="Eco3420"> eco3420 </a> <a href="Lists.aspx?wd=ICTTEN622" title="ICTTEN622"> ictten622 </a> <a href="Lists.aspx?wd=COMP9727" title="COMP9727"> comp9727 </a> <a href="Lists.aspx?wd=CPT111" title="CPT111"> cpt111 </a> <a href="Lists.aspx?wd=DE114102D" title="DE114102D"> de114102d </a> <a href="Lists.aspx?wd=MGM320H5S" title="MGM320H5S"> mgm320h5s </a> <a href="Lists.aspx?wd=BAFI1019" title="BAFI1019"> bafi1019 </a> <a href="Lists.aspx?wd=MATH21112" title="MATH21112"> math21112 </a> <a href="Lists.aspx?wd=EFIM20036" title="EFIM20036"> efim20036 </a> <a href="Lists.aspx?wd=MN-3503" title="MN-3503"> mn-3503 </a> <a href="Lists.aspx?wd=FINS5568" title="FINS5568"> fins5568 </a> <a href="Lists.aspx?wd=110.807" title="110.807"> 110.807 </a> <a href="Lists.aspx?wd=BCPM000028" title="BCPM000028"> bcpm000028 </a> <a href="Lists.aspx?wd=INFO6030" title="INFO6030"> info6030 </a> <a href="Lists.aspx?wd=BMA0092" title="BMA0092"> bma0092 </a> <a href="Lists.aspx?wd=BCPM0054" title="BCPM0054"> bcpm0054 </a> <a href="Lists.aspx?wd=MATH20212" title="MATH20212"> math20212 </a> <a href="Lists.aspx?wd=CE335" title="CE335"> ce335 </a> <a href="Lists.aspx?wd=CS365" title="CS365"> cs365 </a> <a href="Lists.aspx?wd=CENV6141" title="CENV6141"> cenv6141 </a> <a href="Lists.aspx?wd=FTEC5580" title="FTEC5580"> ftec5580 </a> <a href="Lists.aspx?wd=MATH2010" title="MATH2010"> math2010 </a> <a href="Lists.aspx?wd=EC3450" title="EC3450"> ec3450 </a> <a href="Lists.aspx?wd=COMM1170" title="COMM1170"> comm1170 </a> <a href="Lists.aspx?wd=ECMT1010" title="ECMT1010"> ecmt1010 </a> <a href="Lists.aspx?wd=CSCI-UA.0480-003" title="CSCI-UA.0480-003"> csci-ua.0480-003 </a> <a href="Lists.aspx?wd=ECON12-200" title="ECON12-200"> econ12-200 </a> <a href="Lists.aspx?wd=IB3960" title="IB3960"> ib3960 </a> <a href="Lists.aspx?wd=ECTB60H3F" title="ECTB60H3F"> ectb60h3f </a> <a href="Lists.aspx?wd=CS247—Assignment" title="CS247—Assignment"> cs247—assignment </a> <a href="Lists.aspx?wd=TK3163" title="TK3163"> tk3163 </a> <a href="Lists.aspx?wd=ICS3U" title="ICS3U"> ics3u </a> <a href="Lists.aspx?wd=IB3J80" title="IB3J80"> ib3j80 </a> <a href="Lists.aspx?wd=COMP20008" title="COMP20008"> comp20008 </a> <a href="Lists.aspx?wd=COMP9334" title="COMP9334"> comp9334 </a> <a href="Lists.aspx?wd=EPPD1063" title="EPPD1063"> eppd1063 </a> <a href="Lists.aspx?wd=ACCT2343" title="ACCT2343"> acct2343 </a> <a href="Lists.aspx?wd=CCT109" title="CCT109"> cct109 </a> <a href="Lists.aspx?wd=ISYS1055/3412" title="ISYS1055/3412"> isys1055/3412 </a> <a href="Lists.aspx?wd=MATH350-Real" title="MATH350-Real"> math350-real </a> <a href="Lists.aspx?wd=MATH2014" title="MATH2014"> math2014 </a> <a href="Lists.aspx?wd=EEC180" title="EEC180"> eec180 </a> <a href="Lists.aspx?wd=STAT141B" title="STAT141B"> stat141b </a> <a href="Lists.aspx?wd=ECON2101" title="ECON2101"> econ2101 </a> <a href="Lists.aspx?wd=MSINM014/MSING014/MSING014B" title="MSINM014/MSING014/MSING014B"> msinm014/msing014/msing014b </a> <a href="Lists.aspx?wd=FIT2004" title="FIT2004"> fit2004 </a> <a href="Lists.aspx?wd=COMP643" title="COMP643"> comp643 </a> <a href="Lists.aspx?wd=BU1002" title="BU1002"> bu1002 </a> <a href="Lists.aspx?wd=CM2030" title="CM2030"> cm2030 </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>