diff --git a/.nfs0000000002e4ae7d00006849 b/.nfs0000000002e4ae7d00006849 new file mode 100644 index 0000000000000000000000000000000000000000..89db5d3926f6edcc02cc99c9429c3f89aa226f07 Binary files /dev/null and b/.nfs0000000002e4ae7d00006849 differ diff --git a/Products.java b/Products.java index b8a00925e92b6b9ec20e26403d1b6f275ff953d4..3aec4d3562ca1e7bab73ac93c254643652df2775 100644 --- a/Products.java +++ b/Products.java @@ -1,6 +1,38 @@ /* check out these products! */ public class Products { /* a good class, but not as good as cse391 */ + + public Product boschenProduct() { + return new Product( + "sleepCoke", + "It will help you a nice sleep", + "sleepCoke.jpg", + "really good, has sleepy coffine", + 9.98 + ); + } + + + public Product benoreProduct() { + return new Product( + "Taylor Swift - Folklore Vinyl", + "A vinyl containing the deluxe edition of Taylor Swift's Grammy-winning FFolklore album.", + "folkloreac.png", + "The album cover for Taylor Swift's folklore album.", + 29.99 + ); + } + + public Product ekimji1Product() { + return new Product( + "Gudetama", + "perfect", + "gudetama.jpg", + "Lazy egg", + 1000.0 + ); + } + public Product kevinh33Product() { return new Product( "Duolingo owl", @@ -71,6 +103,16 @@ public class Products { /* a good class, but not as good as cse391 */ ); } + public Product akshitasProduct() { + return new Product( + "Lake", + "Pretty lake by the mountains", + "Lake.jpg", + "Image of a snowy lake with moutains in the background", + 5.99 + ); + } + public Product kevluoyrsProduct() { return new Product( "Blindr", @@ -661,6 +703,16 @@ public class Products { /* a good class, but not as good as cse391 */ "Picture of Intel Processor", 589.00 ); + } + + public Product sjeyteProduct() { + return new Product( + "AMD Ryzen 7 7800X3D", + "Best gaming chip currently!", + "7800x3d.jpeg", + "Picture of the AMD processor.", + 449.00 + ); } @@ -735,14 +787,23 @@ public class Products { /* a good class, but not as good as cse391 */ ); } - - public Product shangy24Product() { + public Product tonywuProduct() { return new Product( - "Windows 10 Pro", - "An operating system made by Microsoft", - "win10.jpg", - "Windows 10 Default Wallpaper", - 199.99 + "Giant Tree", + "Giant Tree, kind of looks weird. Price won't cause floating point error.", + "Tree.webp", + "Big Tree", + 15000000000000000000000000000000000000000000001.00 ); + + } + public Product pranavntProduct() { + return new Product( + "Celsius Essentials 1000 pack", + "1000 pack of celsius essentials. will keep you awake.", + "celsius-picture.png", + "Celsius Essentials", + 1000.0 + ); } } \ No newline at end of file diff --git a/Staff.java b/Staff.java index 130175fb6bc54e943d2c333ed4cf17d8e31466ad..8f9762388f86088e57cb32e85383e4dd0ee6c5c6 100644 --- a/Staff.java +++ b/Staff.java @@ -1,5 +1,34 @@ public class Staff { + + + public Employee boschen() { + return new Employee( + "Boshan Chen", + "Sleeper", + "Sleep and stare blankly", + "White.jpg", + "umm.." + ); + } + public Employee ekimji() { + return new Employee( + "Esther", + "student", + "local point demon", + "gudetama.jpg", + "gudetama with balloon" + ); + } + public Employee benore() { + return new Employee("Ben", + "Student", + "Computer Science student", + "benore.jpg", + "Picture of Ben Oreizy"); + } + + public Employee cuperido() { return new Employee( "Young You", @@ -213,7 +242,16 @@ public class Staff { "Alpaca with dandelion hair" ); } - + + public Employee akshiam() { + return new Employee( + "Akshita", + "Student", + "Learning", + "MountainSunset.jpg", + "Husky Winter Sports members watching the sunset on a mountain" + ); + } public Employee pbui27() { return new Employee( "Peter", @@ -693,6 +731,16 @@ public class Staff { ); } + public Employee sjeyte() { + return new Employee( + "Sulyman", + "Student", + "Academic comeback season!", + "lebron.jpeg", + "Picture of LeBron down 3-1 in the Finals." + ); + } + public Employee ggsmadhu(){ return new Employee( "Madhumitha", @@ -760,15 +808,23 @@ public class Staff { "Hello Kitty" ); } - - public Employee shangy24() { + public Employee tonywu() { + return new Employee( + "Tony", + "Student", + "Student in CSE", + "NormanRockwell.jpg", + "Norman Rockwell Self-Portrait" + ); + } + public Employee pranavnt() { return new Employee( - "Shangzhen Yang", - "Student", - "Hello, World!", - "your-name.jpg", - "Wallpaper of Movie Your Name" - ); + "Pranav", + "Student", + "i like celsius", + "celsius-picture.png", + "celsius picture" + ); } } diff --git a/images/products/7800x3d.jpeg b/images/products/7800x3d.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..e50beb98abe1aa991cdb9f2f1f5ff1426679e89c Binary files /dev/null and b/images/products/7800x3d.jpeg differ diff --git a/images/products/Lake.jpg b/images/products/Lake.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2227fcf5daa56633f2cdbb68168d99ec06ad3468 Binary files /dev/null and b/images/products/Lake.jpg differ diff --git a/images/products/Tree.webp b/images/products/Tree.webp new file mode 100644 index 0000000000000000000000000000000000000000..e209a1d67994423ec54ee1f48944518f4437811f Binary files /dev/null and b/images/products/Tree.webp differ diff --git a/images/products/chocolate_ice_cream.jpg b/images/products/chocolate_ice_cream.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a987e0df5e5481998694eacb2f9bc66f07ebf95f Binary files /dev/null and b/images/products/chocolate_ice_cream.jpg differ diff --git a/images/products/folkloreac.png b/images/products/folkloreac.png new file mode 100644 index 0000000000000000000000000000000000000000..a697000ae5f54f2532f8a7a1d2b842e50ff86e56 Binary files /dev/null and b/images/products/folkloreac.png differ diff --git a/images/products/gudetama.jpg b/images/products/gudetama.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1bde2dc77c41a171a9b25223e52acd05fa844e38 Binary files /dev/null and b/images/products/gudetama.jpg differ diff --git a/images/products/meowchi.jpeg b/images/products/meowchi.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..30740e2ce513b0d33660d8addfedb7026aefc2cc Binary files /dev/null and b/images/products/meowchi.jpeg differ diff --git a/images/products/sleepCoke.jpg b/images/products/sleepCoke.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d5d63588eaae1e81df9d51c6f3bcf63ce5ac7cbf Binary files /dev/null and b/images/products/sleepCoke.jpg differ diff --git a/images/staff/MountainSunset.jpg b/images/staff/MountainSunset.jpg new file mode 100644 index 0000000000000000000000000000000000000000..764b8cf3831f7c79c7c4c8cee087bca9e8559f6c Binary files /dev/null and b/images/staff/MountainSunset.jpg differ diff --git a/images/staff/NormanRockwell.jpg b/images/staff/NormanRockwell.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e55c408e0d25c729e941a52c35dc2dec7d6d7ff0 Binary files /dev/null and b/images/staff/NormanRockwell.jpg differ diff --git a/images/staff/White.jpg b/images/staff/White.jpg new file mode 100644 index 0000000000000000000000000000000000000000..02311af9a72dfe8655879816d283bafbd0aa2dad Binary files /dev/null and b/images/staff/White.jpg differ diff --git a/images/staff/animegeek.jpeg b/images/staff/animegeek.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..4e32c8eb67849327603bf124014108e7cc241ab6 Binary files /dev/null and b/images/staff/animegeek.jpeg differ diff --git a/images/staff/benore.jpg b/images/staff/benore.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a933942218a92ea43bd1d8075f97957d9fbc0272 Binary files /dev/null and b/images/staff/benore.jpg differ diff --git a/images/staff/celsius-picture.png b/images/staff/celsius-picture.png new file mode 100644 index 0000000000000000000000000000000000000000..4d6c76600006cdeee743a913a91679dd23afe994 Binary files /dev/null and b/images/staff/celsius-picture.png differ diff --git a/images/staff/gudetama.jpg b/images/staff/gudetama.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1bde2dc77c41a171a9b25223e52acd05fa844e38 Binary files /dev/null and b/images/staff/gudetama.jpg differ diff --git a/images/staff/lebron.jpeg b/images/staff/lebron.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..1348c9e9cab1996599f5626f3ac35b95498ae9a4 Binary files /dev/null and b/images/staff/lebron.jpeg differ diff --git a/images/staff/tired_dog.jpg b/images/staff/tired_dog.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9a62244a0a22839ad420567a19265a47ed649209 Binary files /dev/null and b/images/staff/tired_dog.jpg differ