-
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
Showing
4 changed files
with
122 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
<!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="Start your development with Meyawo landing page."> | ||
<meta name="author" content="Devcrud"> | ||
<title>Blog Yeray da Silva</title> | ||
<!-- font icons --> | ||
<link rel="stylesheet" href="assets/vendors/themify-icons/css/themify-icons.css"> | ||
<!-- Bootstrap + Meyawo main styles --> | ||
<link rel="stylesheet" href="assets/css/meyawo.css"> | ||
</head> | ||
|
||
<body data-spy="scroll" data-target=".navbar" data-offset="40" id="home"> | ||
|
||
<!-- Page Navbar --> | ||
<nav class="custom-navbar" data-spy="affix" data-offset-top="20"> | ||
<div class="container"> | ||
<a class="logo" href="#">My Work Blog</a> | ||
<ul class="nav"> | ||
<li class="item"> | ||
<a class="link" href="#home">Home</a> | ||
</li> | ||
<li class="item"> | ||
<a class="link" href="#about">About</a> | ||
</li> | ||
<li class="item"> | ||
<a class="link" href="#blog">Blog</a> | ||
</li> | ||
</ul> | ||
<a href="javascript:void(0)" id="nav-toggle" class="hamburger hamburger--elastic"> | ||
<div class="hamburger-box"> | ||
<div class="hamburger-inner"></div> | ||
</div> | ||
</a> | ||
</div> | ||
</nav><!-- End of Page Navbar --> | ||
|
||
|
||
|
||
<!-- blog section --> | ||
<section class="section" id="blog"> | ||
<!-- container --> | ||
<div class="container text-center"> | ||
<p class="section-subtitle">Task Progress</p> | ||
<h6 class="section-title mb-6">Blog</h6> | ||
|
||
<!-- blog-wrapper --> | ||
<div class="blog-card"> | ||
|
||
<div class="blog-card-body"> | ||
<h5 class="blog-card-title">Week 9 (April 1st - April 5th)</h6> | ||
<p> | ||
In this ninth week, I started by creating an issue on the Unibotics tutor's GitHub to document the changes I have been making over the weeks, | ||
in order to add version 2.0 of the tutor to GitHub, which includes the REACT webpage with the Django server. After creating the issue, | ||
I created my own branch to integrate all the changes there. Once the branch was done, I created a new directory named V2.0 to preserve the previous data. | ||
Finally, I successfully made a Pull Request on GitHub. | ||
<br><br> | ||
Additionally, within this V2.0 directory, I added a README where I detailed everything I had done, explaining each step and its purpose. | ||
<br><br> | ||
Midweek, I started integrating this tutor I had created into the Unibotics D1 deployment. | ||
I initially struggled as I encountered many issues, to the point where I had the Tutor button on the Follow Line exercise, which when clicked, opened a window to submit a question. | ||
Although the question was saved and sent to the server, I couldn't get the response to display on screen. | ||
<br> | ||
<div style="text-align: center;"> | ||
<img src="assets/imgs/tutorCerradoD1.png" alt="" width="500"> | ||
</div> | ||
<br> | ||
Finally, after spending a long time trying, I managed to solve it; I was using an incompatible version of TensorFlow which prevented anything from displaying on screen. | ||
It's worth noting that I have been focusing on the technical aspect, so I still need to refine the visual aspect of the integrated tutor. | ||
<br> | ||
<div style="text-align: center;"> | ||
<img src="assets/imgs/tutorAbiertoD1.png" alt="" width="400"> | ||
</div> | ||
<br> | ||
As with each week, I finish by updating the blog with another week's worth of progress. | ||
</p> | ||
|
||
</div> | ||
|
||
</div><!-- end of blog wrapper --> | ||
<a href="index.html#blog" class="btn btn-primary">Return</a> | ||
</div><!-- end of container --> | ||
</section><!-- end of blog section --> | ||
|
||
<!-- footer --> | ||
<div class="container"> | ||
<footer class="footer"> | ||
<p class="mb-0">Copyright | ||
<script>document.write(new Date().getFullYear())</script> © | ||
</p> | ||
<div class="social-links text-right m-auto ml-sm-auto"> | ||
<a href="https://github.com/YerayDS" class="link"><i class="ti-github"></i></a> | ||
<a href="https://www.linkedin.com/in/yeray-da-silva-3076a81b2/" class="link"><i class="ti-linkedin"></i></a> | ||
</div> | ||
<a href="https://jderobot.github.io/"> | ||
<img src="logo.png" class="about-img" width="75"> | ||
</a> | ||
</footer> | ||
</div> <!-- end of page footer --> | ||
|
||
<!-- core --> | ||
<script src="assets/vendors/jquery/jquery-3.4.1.js"></script> | ||
<script src="assets/vendors/bootstrap/bootstrap.bundle.js"></script> | ||
|
||
<!-- bootstrap 3 affix --> | ||
<script src="assets/vendors/bootstrap/bootstrap.affix.js"></script> | ||
|
||
<!-- Meyawo js --> | ||
<script src="assets/js/meyawo.js"></script> | ||
|
||
</body> | ||
|
||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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