Skip to content

Commit ab6945c

Browse files
author
marcelo
committed
modified some text
1 parent be4ed08 commit ab6945c

File tree

4 files changed

+22
-17
lines changed

4 files changed

+22
-17
lines changed

src/containers/Main.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ import SplashScreen from "./splashScreen/SplashScreen";
2020
import { splashScreen } from "../portfolio";
2121
import { StyleProvider } from "../contexts/StyleContext";
2222
import { useLocalStorage } from "../hooks/useLocalStorage";
23+
import { motion } from "framer-motion";
2324
import "./Main.scss";
2425

2526
const Main = () => {

src/containers/StartupProjects/StartupProjects.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
color: $cardSubtitle;
1313
width: 100%;
1414
text-align: justify;
15+
white-space: pre-wrap;
1516
}
1617

1718
.project-subtitle {

src/containers/skills/Skills.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import codingPerson from "../../assets/lottie/codingPerson";
77
import DisplayLottie from "../../components/displayLottie/DisplayLottie";
88
import StyleContext from "../../contexts/StyleContext";
99
import { Slide } from "react-awesome-reveal";
10+
import { motion } from "framer-motion";
1011
export default function Skills() {
1112
const { isDark } = useContext(StyleContext);
1213
if (!skillsSection.display) {

src/portfolio.js

Lines changed: 19 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,15 @@ https://fontawesome.com/icons?d=gallery */
6666
skillName: "Java",
6767
fontAwesomeClassname: "fab fa-java",
6868
category: "Programming Languages",
69-
description: "I first learned Java at university and have since used it in multiple projects throughout my career. One example is the Box Packing Optimization project.",
69+
description: "I first learned Java at university. Since that I have used it in multiple projects throughout my career." +
70+
"I feel very confident with the language. One example of a Java project is the Box Packing Optimization, where I developed a Java Spring Boot backend API system.",
7071
image: require("./assets/images/java-coffee-cup-logo--v2.png")
7172
},
7273
{
7374
skillName: "CSS",
7475
fontAwesomeClassname: "fab fa-css3-alt",
7576
category: "Programming Languages",
76-
description: "All my experience with CSS was gained while creating this website. You can compare it with the original template to see how much progress I have made.",
77+
description: "All my experience with CSS was gained while creating this website. You can compare it with the original template to see how much progress I have made! The link to the template is on the github README",
7778
image: require("./assets/images/CSS3_logo.svg.png")
7879
},
7980
{
@@ -87,27 +88,27 @@ https://fontawesome.com/icons?d=gallery */
8788
skillName: "C",
8889
fontAwesomeClassname: "fas fa-code",
8990
category: "Programming Languages",
90-
description: "I learned both C and C++ at university, focusing on programming fundamentals and program exploitation. I often apply this knowledge in binary exploitation Capture The Flag competitions.",
91+
description: "I learned both C and C++ at university, focusing on programming fundamentals and program exploitation. I often apply this knowledge for binary exploitation in Capture The Flag competitions.",
9192
image: require("./assets/images/C_Programming_Language.svg.png")
9293
},
9394
{
9495
skillName: "Haskell",
9596
fontAwesomeClassname: "fas fa-code",
9697
category: "Programming Languages",
97-
description: "I learned Haskell as part of a functional programming course at university. Although I have not used it since, the functional programming principles have strongly influenced the way I code.",
98+
description: "I learned Haskell as part of a functional programming course at university. Although I have not used it since, the functional programming principles have influenced the way I code.",
9899
image: require("./assets/images/Haskell-Logo.svg.png")
99100
},
100101
{
101102
skillName: "Assembly",
102103
fontAwesomeClassname: "fas fa-microchip",
103104
category: "Programming Languages",
104-
description: "I experimented with Assembly during a Processors course at university. My current knowledge mainly originates from working on binary exploitation challenges."
105+
description: "I experimented with Assembly during the Processors course at university. I keep using this knowledge when conducting binary anlaysis."
105106
},
106107
{
107108
skillName: "JavaScript",
108109
fontAwesomeClassname: "fab fa-js",
109110
category: "Programming Languages",
110-
description: "My main experience with JavaScript comes from developing this website, which allowed me to deepen my understanding of web development.",
111+
description: "My main experience with JavaScript comes from developing this website, which allowed me to deepen my understanding of web development. I still feel like a beginner but I can understand JS code.",
111112
image: require("./assets/images/javascript.png")
112113
},
113114
{
@@ -121,21 +122,21 @@ https://fontawesome.com/icons?d=gallery */
121122
skillName: "Git",
122123
fontAwesomeClassname: "fab fa-git-alt",
123124
category: "Tools",
124-
description: "Since discovering Git at university, I have used it in all my projects. I consider myself proficient in version control and collaborative development workflows.",
125+
description: "Since discovering Git at university, I have used it in all my projects. It has saved me many hours and costed me many other hours too. Nowadays, I consider myself proficient in version control and can manage collaborative development systems.",
125126
image: require("./assets/images/Git_icon.svg.png")
126127
},
127128
{
128129
skillName: "Docker",
129130
fontAwesomeClassname: "fab fa-docker",
130131
category: "Tools",
131-
description: "I have used Docker in several projects. Although I am not an expert, I am capable of configuring it and ensuring it functions efficiently.",
132+
description: "I have used Docker in some projects. Yet, I still have a lot of things to learn and would like to get the chance to do so.",
132133
image: require("./assets/images/docker.png")
133134
},
134135
{
135136
skillName: "LaTeX",
136137
fontAwesomeClassname: "fas fa-file-alt",
137138
category: "Tools",
138-
description: "I use LaTeX regularly for document creation, including reports and presentations, and I am very comfortable working with it.",
139+
description: "I use LaTeX regularly for document creation, including reports and presentations. I am very comfortable working with it.",
139140
image: require("./assets/images/latex.png")
140141
},
141142
{
@@ -149,7 +150,7 @@ https://fontawesome.com/icons?d=gallery */
149150
skillName: "CI/CD",
150151
fontAwesomeClassname: "fas fa-sync-alt",
151152
category: "Frameworks & Libraries",
152-
description: "I implemented a Continuous Integration and Continuous Deployment pipeline from scratch using GitHub Actions, which provided me with practical experience in the process.",
153+
description: "I implemented a Continuous Integration and Continuous Deployment pipeline from scratch using GitHub Actions. It conducted automatic tests and status reports on the project.",
153154
image: require("./assets/images/CiCd.png")
154155
},
155156
{
@@ -163,7 +164,7 @@ https://fontawesome.com/icons?d=gallery */
163164
skillName: "React",
164165
fontAwesomeClassname: "fab fa-react",
165166
category: "Frameworks & Libraries",
166-
description: "My main experience with React comes from building this website and developing the frontend for the Box Packing Optimization project.",
167+
description: "My main experience with React comes from building this website and developing the frontend for the Box Packing Optimization project. I still have lots of things to learn about it.",
167168
image: require("./assets/images/React-icon.svg.png")
168169
},
169170
{
@@ -285,9 +286,9 @@ const bigProjects = {
285286
projectName: "Box Packing Optimization",
286287
projectDesc:
287288
"As part of my bachelor's degree, I collaborated with seven other developers to create a web-based application for warehouse " +
288-
"object optimization. \n\n Given a specific number of boxes, the program calculates and displays the most efficient solution." +
289+
"object optimization. We followed the SCRUM framework and deliveried a software product in span of five months. \n\nProject: Given a specific number of boxes, the program calculates and displays the most efficient solution." +
289290
"Key features include file import/export, box locking, and step-by-step reconstruction of the solution. \n\n" +
290-
" The application was developed using Spring Boot (Java) and React." +
291+
"The application was developed using Spring Boot (Java) and React." +
291292
" ",
292293
video: require("./assets/videos/box-packing-demo-v3.mp4"),
293294
footerLink: [
@@ -302,10 +303,11 @@ const bigProjects = {
302303
image: require("./assets/images/spear.png"),
303304
projectName: "Bachelor's Thesis: PhishGPT",
304305
projectDesc:
305-
'In my thesis, "PhishGPT: Automating HTML Phishing Emails Using ChatGPT" I investigated the potential of Large Language Models (LLMs)' +
306-
", particularly ChatGPT, to automate the creation of high-quality phishing emails. \n\n" +
307-
"The findings show that LLM-generated emails are as good as. This research highlights the feasibility of mass spear-phishing" +
308-
" campaigns and underscores the need for more advanced defensive measurements.",
306+
'In my thesis, "PhishGPT: Automating HTML Phishing Emails Using ChatGPT" I investigated the potential of Large Language Models' +
307+
", particularly ChatGPT, to automate the creation of high-quality spearphishing emails. \n\n" +
308+
"The findings show that LLM-generated emails did not raise more suspicion than legitimate emails. This research highlights the feasibility of mass spearphishing" +
309+
" campaigns and underscores the relevance of defensive measurements.",
310+
309311
video: null,
310312
footerLink: [
311313
{

0 commit comments

Comments
 (0)