Skip to content

Commit

Permalink
- js
Browse files Browse the repository at this point in the history
  • Loading branch information
korah91 committed Sep 5, 2023
1 parent 4b73ba3 commit c67ab91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 13 deletions.
13 changes: 1 addition & 12 deletions pagina_web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,7 @@
Recent graduate in an internship researching to explore LLMs in DevOps and developing an innovative LLM app. Additionally, I'm preparing for the AWS Cloud Practitioner exam to enhance my skill set.
---
<div class="counter"></div>
<script>
const counter = document.querySelector(".counter-number");
async function updateCounter() {
let response = await fetch("https://piyzribk5n4wmjlnbcv3gtdtzm0vepxn.lambda-url.eu-west-3.on.aws/");
let data = await response.json();
counter.innerHTML = ` This page has ${data} Views!`;
console.log(`Se ha visitado la pagina ${data} veces`)
}

updateCounter();

</script>
<script src="main.js"></script>
---
## Professional Experience
### Researcher & Software Dev (Python/Streamlit/OpenAI)
Expand Down
2 changes: 1 addition & 1 deletion pagina_web/main.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const counter = document.querySelector(".counter-number");
const counter = document.querySelector(".counter");
async function updateCounter() {
let response = await fetch("https://piyzribk5n4wmjlnbcv3gtdtzm0vepxn.lambda-url.eu-west-3.on.aws/");
let data = await response.json();
Expand Down

0 comments on commit c67ab91

Please sign in to comment.