Category: Websites, web programming

App project

This project should take no more than a week to do. CSS framework,

The user should be able to list, create, update and delete a list of contacts. The page should be
properly styled. The screenshot is an example showing the basic styles. Feel free to change the
style to whatever you like

Dynamic website

INSTRUCTIONS
The aim of this assignment is to implement and deploy a website for a business/ organisation which you presented for your coursework last semester (you can choose to adapt your original proposal), or for a different venture. Your website should be implemented using the Flask microframework1, and be deployed on the Schools OpenShift.
The website should allow the customers to browse through the available goods (i.e. products or services), view their price and all other relevant information, allow the customers to add the goods to the shopping basket, and finally view the basket (display all selected items and their total price) and allow the customer to enter payment details. It is not required to implement the actual payment mechanism.
Structure of the Webs

Storyboard and sitemapsEvaluation

Hi I need a storyboard and a website designed for a project, The instructions specify possible topics, but I have no preference for any of them as long as the assignment looks good.

I have attached the assignments instructions that my professor has given me. Thank you in advance.

custom website CSS

This assignment is for custom CSS in a website, I have attached screenshots of what I would like it to look like for mobile and desktop versions. I don’t need perfection. I need to give you access to the WordPress. The current website address is: https://switchback.uptainphoto.com/

Let me know what else you need. Price can be changed

custom website CSS

This assignment is for custom CSS in a website, I have attached screenshots of what I would like it to look like for mobile and desktop versions. I don’t need perfection. I need to give you access to the WordPress. The current website address is: https://switchback.uptainphoto.com/

Let me know what else you need.

Practice Java Program (handling File IO)

Hello! This is a practice assigment that handles File IO, and arrays. The attached pdf includes how to set up each class. The deliverables will be Book.java, Catalog.java, Employee.java, Patrol.java, User.java, and UnsupportedFileException.java.

Also for each of the methods, the description of what it must due will be listed on the right. Let me know if you have trouble understanding the pdf!

Some of the classes are merely set up.

Given: LibraryLocalTest.java

PDF with Directions: https://drive.google.com/file/d/1Azcny9iI8bMBLHbuwx6Td3nVY8_aIoAv/view?usp=sharing

Creating a social media marketplace

So I need a web application which will be a social media like marketpalce. Itll be most like Deepop. I need there to be users who can log on and log off. They can upload pictures of items they would like to sell. Other users can message them to purchase those products. Users can also message and follow each other.

Desirable:
Sign up function
Log in and log off function
Change password
Post and delete pictures
Users can follow and unfollow each other
Users page which will show, followers, following and posts of that user
Have a home page which will show all items as a feed posted by people users follow
A way of searching items, be by hashtags, filters, or just typing
Explore page where users can see all items being listed
Pay each other through payPal for item
Users can message each other

Must:
Sign up function
Log in and log off function
Change password
Post and delete pictures
Users can follow and unfollow each other
Users profile page which will show the followers, following and posts of that user
Have a home page which will show all items as a feed posted by people users follow
A way of searching items, be by hashtags, filters.
Users can message each other

Javascript

This week’s exercise is to design a program for node.js that calculates paychecks for a small business. The program must read the two files “wages.csv” and “hours.csv” which are 2 column CSV files, an employee name and a number. In the case of “wages.csv” the number represents the hourly wage. In the case of “hours.csv” the number represents the number of hours worked in the last pay period. Some names in “wages.csv” may not be present in “hours.csv” (in case the employee has not worked). The program must produce the file “report.txt” with a line for each employee indicating the amount of the paycheck of this employee. Here are examples of “wages.csv”, “hours.csv” and “rapport.txt” files:

“wages.csv” file

Jean Dubuc, 25
Anne Gadbois, 20
Julie Tremblay, 40
Paul Tremblay, 20
Marie Valois, 15

“hours.csv” file

Jean Dubuc, 70
Julie Tremblay, 60
Marie Valois, 80

File “rapport.txt”

Jean Dubuc: pay $ 1,750
Anne Gadbois: pay $ 0
Julie Tremblay: pay $ 2,400
Paul Tremblay: pay $ 0
Marie Valois: pay $ 1,200
Your program must use the read CSV function seen in class. Note that the program should start with a comment that gives your name, followed by the following definitions for the readFile and writeFile functions, needed in the node.js environment:

