From 51a11ee33dd9072339fcf2b2d3c0f46f28a53984 Mon Sep 17 00:00:00 2001 From: Daniel Jones Date: Wed, 8 May 2024 11:01:50 -0500 Subject: [PATCH] added more HTML, made scrolling slower so it is less zoom-y --- index.html | 73 +++++++++++++++++++++++++++--------------------------- main.js | 6 ++--- 2 files changed, 39 insertions(+), 40 deletions(-) diff --git a/index.html b/index.html index f6d69eb..8af2be1 100644 --- a/index.html +++ b/index.html @@ -7,8 +7,8 @@ Vite App - - + +
@@ -23,9 +23,9 @@

Projects:

    -
  • This website
  • +
  • This website
  • + Personal project (2024)
      - Personal project (2024)
    • Written in Javascript and uses the Node Package Manager
    • Utilizes three dimensional graphics to provide an interesting visual experience
    • Uses context-sensitive animations to provide interactivity
    • @@ -39,58 +39,57 @@

- - + +

-

Professional Experience:

+

Professional experience:

    -
  • Business Systems Analyst (2021 - current)
  • +
  • Systems Analyst
  • + LeTourneau University, Longview, Texas (2021 - current) +
    + Responsibilities:
      -
    • LeTourneau University, Longview, TX
    • +
    • Analyze, patch, and mitigate security vulnerabilities
    • +
    • Perform bug fixes in ASP.net web pages
    • +
    • Automate tasks on Debian Linux using Bash
    -
  • Help Desk Associate (2021)
  • -
      -
    • IT Yall, Dallas, TX
    • -
    +
  • Help Desk
  • + IT Yall, Dallas, TX(2021) +
    + Responsibilities: +
      +
    • task 1
    • +
    • task 2
    • +
    • task 3
    • +

- +

Education:

  • B.S. Information Systems (August 2017 - December 2020)
  • + LeTourneau University +
      +
    • Learned software engineering, encryption algorithms, and penetration testing methodologies
    • +
    • Designed software such as Pick-A-Student, Bouncer, and Paperwork Avalanche
    • +
    • Wrote and executed exploits for metasploitable OS
    • +
  • A.S. Business Management (January 2015 - May 2017)
  • +
      +
    • Took classes on Economics, Accounting, and leadership
    • +
    • Joined the Phi Theta Kappa society and regularly attended meetings
    • +
    • Earned the Deans List recognition in Fall of 2016
    • +
  • Homeschooled (September 2001 - May 2014)

-
-
-
-howdy -
-
-
-doody -
-
-
-every -
-
-
-body - - - - - - -
+ diff --git a/main.js b/main.js index cbd92ef..6f0bf63 100644 --- a/main.js +++ b/main.js @@ -2,7 +2,7 @@ Author: Daniel Jones IDE: VSCodium Browsers tested: Firefox 125 -Last change: 04/24/24 +Last change: 05/08/24 purpose: portfolio website to show to potential freelance customers/web developer positions */ @@ -52,7 +52,7 @@ pointLight.position.set(10, 10, 10); //const controls = new OrbitControls(camera, renderer.domElement); -//floor object that appears in the background +//floor object that appears in the background const floorTexture = new THREE.TextureLoader().load("marble.jpg"); floorTexture.wrapT = THREE.RepeatWrapping; floorTexture.wrapS = THREE.RepeatWrapping; @@ -69,7 +69,7 @@ scene.add(floor); //when the user scrolls, walk down the hallway. function updateCamera(ev){ let div1 = document.getElementById("div1"); - camera.position.z = 10 - window.scrollY; + camera.position.z = 100 - window.scrollY / 3; } window.addEventListener("scroll", updateCamera);