Skip to content

Commit b5c7c2e

Browse files
committedAug 18, 2022
Update
1 parent a2e38fc commit b5c7c2e

16 files changed

+85
-171
lines changed
 

‎404.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@ layout: center
33
permalink: /404.html
44
---
55

6-
# 404
6+
# Page Not Found
77

8-
Sorry, we can't seem to find this page's pixylls.
8+
Sorry, this page does not seem to exist.
99

1010
<div class="mt3">
11-
<a href="{{ site.baseurl }}/" class="button button-blue button-big">Home</a>
12-
<a href="{{ site.baseurl }}/contact/" class="button button-blue button-big">Contact</a>
11+
<a href="{{ site.baseurl }}/" class="button button-blue button-big">Back to Home</a>
1312
</div>

‎CNAME

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pixyll.com
1+
marcospereira.me

‎README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
# marcospgp.github.io
22

3-
Repo for personal website.
3+
Repo for Jekyll based personal website.
44

55
Theme documentation [here](PIXYLL.md).
66

7-
8-
97
## Usage
108

119
Adding new posts to this repo should update the website automatically, which is

‎_config.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Site settings
22
title: Marcos Pereira
3-
email: your_email@example.com
3+
email:
44
author: Marcos Pereira
55
description: "Making NPCs alive"
66
baseurl: ""
@@ -23,11 +23,11 @@ bing_verification:
2323
animated: false
2424
show_related_posts: false
2525
show_post_footers: false
26-
show_social_icons: false
26+
show_social_icons: true
2727
ajaxify_contact_form: false
2828
enable_mathjax: true
29-
extended_fonts: false
30-
enable_anchorjs: false
29+
extended_fonts: true
30+
enable_anchorjs: true
3131
# Preview image for social media aka og:image and twitter:image
3232
post_preview_image: false
3333

@@ -115,7 +115,7 @@ markdown: kramdown
115115
redcarpet:
116116
extensions: ['smart', 'tables', 'with_toc_data']
117117
permalink: pretty
118-
paginate: 4
118+
paginate: 5
119119
sass:
120120
style: compressed
121121
plugins:

‎_includes/footer.html

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<!--
12
<footer class="center">
23
<div class="measure">
34
<small>
@@ -6,6 +7,7 @@
67
</small>
78
</div>
89
</footer>
10+
-->
911
{% if site.enable_anchorjs %}<!-- AnchorJS -->
1012
<script src="https://cdnjs.cloudflare.com/ajax/libs/anchor-js/3.0.0/anchor.min.js"></script>
1113
<script>

‎_includes/header.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<header class="site-header px2 px-responsive">
1+
<header class="site-header p2 px-responsive">
22
<div class="mt2 wrap">
33
<div class="measure">
44
<a href="{{ "/" | relative_url }}" class="site-title">{{ site.title }}</a>

‎_includes/pagination.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% if paginator.total_pages != 1 %}
2-
<div class="pagination clearfix mb1 mt4">
2+
<div class="pagination clearfix py3">
33
<div class="left">
44
{% if paginator.previous_page %}
55
{% if paginator.page == 2 %}

‎_includes/social_links.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<div class="social-icons">
2-
<div class="social-icons-right">
2+
<div class="social-icons-left">
3+
{% if site.twitter_username %}
4+
<a class="fa fa-twitter" href="https://twitter.com/{{ site.twitter_username }}"></a>
5+
{% endif %}
36
{% if site.github_username %}
47
<a class="fa fa-github" href="https://github.com/{{ site.github_username }}"></a>
58
{% endif %}
@@ -13,9 +16,6 @@
1316
<a class="fa fa-stack-overflow" href="https://stackoverflow.com/users/{{ site.stackoverflow_id }}"></a>
1417
{% endif %}
1518
<a class="fa fa-rss" href="{{ "/feed.xml" | relative_url }}"></a>
16-
{% if site.twitter_username %}
17-
<a class="fa fa-twitter" href="https://twitter.com/{{ site.twitter_username }}"></a>
18-
{% endif %}
1919
{% if site.skype_username %}
2020
<a class="fa fa-skype" href="skype:{{ site.skype_username }}?userinfo"></a>
2121
{% endif %}

‎_layouts/default.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<div class="site-wrap">
2121
{% include header.html %}
2222