var fs = require (“fs”);
var assert = require (“assert”);

var readFile = function (path) {
    return fs.readFileSync (path) .toString ();
};
var writeFile = function (path, text) {
    fs.writeFileSync (path, text);
};
Write a testCheques unit test function that tests your functions. As usual, in addition to doing the requested processing correctly, your code must be correctly indented, it must contain explanatory comments and significant identifiers.

I suggest you use emacs to develop your code.

Simple caesar cipher encryption and decryption

Really simple. Should only take about 30 mins for an expert.
I need to submit a program caesar cipher encryption and decryption – using python.
I have attached the assignment sheet, please have a read and let me know. This is my first assignment and i want to present a good impression. Thank you for your time. Do email me if you have any questions.

The due date for this is 6 of April 11:59pm.

C# WPF Assignment

    1) An abstract Media class that contains the following properties: a string title, a string media type, a unique int serial number, an int for number of times lent, a boolean that indicates whether it is currently borrowed or available, and a string that represents the name of the library member currently borrowing the piece of media
    2) A Book class that inherits from Media and has a page count property
    3) A Magazine class that inherits from Book and has an issue number property
    4) A Movie class that inherits from Media and has a run time property
    5) A LibraryMember class that contains a string name property
    6) A static Library class that contains a collection of all of its media and a list of all its members
    7) Initialize your collection of media in Library to contain 5 books, 5 magazines, and 5 movies (you may pass whatever values you want into their constructors for title, page count, etc.)
    8) Initialize your collection of members in Library to contain 5 library members with names of your choosing.
    9) A DataGrid of all media in the library that shows their title, type, whether they are available or lent out, and who is currently borrowing them.
    10) A DataGrid of all library members in the library that shows their names.
    11) The ability to lend out available media. When media is lent out, a LibraryMember must be selected, and then the media display should reflect who is currently borrowing the media.
    12) The ability to have lent media brought back
    13) A popup that appears whenever media is lent or brought back, which says what has occurred. If the user tries to lend out an unavailable piece of media or tries to have media brought back that isnt lent out, the popup should tell the user what went wrong.
    14) A Modify Media button which, if a Media is currently selected when it is clicked, opens a new page. The new page should allow the user to modify the title and media type of the Media. This page should contain a submit button. When the submit button is clicked, the changes made to the title and media type should be applied to the actual Media object in the model, and we should be returned to the main window, where the changes that were made to the Media object should be reflected in the Media data grid.
    15) A Modify Member button which, if a LibraryMember is currently selected when it is clicked, opens a new page. The new page should allow the user to modify the name of the LibraryMember. This page should contain a submit button. When the submit button is clicked, the change made to the name should be applied to the actual LibraryMember object in the model, and we should be returned to the main window, where the changes that were made to the Librarymember object should be reflected in the LibraryMember data grid.
    16) Create a virtual function in Media called MediaInfo that returns a string that details the medias Title, MediaType, SerialNumber, IsAvailable, TimesLent and CurrentBorrower . Override this function in the Book, Magazine, and Movie classes. In each of these classes, the overridden function should first call the base function, and then add the string the base function returns to an additional string about PageCount, IssueNumber, or RunTime (for Book, Magazine, or Movie, respectively).
    17) Add a button to the WPF window that allows the user to display the info (the string returned by the function in the previous feature) of the currently-selected media in a popup.
    18) Add a list of Media called borrowHistory to the LibraryMember class. Make it so that whenever some media is lent out, the library member who is borrowing it has a reference to that media added to their borrowHistory list.
    19) Add a list of Media called currentlyBorrowed to the LibraryMember class. Make it so that whenever the library member borrows some media, a reference to that media is added to the currentlyBorrowed list, and when the library member returns some media, the reference to that media is removed from the currentlyBorrowed list.
    20) Add a function to the LibraryMember class called MemberInfo that returns a string that includes the members name, as well as a list of all the titles of media this member has ever borrowed, and finally a list of all the media titles the member is currently borrowing.
    21) Add a button to the WPF window that allows the user to display the info (the string returned by the function in the previous feature) of the currently-selected member in a popup.