-
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
14 changed files
with
119 additions
and
115 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,79 @@ | ||
- name: Webserv 🎓 | ||
url: https://github.com/dda-cunh/webserv | ||
description: Implementation of a a non-blocking HTTP server. It supports GET, POST, and DELETE methods and can serve static files, handle CGI requests, and upload files. | ||
used: | ||
- thing: C++ | ||
- thing: HTTP | ||
- thing: Non-blocking I/O | ||
- thing: CGI | ||
- thing: File Upload | ||
|
||
- name: Inception 🎓 | ||
url: https://github.com/MrFacundo/42_Inception | ||
description: A multi-service application deployment project, using Docker and Docker-Compose. | ||
used: | ||
- thing: Docker | ||
- thing: Nginx | ||
- thing: MariaDB | ||
- thing: WordPress + php-fpm | ||
- thing: Adminer | ||
- thing: Redis | ||
- thing: FTP server | ||
|
||
- name: Cub3D 🎓 | ||
url: https://github.com/alexandremak/42_04-cub3d | ||
description: A minimalistic 3D game engine built in C, using the ray-casting technique. | ||
used: | ||
- thing: C | ||
- thing: Graphics programming | ||
- thing: Ray-casting | ||
- thing: Game development | ||
- thing: Graphic algorithms | ||
|
||
- name: Minishell 🎓 | ||
url: https://github.com/MrFacundo/42_Minishell | ||
description: A CLI shell program that features a set of basic functionalities, including pipes, redirections, variables and builtins. | ||
used: | ||
- thing: C | ||
- thing: Project Managment | ||
- thing: Shell Internals | ||
- thing: Parsing Techniques | ||
- thing: Syntax Trees | ||
- thing: Process Managment | ||
|
||
- name: Push Swap 🎓 | ||
url: https://github.com/MrFacundo/42_Push_Swap | ||
description: A program that sorts a given list of random numbers with a limited set of instructions, using the lowest possible number of actions. | ||
used: | ||
- thing: C | ||
- thing: Sorting Algorithms | ||
- thing: Complexity | ||
|
||
- name: Philosophers 🎓 | ||
url: https://github.com/MrFacundo/42-Philosophers | ||
description: An implementation of the dining philosophers problem in C. | ||
used: | ||
- thing: C | ||
- thing: POSIX Threads | ||
- thing: Parallel Computing | ||
- thing: Multi-threading | ||
- thing: Mutexes and Semaphores | ||
|
||
- name: So Long 🎓 | ||
url: https://github.com/MrFacundo/42_So_Long | ||
description: A very simple 2D graphic game built in C. | ||
used: | ||
- thing: C | ||
- thing: MiniLibX | ||
- thing: Graphics Managment | ||
- thing: Events | ||
- thing: Animations | ||
|
||
- name: Pipex 🎓 | ||
url: https://github.com/MrFacundo/42_Pipex | ||
description: An emulation of some bash internals in C, namely pipes and redirections. | ||
used: | ||
- thing: C | ||
- thing: Unix Prosesses | ||
- thing: System Calls | ||
- thing: Bash Basics |
File renamed without changes.
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 |
---|---|---|
|
@@ -8,4 +8,5 @@ | |
--alt Visit {{ include.project.name}} | ||
%} | ||
</a> | ||
|
||
</figure> |
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
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,24 @@ | ||
{% assign data = site.data[include.data_string] %} | ||
|
||
<section class="section non-featured"> | ||
<div class="section__title">{{ include.title }}</div> | ||
<div class="section__content"> | ||
{% for project in data %} | ||
<div class="project"> | ||
<div class="project__name"> | ||
{% if project.url %} | ||
<a href="{{ project.url }}" target="_blank" class="arrow-link">{{ project.name }}</a> | ||
{% else %} | ||
<p>{{ project.name }}</p> | ||
{% endif %} | ||
</div> | ||
<p>{{ project.description }}</p> | ||
<div class="project__used"> | ||
{% for item in project.used %} | ||
<span class="project__used__item">{{ item.thing }}</span> | ||
{% endfor %} | ||
</div> | ||
</div> | ||
{% endfor %} | ||
</div> | ||
</section> |
This file was deleted.
Oops, something went wrong.
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
2 changes: 1 addition & 1 deletion
2
_scss/partials/_featured-projects.scss → _scss/partials/_featured.scss
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
.featured-projects { | ||
.featured { | ||
.project { | ||
display: flex; | ||
margin-bottom: 100px; | ||
|
2 changes: 1 addition & 1 deletion
2
_scss/partials/_other-projects.scss → _scss/partials/_non-featured.scss
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
.other-projects { | ||
.non-featured { | ||
.project { | ||
max-width: 600px; | ||
margin-bottom: 50px; | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
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
Binary file not shown.