Skip to content

Instantly share code, notes, and snippets.

View gonz4lex's full-sized avatar
💻
Coding

Alex González gonz4lex

💻
Coding
View GitHub Profile
@gonz4lex
gonz4lex / godot-install-fre.sh
Created November 6, 2020 13:20
Shell script to download the Godot Engine executable.
## Shell script to download the Godot Engine executable
## and immediately run it.
## Made with <3 by Alex
GDURL=https://downloads.tuxfamily.org/godotengine/3.2.3/Godot_v3.2.3-stable_x11.64.zip
cd "$HOME/Downloads/"
echo "Downloading Godot from $GDURL"
@gonz4lex
gonz4lex / resume.md
Last active January 16, 2020 07:30
A draft of my resumé, in Markdown.

Resumé

I am always looking for opportunities to grow, so I am available for contract work and freelancing.

Profile 👨‍💻

I'm a proactive and innovative self-taught developer from Palma, Spain. I specialise in data engineering, analytics and visualization, as well as data science and machine learning. I am always happy to explore new tech stacks or industries. In my spare time, I enjoy both reading and writing.

You can find more about me in my website or my LinkedIn profile.

@gonz4lex
gonz4lex / serviceWorker.js
Last active January 10, 2020 07:50
A simple service worker for static websites, adapted from the docs at https://developers.google.com/web/fundamentals/codelabs/offline.
const ver = '0.0.1"
const cacheName = `alexgonzalezc.dev-${ver}`
self.addEventListener('install', e => {
e.waitUntil(
caches.open(cacheName).then(cache => {
return cache.addAll([
'/',
'/index.html',
@gonz4lex
gonz4lex / pbi-theme.json
Created December 19, 2019 12:12
A JSON file specifying a custom theme for Power BI reports.
{
"name": "BI Light Theme",
"dataColors": ["#4B78B7", "#B45CAB", "#E94754", "#FF8A40", "#FCCC45", "#4AB55C", "#980249", "#DBDBDB"],
"tableAccent": "#375886",
"textClasses": {
"label": {
"fontSize": 9,
"fontFace": "Segoe UI",
"color": "#454545"
},