Hi, I need JavaScript code and corresponding HTML code to do the following:
The first step will be to create a List (see attached word doc for prev List code to use, this doubly-linked list, you can use this or single link list).
Next you will need to research and find a suitable Hash function. Here is a simple version of a Hash Function.
Put in A (any length) and get out B (fixed length). If the input is the same, the output is always the same. Most Hash Functions always give an output of the same length. Of course there is always the possibility of a Hash Collision where 2 inputs give the same output (in fact that is the basis of Cryptocurrency mining). The probability of an output B being the same for multiple inputs A is a direct function of the length of B and the number of characters in B.
Please use SHA-1 ( http://www.sha1-online.com/ );
Once you have a list and a hash function – we will use it to create a Password System.
Your interface will include 2 Text boxes;
Add Password To List [ Text input ] Submit
Check For Password [ Text Input ] Submit
The first submit will Add the HASHED version of the Password as a Node in your list.
The second submit will Hash the second text box and compare it against all the values in the list. If it is in the List you will Output “Password Found†if it is not in the list output “Not Foundâ€
You should also print the full list to the screen. This should obviously only display the hashed version of the passwords.
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
can someone help 12
/in Uncategorized /by developerCould consciousness be explained in scientific terms?
In other words, could this essential first-person or subjective viewpoint — one that we all have on ourselves! — be explained in the third-person or objective terms of science? Or is there something about consciousness that somewhat necessarily escapes scientific understanding?
On one side, David Chalmers and Bernard Kastrup argue that phenomenal consciousness (how things seem to us when we are aware of them) is a real problem for science, or at least for any scientific worldview which regards matter, energy, and space time as what’s fundamentally real (see: https://plato.stanford.edu/entries/naturalism/). On the other side, Daniel Dennett and Keith Frankish defend a view that they call “illusionism”: that consciousness as conceptualized in terms direct awareness of qualia is deeply mistaken.
What do you see as the main points in favor of the qualia-conception of consciousness and the functional conception of consciousness? Do you think it makes sense that there could be (logically speaking!) “zombies”: beings that act and talk exactly as we do, but without any awareness at all? What could a science of consciousness look like? Do you think that “neurophenomenology” is a good method for a scientific investigation of consciousness? Why or why not?
* answer the questions that are bold in one or two paragraphs. pls make it easy and do not use any complicate words or sentences
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
anthro 101 could it be that body fat has more to do with biological processes than personal choices
/in Uncategorized /by developerCould it be that body fat has more to do with biological processes than personal choices?
THE TRUTH ABOUT FAT
Please write a paragraph about 250 words.
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
management essay 17
/in Uncategorized /by developerWrite an essay about the differences in Culture and Diversity at the workplace. with all characteristics of strong culture in the organization. Please refer to textbook chapter-15. Use APA style, examples, peer-reviewed journals to support your answer. This essay must be at least 1000-word in length.
Attachment :
1-Assignment file with name MGT301- Assignment 3-2nd Term-2020-Questions – 2
2-Textbook chapter 15 which can be useful
3-Assignment rubrics with name MGT301-Assignment 3 rubrics.docx which must be applied
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
personas and positioning statements 2 pages
/in Uncategorized /by developerAudience Personas help paint an accurate, research-based picture of your target audience. For this assignment, you will be creating attitudinal personas representative of the target audience for the Husqvarna robotic lawn mower (Learn More: https://www.husqvarna.com/us/products/robotic-lawn…). Using the segmentation strategies outlined in your textbook, come up with an “ideal customer†for this product, and write a persona profile (1 page). Include demographic data, but also dig deeper. Name your persona, give him or her a job, hobbies, media consumption habits, etc.
Then, write a positioning statement for the product that would appeal to your target persona. (1 Page)
Resources:
https://www.marketingprofs.com/articles/2019/41359…
https://www.entrepreneur.com/article/253566
Podcast: https://www.convinceandconvert.com/podcasts/episod…
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
construct professional documents
/in Uncategorized /by developerInstructions
Throughout your career you will be asked to create several professional documents. Each time you must create a document written at the highest level of knowledge, grammar, spelling and capability.
For this assignment you are going to pick two of the three following documents and create them. Please follow the specific instructions for each type of document that you choose.
Action Plan – your employer has asked you to create an action plan for your professional development for the next year. You need to include some of the following information; conferences you will attend, what you will do to educate yourself in your field and any trainings you need to attend.
Resume/Cover Letter – obtain a job description that you will turn in with your resume and cover letter. Write the cover letter and resume, tailoring it to the job description you selected.
PowerPoint Problem Solution Plan – Pick a problem that is currently happening in your community, a school referendum, a city ordinance, a recent rise in crime, use your imagination in picking a topic. Create a PowerPoint Presentation that covers each of the following elements:
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
practical connection assignment 43
/in Uncategorized /by developerAt UC, it is a priority that students are provided with strong educational programs and courses that allow them to be servant-leaders in their disciplines and communities, linking research with practice and knowledge with ethical decision-making. This assignment is a written assignment where students will demonstrate how this course research has connected and put into practice within their own career.
Assignment:
Provide a reflection of at least 500 words (or 2 pages double spaced) of how the knowledge, skills, or theories of this course have been applied, or could be applied, in a practical manner to your current work environment. If you are not currently working, share times when you have or could observe these theories and knowledge could be applied to an employment opportunity in your field of study.
Requirements:
Provide a 500 word (or 2 pages double spaced) minimum reflection.
Use of proper APA formatting and citations. If supporting evidence from outside resources is used those must be properly cited.
Share a personal connection that identifies specific knowledge and theories from this course.
Demonstrate a connection to your current work environment. If you are not employed, demonstrate a connection to your desired work environment.
You should NOT, provide an overview of the assignments assigned in the course. The assignment asks that you reflect how the knowledge and skills obtained through meeting course objectives were applied or could be applied in the workplace.
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
javascript hashing passwords
/in Uncategorized /by developerHi, I need JavaScript code and corresponding HTML code to do the following:
The first step will be to create a List (see attached word doc for prev List code to use, this doubly-linked list, you can use this or single link list).
Next you will need to research and find a suitable Hash function. Here is a simple version of a Hash Function.
Put in A (any length) and get out B (fixed length). If the input is the same, the output is always the same. Most Hash Functions always give an output of the same length. Of course there is always the possibility of a Hash Collision where 2 inputs give the same output (in fact that is the basis of Cryptocurrency mining). The probability of an output B being the same for multiple inputs A is a direct function of the length of B and the number of characters in B.
Please use SHA-1 ( http://www.sha1-online.com/ );
Once you have a list and a hash function – we will use it to create a Password System.
Your interface will include 2 Text boxes;
Add Password To List [ Text input ] Submit
Check For Password [ Text Input ] Submit
The first submit will Add the HASHED version of the Password as a Node in your list.
The second submit will Hash the second text box and compare it against all the values in the list. If it is in the List you will Output “Password Found†if it is not in the list output “Not Foundâ€
You should also print the full list to the screen. This should obviously only display the hashed version of the passwords.
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
discussion board 1326
/in Uncategorized /by developerAnswer the following discussion board questions in DEPTH and DETAILS and use reliable updated resources and references:
“Comment on one of the key findings described in the Toner et al document.
Identify other funding sources for your hospital emergency management projects.”
Readings:
Toner E, Waldhorn R, Franco C, Courtney B, Rambhia K, Norwood A, Inglesby TV, O’Toole T. (2009). Hospitals rising to the challenge: The first five years of the U.S. hospital preparedness program and priorities going forward Prepared by the Center for Biosecurity of UPMC for the U.S. Department of Health and Human Services under Contract No. HHSO100200700038C.
U.S. Department of Health and Human Services Assistant Secretary for Preparedness and Response: Strategic Plan 2010 – 2015.
Review www.phe.gov/about/pages/default.aspx
Notes:
***APA sitation style
***Use only updated resources
***Use Additional Resources and IMPLEMENT your critical thinking into the discussion
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
business analysis 40
/in Uncategorized /by developerBased on Chapter 32 of AMERICANA, Finance, please watch and analyze the documentary
Becoming Warren Buffett
As you review and analyze….
Be sure to analyze. Students are often puzzled when their professors mark them down for summarizing or merely narrating rather than analyzing. What does it mean to analyze? In the narrow sense, to analyze
means to break down into parts and to study the interrelationships of those parts.
Historical analysis is critical; it evaluates sources, assigns significance to causes,
and weighs competing explanations. You might think of summary and analysis this way: Who, what, when,
and where are the stuff of summary; how, why, and to what effect are the stuff of analysis. Many students think that they have to give a long summary (to show the professor that they know the facts) before they get
to their analysis – select two or three themes or points or emphasis and support those themes/ points of emphasis with “direct quotes” from the documentaries.
A wise analysis may recall our old friends J.P. Morgan, Rockefeller, Jay Gould, Cornelius Vanderbilt , Secretary of the Treasury Mellon from the Gilded Age for comparison….
Many of us have written in the POCD framework (People/ Opportunity / Context/ Deal) …..this may be appropriate for a “finance” analysis.
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
1 the generation of artificial gametes 2 the ability to genome edit these gametes and 3 the capability of developing these into human beings in an environment completely outside of the body careful consideration must be made regarding the possible t
/in Uncategorized /by developerAs we have now covered at different points in the class, there are multiple sources of artificial gametes. This includes germline stem cells, such as spermatagonial stems cells in male testes, oogonial stem cells in the ovaries of women, and both male and female gametes generated from pluripotent stem cells, such as iPSCs. In addition, recent work has demonstrated the feasibility, in principle, of an artificial womb.
https://undark.org/2017/09/29/artificial-womb-ecto…
The article presented above discusses the range of ethical issues surrounding the use of the artificial womb, and to a lesser extent, combining this with artificial gametes. Thinking through the combination of 1) the generation of artificial gametes; 2) the ability to genome edit these gametes; and 3) the capability of developing these into human beings in an environment completely outside of the body, careful consideration must be made regarding the possible trajectory and the consequences of these advances.
Using the information you have gained in other sections of this course as well as in the article above, describe some of the potential benefits of these advanced technologies, as well as potential negative consequences. How should we, as a society, reasonable apply these or make these available? Are there situations where these are not to be used versus situations where withholding these would be unjust? Do some of the ethical arguments presented in the article regarding the artificial womb hold in reference to artificial gametes as well?
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"