-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6465691
commit 155de03
Showing
2 changed files
with
101 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" /> | ||
<meta name="description" content="" /> | ||
<meta name="author" content="" /> | ||
<title>María Busto Work Blog</title> | ||
<link rel="icon" type="image/x-icon" href="assets/logo.png" /> | ||
<!-- Core theme CSS (includes Bootstrap)--> | ||
<link href="css/styles.css" rel="stylesheet" /> | ||
</head> | ||
<body id="page-top"> | ||
<!-- Navigation--> | ||
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top" id="mainNav"> | ||
<div class="container px-4"> | ||
<a class="navbar-brand" href="#page-top">My Work Blog - JdeRobot Internship</a> | ||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button> | ||
<div class="collapse navbar-collapse" id="navbarResponsive"> | ||
<ul class="navbar-nav ms-auto"> | ||
<li class="nav-item"><a class="nav-link" href="#week">Week 17</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
</nav> | ||
<!-- Header--> | ||
<header class="bg-primary bg-gradient text-white"> | ||
<div class="container px-4 text-center"> | ||
<h1 class="fw-bolder">Welcome to my internship work blog!</h1> | ||
<p class="lead">In this blog, I'll be posting about my experience as an intern at JdeRobot.</p> | ||
<!-- | ||
<a class="btn btn-lg btn-light" href="#about">Take a look!</a> | ||
--> | ||
</div> | ||
</header> | ||
<!-- Week Post section--> | ||
<section id="week"> | ||
<div class="container px-4"> | ||
<div class="row gx-4 justify-content-center"> | ||
<div class="col-lg-8"> | ||
<h2>Week 17 (September 9th - September 13th)</h2> | ||
<p class="blog-post-meta">October 3rd, 2024 by <a href="https://github.com/mariabusto">María Busto Ramos</a></p> | ||
<p class="lead" align="justify">Here are the tasks I have been working on during this 17th week of internship at JdeRobot: </p> | ||
|
||
<ul class="errors-list" align="justify"> | ||
<li align="justify"><a>First, I have reviewed the update of an existing Robotics Academy deployment with Node 17 and added the explanatory note about this in the documentation.</a> | ||
</li> | ||
|
||
<br> | ||
|
||
<li><a>Also, I have completed the migration from node-sass to sass in RA and tested the exercises in both developer and user mode with scripts and docker-compose to confirm that everything works properly in RA with sass. In principle, everything works well. Therefore, I have opened a Pull Request and Carlos has reviewed it. With this, the issue has been closed.</a></li> | ||
|
||
<br> | ||
|
||
<li><a>On the other hand, I have again continued with Unibotics’ automatic evaluation issue. I have noticed that the style evaluation is already patched from old commits.</a> | ||
|
||
<br> | ||
<br> | ||
|
||
<a>As for the efficacy evaluation, I have managed to fixed it in the Vacuum Cleaner exercise by moving the specific code of Unibotics from the submodule to the folder uniboticsExtra of Unibotics. With this, I have to finish doing more testing and duplicate the solution to the Localized Vacuum Cleaner case to end up with the efficacy evaluation problem in the case of vacuum cleaners exercises.</a> | ||
|
||
<br> | ||
<br> | ||
|
||
<a>Regarding the efficacy evaluation in Follow Line, I have not been able to progress with it.</a> | ||
|
||
</li> | ||
|
||
<br> | ||
|
||
<li><a>Finally, I have reviewed the use of ports in the efficacy evaluation to see if port 7164 was being used for this and found that, in the case of the style evaluation, this port is being used to mount the corresponding request.</a></li> | ||
</ul> | ||
|
||
|
||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
<!-- Final Logos section--> | ||
<section class="bg-light" id="logos"> | ||
<div class="container px-4"> | ||
<div class="row gx-4 justify-content-center"> | ||
<container class="img-container" align="center"> | ||
<img class="jderobot-img" alt="JdeRobot logo" width=150px height=150px src="assets/logo.png"/> | ||
<img class="urjc-etsii-img" alt="URJC and ETSII logo" width=350px height=80px src="assets/urjc-etsii-logo.png"/> | ||
</container> | ||
</div> | ||
</div> | ||
</section> | ||
<!-- Footer--> | ||
<footer class="py-5 bg-dark"> | ||
<div class="container px-4"><p class="m-0 text-center text-white">Copyright © Your Website 2024</p></div> | ||
<div class="container px-4"><a class="m-0 text-center text-white" href="https://startbootstrap.com/template/scrolling-nav">Template obtained from Start Bootstrap</a></div> | ||
</footer> | ||
<!-- Bootstrap core JS--> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script> | ||
<!-- Core theme JS--> | ||
<script src="js/scripts.js"></script> | ||
</body> | ||
</html> |