Newsfeed page:
Newsfeed
Takes dummy data from predefined list of posts
Renders a random new post every 15 seconds to the top of the page
Once the number of posts on page reaches 10, the bottom-most post is removed as a new post is rendered
Cracker Barrel restaurants typically set out a free table game called Peg Triangle Solitaire.
For this assignment, you will implement a similar game that we shall call DigiPeg Solitaire. In DigiPeg Solitaire, the user can specify how many rows [1-9] and how many columns [1-9] the board should have.
In DigiPeg Solitaire, pegs can jump over an adjacent peg into an empty space. The jumping peg, the adjacent peg, and the empty space must be in a straight line as in Peg Triangle Solitaire. The potential direction for a peg to jump is over, under, left, or right.
When a jump is made the adjacent peg (the peg that was jumped over) is removed.
The game is over when no more moves are possible.
When 2 or fewer pegs remain when the game ends, the message You're a DigiPeg Genius!
When 3 or 4 pegs remain, the message Not too shabby, rookie.
When 5 or 6 pegs remain, the message That's nothing to write home about.
When 7 or more pegs remain, the mess
The user should be prompted for a song and its artist, then another song and its artist.The playlist should be displayed by alphabetical order of the artists(a song by Beyonce would come before a song by Jay Z).Finally, the program should suggest a new song title (which is the two song titles put together). All the Instructions are given for all the required functions.
Assignment Instructions
# This is the flower box and it should at the beginning of each assignment
# You must add comments to your code
# Program name : Wk3_firstname_lastname.py
# Student Name : Chris Sinfuego
# Course : ENTD220
# Instructor : My Instructor
# Date : Any Day
# Description : This code will ..
# Copy Wrong : This is my work
You are going to enhance the prior assignment by doing the following:-
1) Create a function for each math operation (add, div, mult, sub)
2) The application will run forever, you will ask the user to continue or not.
3) create a function IsinRange() to test a value between two ranges like this;
Here is the spec in pseudo code
IsInRanhe(lr
Base Class
Write an Account class containing an instance variable called balance with an accessor called getBalance and mutators called deposit and withdraw. To allow members of the Account class to be sorted, implement the java.lang.Comparableinterface to compare two accounts using balance.
Derived Classes
Create two subclasses of Account calledSavingsAccount and CheckingAccount. SavingsAccount will add an instance variable called interest to store interest percentage and a mutator method for increasing its balance by applying the interest called compound().
CheckingAccount will keep track of check numbers using an instance variable called nextCheckNumber starting with 1000. It will have a method called orderChecks that increments the current check number instance variable by 1000.
To facilitate displaying account information each of these accounts should override the toString() method from the java.lang.Object class.
Driver
All of your classes should include
Opacities in the lungs caused by pneumonia
In spring of 2020, the spread of COVID-19 caused hundreds of thousands of deaths world wide due to the severe pneumonia in combination of immune system reactions to it. Your job is to develop an AI system that detects pneumonia. Doctors are reluctant to accept black box algorithms such as your deep learning based method - as an AI engineer you need to listen to them and try to satisfy their needs, they are your customer after all. They tell you that your automated diagnostic system that processes the imaging they give you, must be explainable.
They give you the COVID X-ray / CT Imaging dataset and:
First you find this this implementation of the method called Local Interpretable Model-Agnostic Explanations (i.e. LIME). You also read this article and you get your hands dirty and replicate the results in your colab notebook with GPU enabled kernel(40%).
A fellow AI engineer, tells you about anot
All instructions are included in the handout as an HTML file, be sure to read through it as there is an additional step with leaving adequate tests. Please leave comments where needed. Do not use extremely advance concepts if not necessary, the more simple the better. Make sure to test code to ensure everything is to-order for when it gets tested by an autograder.
Select an industry of your choice and review its compliance requirements. Then, using a fictitious company that is just starting out, identify the essential elements of what is required to attain compliance or successful cybersecurity resilience. Within a report to the CIO, present this information from a legal standpoint making sure to address the following:
1. Identify any industry specific compliances that must be met (i.e., HIPAA, COPPA, DOD). Determine what overarching guidance they must comply with. Determine what overarching laws they must comply with.
2. Examine the requisite set of standards, frameworks, policies, and best practices most helpful in the development and implementation of the organizations objectives.
3. Identify the organization's critical data infrastructure assets (i.e., network, telecom, utilities, applications, computers and client data categories).
4. Identify human resourc
All instructions given in attached pdf, just code in whatever regular IDE you use,
Ignore the due date that says March 1, it's not accurate
Also ignore the instructions at the bottom for creating the makefile for compiling, I will do that.
Am also attaching pdf of 'style guide' you need to follow for what you're allowed to do and not allowed to do when programming (certain functions etc are not allowed etc)
Overall Requirements: A. If you are going to use more than one line of code to do something. It needs to be a method. B. Nothing should show an error when it is clicked unless it is a planned error. Specific Requirements: 1. The Load Key Button will (A,B,&C should be Methods): A. Open the file containing the key (Or tell me that the load cancelled with a popup) B. Read that file into an array (20 characters long). C. Close the File. D. Change the label to tell me that a key has loaded (Or tell me that the read failed with a popup). 2. The Grade Exam Button will (A,B,C,&E should be Methods, A&C should be the SAME methods as in step 1): A. Open the file containing the answer sheet (Or tell me that the load cancelled with a popup). B. Read the file into an array (20 characters long). C. Close the file. D. Compare the answer array to the key array. (See 3) E. Assign a letter grade. (See 4) 3. The method for D in Step 2 will: A. Tell me if both arrays are equal length. B.