23-
<div class="post p2 p-responsive wrap" role="main">
23+
<div class="post p2 p-responsive wrap mb3" role="main">
2424
<div class="measure">
2525
{{ content }}
2626
</div>

‎_sass/_header.scss

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
.site-header {
2-
padding-top: $space-1;
3-
padding-bottom: $space-2;
4-
}
1+
// .site-header {
2+
// padding-top: $space-1;
3+
// padding-bottom: $space-2;
4+
// }
55

66
.site-header a {
77
color: $header-color;
@@ -14,9 +14,9 @@
1414
font-size: $h2;
1515
}
1616

17-
.site-nav {
18-
padding-top: $nav-padding;
19-
}
17+
// .site-nav {
18+
// padding-top: $nav-padding;
19+
// }
2020

2121
.site-header nav a {
2222
color: $nav-color;

‎_sass/_media-queries.scss

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
text-align: left;
4040
}
4141

42-
.social-icons-right {
43-
text-align: right;
42+
.social-icons-left {
43+
text-align: left;
4444
}
4545
}
4646

‎_sass/_posts.scss

+10-10
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
margin: 0;
44
}
55

6-
.posts .post {
7-
margin-bottom: 0.75em;
8-
border-bottom: thin solid #f3f3f3;
9-
}
10-
11-
.posts .post:last-child {
12-
border-bottom: none;
13-
margin-bottom: .375em;
14-
padding-bottom: 0;
15-
}
6+
// .posts .post {
7+
// margin-bottom: 0.75em;
8+
// border-bottom: thin solid #f3f3f3;
9+
// }
10+
11+
// .posts .post:last-child {
12+
// border-bottom: none;
13+
// margin-bottom: .375em;
14+
// padding-bottom: 0;
15+
// }
1616

