subject

This week is an activity week, so points for effort, not for correctness. you are about to break a lot of things. it is going to be easier for you to unbreak some things than it is to unbreak others. spend the time working on the things you have the most trouble with. make sure you can create sessions, add and update different kinds of data to sessions and end sessions. make sure you can make http requests, including posts, from the server and deal with the data you get back. make sure that you can set up pages to accept data from forms. make sure you can handle nested asynchronous requests and process errors if they crop up (force errors to happen by doing things like entering in the wrong url). as an example mini project that would cross off several of these at once (you don't need to do this, but if you need inspiration feel free to use it) , you could extend the to-do list application. allow the user to add to-do items, the cities those to-do items need to happen in and minimum temperatures. then make http calls to open weather map to check if the weather is good enough right now to do them. if it is, highlight it in green, if not highlight it in red. this will check you understanding of sessions, making many http requests and dealing with json returned by the server. you would still want to make sure you can make http posts from the server but if you did that all your bases will be covered. deliverables

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 03:10
This program reads a file called 'test.txt'. you are required to write two functions that build a wordlist out of all of the words found in the file and print all of the unique words found in the file. remove punctuations using 'string.punctuation' and 'strip()' before adding words to the wordlist. write a function build_wordlist() that takes a 'file pointer' as an argument and reads the contents, builds the wordlist after removing punctuations, and then returns the wordlist. another function find_unique() will take this wordlist as a parameter and return another wordlist comprising of all unique words found in the wordlist. example: contents of 'test.txt': test file another line in the test file output: ['another', 'file', 'in', 'line', 'test', 'the']
Answers: 1
question
Computers and Technology, 22.06.2019 14:30
Create a pseudocode design to prompt a student for their student id and the titles of the three classes they want to add. the solution should display the student’s id and a total bill. • bill a student using the following rules: o students can only add up to 3 classes at a time.
Answers: 3
question
Computers and Technology, 22.06.2019 23:00
Which factor is the most important when choosing a website host? whether customers will make secure transactions the number of email accounts provided the purpose of the website the quality of the host control panel
Answers: 3
question
Computers and Technology, 24.06.2019 11:20
Print "censored" if userinput contains the word "darn", else print userinput. end with newline. ex: if userinput is "that darn cat.", then output is: censoredex: if userinput is "dang, that was scary! ", then output is: dang, that was scary! note: if the submitted code has an out-of-range access, the system will stop running the code after a few seconds, and report "program end never reached." the system doesn't print the test case that caused the reported message.#include #include using namespace std; int main() {string userinput; getline(cin, userinput); int ispresent = userinput.find("darn"); if (ispresent > 0){cout < < "censored" < < endl; /* your solution goes here */return 0; }
Answers: 3
You know the right answer?
This week is an activity week, so points for effort, not for correctness. you are about to break a l...
Questions
question
History, 23.07.2019 10:10
Questions on the website: 13722363