Skip to content

Commit b97eebf

Browse files
Build
1 parent 55fce95 commit b97eebf

File tree

27 files changed

+1064
-62
lines changed

27 files changed

+1064
-62
lines changed

‎docs/about-me/index.html‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,8 @@ <h1>Alexandre Vicenzi</h1>
128128

129129
<main class="content container">
130130
<div class="post">
131-
<h1>About me</h1>
131+
<h1 class="title">About me</h1>
132+
132133

133134

134135

‎docs/css/hyde.css‎

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -133,21 +133,14 @@ footer {
133133

134134
@media (min-width: 48em) {
135135
.content {
136-
max-width: 38rem;
136+
max-width: 40rem;
137137
margin-left: 20rem;
138138
margin-right: 2rem;
139139
margin-bottom: -40px;
140140
min-height: 100%;
141141
}
142142
}
143143

144-
@media (min-width: 64em) {
145-
.content {
146-
margin-left: 22rem;
147-
margin-right: 4rem;
148-
}
149-
}
150-
151144
.img-circle {
152145
border-radius: 50%;
153146
}
@@ -329,3 +322,10 @@ figcaption {
329322
text-align: center;
330323
font-size: 80%;
331324
}
325+
326+
.tagline {
327+
display: block;
328+
font-size: 1.2rem;
329+
margin-bottom: .5rem;
330+
font-weight: 400;
331+
}

‎docs/donate/index.html‎

Lines changed: 17 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<meta itemprop="description" content="Donate as a sign of appreciation">
1616
<meta itemprop="datePublished" content="2020-02-09T00:00:00&#43;00:00" />
1717
<meta itemprop="dateModified" content="2020-02-09T00:00:00&#43;00:00" />
18-
<meta itemprop="wordCount" content="269">
18+
<meta itemprop="wordCount" content="260">
1919
<meta itemprop="image" content="https://www.gravatar.com/avatar/5dc5ba59a94eeab2106ad9d397361b2c?s=400&d=mp"/>
2020

2121

@@ -128,13 +128,14 @@ <h1>Alexandre Vicenzi</h1>
128128

129129
<main class="content container">
130130
<div class="post">
131-
<h1>Donate</h1>
131+
<h1 class="title">Donate</h1>
132+
132133

133134

134135

135136
<div>
136137
<p>Donations for my contributions are always welcome, but if you can contribute back to the open source community is even better.</p>
137-
<p>This blog currently has no ads and I intend to keep this way. Most of the code that I write is under an OSS license, and my writings are usually licensed under Creative Common.</p>
138+
<p>This blog currently has no ads and I intend to keep this way. Most of the code that I write is under an FOSS license, and my writings are usually licensed under Creative Commons.</p>
138139
<p>You can find multiple ways to donate below, or you can also pay me a beer, pale lager (Pilsner or Helles) preferably, if we ever meet one day.</p>
139140
<div class="donations">
140141
<table class="buttons">
@@ -171,30 +172,19 @@ <h1>Donate</h1>
171172
}
172173

173174
var addrs = {
175+
// Coinomi
174176
'BTC': {
175177
'addr': '37Md5HiS5Qad84ryY4f5GpuUCod5hNxgqd',
176178
'name': 'Bitcoin',
179+
'multi': false,
177180
},
181+
// MyEtherWallet
178182
'ETH': {
179-
'addr': '0x6b8AD41572dB6e2C91F314d4c4df997da1b062Bc',
183+
'addr': '0x8b16354C893100Eea5507AC888Cae62Ca9684c1D',
180184
'name': 'Ethereum',
185+
'token': 'ERC-20',
186+
'multi': true,
181187
},
182-
'LTC': {
183-
'addr': 'MWGq2vY976e6KmHUZ6QhafeHGiEipFBeG5',
184-
'name': 'Litecoin',
185-
},
186-
// 'ZEC': {
187-
// 'addr': 't1Sjvm8GzyeEjKD6gHQnigdXVaBaY1bf4KY',
188-
// 'name': 'Zcash',
189-
// },
190-
// 'XTZ': {
191-
// 'addr': 'tz1UQRC651A91cAHy4bhuwJfEFUdEmmrtUUH',
192-
// 'name': 'Tezos',
193-
// },
194-
// 'DOGE': {
195-
// 'addr': 'DKj7XRoeiHuf4TTjoRHpBBLsGR8MWA6nhA',
196-
// 'name': 'Dogecoin',
197-
// },
198188
'PayPal': {
199189
'external': 'https://www.paypal.me/avicenzi'
200190
},
@@ -235,7 +225,13 @@ <h1>Donate</h1>
235225
var addr = addrs[coin];
236226

237227
document.getElementById('coin-info').innerText = '{0} Address ({1})'.format(addr.name, coin);
238-
document.getElementById('coin-alert').innerText = 'Send only {0} to this address'.format(coin);
228+
229+
if (addr.multi === true) {
230+
document.getElementById('coin-alert').innerText = 'Send {0} or any {1} token to this address'.format(coin, addr.token);
231+
} else {
232+
document.getElementById('coin-alert').innerText = 'Send only {0} to this address'.format(coin);
233+
}
234+
239235
document.getElementById('coin-addr').innerText = addr.addr;
240236
document.getElementById('coin-qr').src = '/images/donate/{0}-qr.png'.format(coin.toLowerCase());
241237
}