1717
.post-link .post-title {
1818
margin-top: 0;

‎_sass/_social-icons.scss

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.social-icons-left, .social-icons-right {
1+
.social-icons-left, .social-icons-left {
22
text-align: center;
33
float: none;
44
}
@@ -13,6 +13,7 @@
1313
cursor: pointer;
1414
opacity: 0.8;
1515
padding: 0.2em;
16+
font-size: 1.5rem;
1617
}
1718

1819
.social-icons a.fa:hover {

‎_sass/basscss/_buttons-blue.scss

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.button-blue {
22
color: white;
3-
background-color: $blue;
3+
// background-color: $blue;
4+
background-color: #000;
45
border-radius: $border-radius;
56
transition-duration: .1s;
67
transition-timing-function: ease-out;

‎about.md

+43-83
Original file line numberDiff line numberDiff line change
@@ -1,94 +1,54 @@
11
---
22
layout: page
3-
title: About Pixyll
3+
title: About
44
permalink: /about/
55
tags: about
66
---
77

8-
This Jekyll theme was crafted with <3 by [John Otander](https://johno.com/)
9-
([@4lpine](https://twitter.com/4lpine)).
8+
Hello! Thanks for visiting my website.
109

11-
Checkout the [GitHub repository](https://github.com/johno/pixyll) to download it,
12-
request a feature, report a bug, or contribute. It's free, and open source
13-
([MIT](https://opensource.org/licenses/MIT)).
10+
<details>
11+
<summary>I am Marcos, a developer from Portugal.</summary>
12+
<p>
13+
I mostly have made a living so far working on web apps, but am more interested in AI and games. I have been working part time for most of my career and wish to soon stop relying on selling my time.
14+
</p>
1415

15-
Thanks to the following:
16+
<p>
17+
Many years ago GTA San Andreas opened my eyes to how amazing and immersive virtual worlds can be. I now work towards making these worlds more alive. I believe that anything we create in them can be a source of inspiration for and will certainly spill over into base reality.
18+
</p>
1619

17-
* [BASSCSS](https://basscss.com/)
18-
* [Jekyll](https://jekyllrb.com/)
19-
* [Refills](https://refills.bourbon.io/)
20-
* [Type Scale](https://type-scale.com/)
20+
<p>
21+
I have a software engineering bachelor's that I really wished to drop out of due to how boring it was, but couldn't find the courage to (it was still hard work, of course). I believe education should have a target application, closer to the present the less fun it is to study. I learn by working on projects - I initially got into web development by finding work on reddit.com/r/forhire as a student.
22+
</p>
23+
</details>
2124

22-
List of contributors:
25+
<details>
26+
<summary>I identify with and mostly live by stoic philosophy.</summary>
27+
<p>
28+
I tend to overthink things I care about and underthink things I am not interested in. I am trying to lean more towards action, but am bothered by the idea of imperfection. I still haven't figured out how to sleep well or how much coffee I should have.
29+
</p>
2330

24-
- Aaron S. Hawley
25-
- Adam Menges
26-
- Alex Claman
27-
- Alex Johnson
28-
- Alex Touchet
29-
- Allister Antosik
30-
- Amin Bandali
31-
- Anders Nissen
32-
- Andrea Margiovanni
33-
- Andreas Niedermair
34-
- Andrzej Ośmiałowski
35-
- Anuj More
36-
- Arvind Chembarpu
37-
- Assaf Gelber
38-
- Barry vd. Heuvel
39-
- Bartek Krzemień
40-
- Benjamin Sinkula
41-
- Bennett Rogers
42-
- Brian Gaid
43-
- Brian Hurst
44-
- Chee Yeo
45-
- Cody Chan
46-
- Cristian Henrique
47-
- David Ernst
48-
- David Moodie
49-
- Donate Altenburger
50-
- Eddie Schoute
51-
- Fernando Mantoan
52-
- Gurchet Rai
53-
- Harish Narayanan
54-
- Jack Platten
55-
- Jehan Tremback
56-
- Jiaxi Gu (Isaac)
57-
- John Otander
58-
- Jordan Danielewski
59-
- Josh Buxton
60-
- Kirill Kulikov
61-
- Kyle Maxwell
62-
- Marta Sztybor
63-
- Martin Wagner
64-
- Matthew Graybosch
65-
- Maxim Tsoy
66-
- Mete Balci
67-
- Mike Lloyd
68-
- Mikhail Grachev
69-
- mindwind
70-
- Nick Rakochy
71-
- Nikolay Georgiev
72-
- Noel Bautista
73-
- Oliver Hamlet
74-
- Onur (e0i)
75-
- Praveer Gupta
76-
- Rassol (Karmeye)
77-
- Renato Fialho
78-
- Ricky Han
79-
- Roberto Pesando
80-
- Ryan Jacobs
81-
- Scott Martin
82-
- Selim Eren Bekçe
83-
- Shruti Rijhwani
84-
- Steef Hegeman
85-
- Tehmasp Chaudhri
86-
- Thomas Galvin
87-
- Timothy Gu
88-
- Tom Kraak
89-
- Vishnu Ks
90-
- Vladislav Arbatov
91-
- Wilfred Hughes
92-
- Yaroslav Yadrishnikov
93-
- Yee Chie Tu
94-
- Yeou Chien
31+
<p>
32+
I don't believe in fancy wording. If you talk weird, you got something to hide. And making something harder to understand than it has to be is a crime against humanity.
33+
</p>
34+
</details>
35+
36+
<details>
37+
<summary>I am a strong believer in the church of ease of use.</summary>
38+
<p>
39+
I live by progressive disclosure of complexity, which means every interface should be obvious to someone seeing it for the first time, yet still powerful for one who has explored its details. And if you want to explain something to someone, build your ideas up as little lego bricks before you start putting together your tower of reasoning.
40+
</p>
41+
</details>
42+
43+
<details>
44+
<summary>It feels nice to have things under control and neatly organized in one's head, but acting out in the world is hard.</summary>
45+
<p>
46+
There are two components to doing things - being good at doing, and being good at judging. If you don't hate what you do, improve your judgement. And if you hate what you do, keep doing.
47+
</p>
48+
49+
<p>
50+
Whatever it is you're doing, if no one is paying for it and you're not doing it for its own sake then it's not worth it. Judge your usefulness by whether people are willing to give something in exchange.
51+
</p>
52+
</details>
53+
54+
If you wish to get in touch, you can reach out through the links in the footer, or send an email to &#101;&#109;&#97;&#105;&#108;&#64;&#109;&#97;&#114;&#99;&#111;&#115;&#112;&#101;&#114;&#101;&#105;&#114;&#97;&#46;&#109;&#101;.

‎contact.html

-47
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.