Skip to content

Commit

Permalink
improving and updating the site
Browse files Browse the repository at this point in the history
  • Loading branch information
angelip2303 committed Jul 19, 2023
1 parent 000bcd5 commit e906942
Show file tree
Hide file tree
Showing 8 changed files with 64 additions and 11 deletions.
Binary file added public/assets/images/pregel.webp
Binary file not shown.
Binary file added public/assets/images/pschema.webp
Binary file not shown.
Binary file added public/assets/images/tfg.webp
Binary file not shown.
Binary file added public/assets/images/wd2duckdb.webp
Binary file not shown.
9 changes: 5 additions & 4 deletions src/components/common/ListItem.astro
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@ export interface ListItemProps {
const { listItem } = Astro.props;
---

<li class="relative shadow-xl md:last:odd:col-span-2 2xl:last:odd:col-span-3">
<li
class="relative shadow-xl md:last:odd:col-span-2 2xl:last:first:col-span-3 2xl:last:[&:nth-child(3n+1)]:col-span-3 2xl:last:[&:nth-child(3n+2)]:col-span-2"
>
<Image
src={"/assets/images/" + listItem.image}
width={1080}
height={1920}
aspectRatio={1}
alt=""
aspectRatio="16:9"
alt={listItem.description}
loading="lazy"
class="w-full rounded-md max-h-[calc(35vh)] aspect-video object-cover"
format="webp"
Expand Down
15 changes: 9 additions & 6 deletions src/components/widgets/Hero.astro
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,14 @@ import { Icon } from "astro-icon";
</h1>

<p class="text-md md:text-xl">
I'm a student of software engineering at the University of Oviedo in Spain.
My interest in web development began in 2014, when I began creating custom
Wordpress themes. I learned a lot about HTML and CSS as a result of that
experience. Fast forward to today, and I'm in my final year of college.
These days, my main focus is learning about data engineering, but I'm also
interested in functional programming and programming language design.
Hey there! I'm Ángel Iglesias Préstamo, a Software Engineer with a burning
passion for Knowledge Graphs and Semantic Web technologies, currently
working as a researcher at the WESO research group. At WESO, I'm on a
mission to uncover the wonders of knowledge representation and its potential
to transform the way we retrieve and integrate information. What truly
excites me is the thrill of delving into new concepts, solving intricate
problems, and bridging the gap between complex ideas and simple
explanations. I believe in the power of effective communication and
presenting innovative ideas in a way that inspires others.
</p>
</main>
49 changes: 49 additions & 0 deletions src/data/projects.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,55 @@
import type { IListItem } from "../types";

export const projects: IListItem[] = [
{
name: "wd2duckdb",
featured: "Happy Accident",
description:
"Application that transforms a Wikidata JSON dump into a DuckDB database.",
image: "wd2duckdb.webp",
technologies: ["Rust", "DuckDB", "Wikidata", "JSON", "ETL", "CLI"],
url: "https://github.com/angelip2303/wd2duckdb",
},
{
name: "pregel-rs",
featured: "Featured Project",
description:
"A Graph library written in Rust for implementing your own algorithms in a Pregel fashion.",
image: "pregel.webp",
technologies: [
"Rust",
"Knowledge Graphs",
"Algorithms",
"Pregel",
"Pola-rs",
],
url: "https://github.com/angelip2303/pregel-rs",
},
{
name: "pschema-rs",
featured: "Featured Project",
description:
"Pregel-based schema validation algorithm written in Rust for generating Wikidata subsets.",
image: "pschema.webp",
technologies: [
"Rust",
"Knowledge Graphs",
"Algorithms",
"Pregel",
"Pola-rs",
"ShEx",
],
url: "https://github.com/angelip2303/pschema-rs",
},
{
name: "TFG",
featured: "Featured Project",
description:
"Documentation of the Final Degree Project on the analysis and implementation of an algorithm to validate Knowledge Graphs using Big data techniques.",
image: "tfg.webp",
technologies: ["Documentation", "Latex", "RDF", "Research"],
url: "https://angelip2303.github.io/tfg/",
},
{
name: "Decentralized Delivery",
featured: "Featured Project",
Expand Down
2 changes: 1 addition & 1 deletion src/data/socials.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const socials: ISocialMedia[] = [
},
{
icon: "ph:linkedin-logo",
url: "https://www.linkedin.com/in/%C3%A1ngel-iglesias-pr%C3%A9stamo-007b561b7/",
url: "https://www.linkedin.com/in/angel-iglesias-prestamo",
name: "Link to my LinkedIn page",
},
];

0 comments on commit e906942

Please sign in to comment.