‎docs/images/content/bug-t.png‎

13.8 KB
Loading

‎docs/images/content/bug.png‎

17.2 KB
Loading

‎docs/images/donate/eth-qr.png‎

-4.24 KB
Loading

‎docs/index.html‎

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<meta property="og:type" content="website" />
2727
<meta property="og:url" content="https://alexandrevicenzi.com/" />
2828
<meta property="og:image" content="https://www.gravatar.com/avatar/5dc5ba59a94eeab2106ad9d397361b2c?s=400&d=mp"/>
29-
<meta property="og:updated_time" content="2020-08-05T00:00:00+00:00" />
29+
<meta property="og:updated_time" content="2020-10-16T00:00:00+00:00" />
3030

3131

3232

@@ -120,6 +120,23 @@ <h1>Alexandre Vicenzi</h1>
120120

121121
<main class="content container">
122122
<div class="posts">
123+
<article class="post">
124+
<h1 class="post-title">
125+
<a href="https://alexandrevicenzi.com/posts/test-and-document-your-data-pipeline/">Test and document your data pipeline</a>
126+
</h1>
127+
128+
<div class="post-date">
129+
<time datetime="2020-10-16T00:00:00Z">Oct 16, 2020</time> &middot; 3 min read
130+
</div>
131+
132+
<div>
133+
While working on a given project, we (as a team) thought that testing a data pipeline was difficult, and we always postponed the test of some areas. Later on, we learned the consequences of not testing it.
134+
</div>
135+
136+
<div class="read-more-link">
137+
<a href="https://alexandrevicenzi.com/posts/test-and-document-your-data-pipeline/">Read More</a>
138+
</div>
139+
</article>
123140
<article class="post">
124141
<h1 class="post-title">
125142
<a href="https://alexandrevicenzi.com/posts/is-my-project-failing/">Is my project failing?</a>

‎docs/index.xml‎

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,20 @@
66
<description>Recent content on Alexandre Vicenzi</description>
77
<generator>Hugo -- gohugo.io</generator>
88
<language>en</language>
9-
<lastBuildDate>Wed, 05 Aug 2020 00:00:00 +0000</lastBuildDate>
9+
<lastBuildDate>Fri, 16 Oct 2020 00:00:00 +0000</lastBuildDate>
1010

1111
<atom:link href="https://alexandrevicenzi.com/index.xml" rel="self" type="application/rss+xml" />
1212

1313

14+
<item>
15+
<title>Test and document your data pipeline</title>
16+
<link>https://alexandrevicenzi.com/posts/test-and-document-your-data-pipeline/</link>
17+
<pubDate>Fri, 16 Oct 2020 00:00:00 +0000</pubDate>
18+
19+
<guid>https://alexandrevicenzi.com/posts/test-and-document-your-data-pipeline/</guid>
20+
<description>While working on a given project, we (as a team) thought that testing a data pipeline was difficult, and we always postponed the test of some areas. Later on, we learned the consequences of not testing it.</description>
21+
</item>
22+
1423
<item>
1524
<title>Is my project failing?</title>
1625
<link>https://alexandrevicenzi.com/posts/is-my-project-failing/</link>

‎docs/posts/2020-resolutions/index.html‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,8 @@ <h1>Alexandre Vicenzi</h1>
128128

129129
<main class="content container">
130130
<div class="post">
131-
<h1>2020 Resolutions</h1>
131+
<h1 class="title">2020 Resolutions</h1>
132+
132133

133134
<div class="post-date">
134135
<time datetime="2020-02-16T00:00:00Z">Feb 16, 2020</time> &middot; 1 min read

‎docs/posts/building-an-engineering-team/index.html‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,8 @@ <h1>Alexandre Vicenzi</h1>
128128

129129
<main class="content container">
130130
<div class="post">
131-
<h1>Building an engineering team</h1>
131+
<h1 class="title">Building an engineering team</h1>
132+
132133

133134
<div class="post-date">
134135
<time datetime="2020-06-23T00:00:00Z">Jun 23, 2020</time> &middot; 9 min read

0 commit comments

Comments
 (0)