Skip to content

Instantly share code, notes, and snippets.

View nologyRob's full-sized avatar

Rob Hooper nologyRob

View GitHub Profile
{
"spaces": [
{
"index": 0,
"name": "GO",
"type": "Special"
},
{
"index": 1,
"name": "Old Kent Road",

Project Title: BankApp

Project Description

"BankApp" is a command line application that simulates a banking system, allowing users to perform various banking operations through a text-based interface. The application will provide functionalities such as creating and managing customer accounts, performing transactions, checking balances, and generating reports. The project aims to showcase the fundamental concepts of OOP and Java while providing a practical and user-friendly banking experience.

Project Requirements

  • Account Management

Post Course – Full Stack Project

Overview

This week we’re going to be building an Holiday Itinerary application, that allows you to share photos with friends/family whilst on holiday, and let them know what you are up to whilst there.

Goals

  • A functioning Itinerary: I should be able to upload photos and locations ands text etc about my days activities, so my family/friends can view them.
  • Pages
const harryPotter = [
{
id: "9e3f7ce4-b9a7-4244-b709-dae5c1f1d4a8",
name: "Harry Potter",
alternate_names: [],
species: "human",
gender: "male",
house: "Gryffindor",
dateOfBirth: "31-07-1980",
yearOfBirth: 1980,

Puffin Post-Course Challenge

Real Estate Property Inspection App

A popular real estate agency is looking at making their property inspection process easier for their agents to handle.

The would like a simple mobile website that their agents can do the following with:

  • Sign In
  • Sign Out
Do we need a 'first chunk of course' quiz/test?
Do we need to have a Java Technical Interview after the first week or second week of learning?
Could be good practice for interviews
Plug some more gaps
@nologyRob
nologyRob / pokemon-app.jsx
Created October 14, 2022 19:52
Pokemon App
import React, {useState,useEffect} from 'react'
import './App.css';
function App() {
const [pokemon, setPokemon] = useState([])
useEffect(()=>{
const pokeData = [
{
"id": 1,
"name": "bulbasaur",
"image": [
{
"back_default": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/back/1.png",
"back_female": null,
"back_shiny": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/back/shiny/1.png",
"back_shiny_female": null,