summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorRoger Gonzalez <roger@rogs.me>2022-12-29 09:40:52 -0300
committerRoger Gonzalez <roger@rogs.me>2022-12-29 09:40:52 -0300
commit9b211d892554ea8d34faaa1b943c401057728549 (patch)
treef7dbda74c65ac74d99babf733b4ef2de64d73ee4 /content
parent5e216863485bc480e6bc4e2164cf041e38936e96 (diff)
Removed all references to git.rogs.me
Diffstat (limited to 'content')
-rw-r--r--content/posts/degoogle-my-blog.md4
-rw-r--r--content/posts/how-i-got-a-residency-appointment-thanks-to-python-and-selenium.md9
-rw-r--r--content/posts/how-to-create-a-celery-task-that-fills-out-fields-using-django.md10
-rw-r--r--content/posts/using-minio-to-upload-to-a-local-s3-bucket-in-django.md10
4 files changed, 15 insertions, 18 deletions
diff --git a/content/posts/degoogle-my-blog.md b/content/posts/degoogle-my-blog.md
index 660e495..63ee06e 100644
--- a/content/posts/degoogle-my-blog.md
+++ b/content/posts/degoogle-my-blog.md
@@ -120,9 +120,9 @@ I just serve the files directly with NGINX, just like a regular plain HTML websi
This blog is 100% running with Hugo. Migration was super easy, since Ghost also uses Markdown files. I just needed to match the URLs so old posts wouldn't break and comments worked like they did before. I chose a simple template, migrated, deployed to my server and that was it!
-You can check the code for my blog here: https://git.rogs.me/me/blog.rogs.me
+You can check the code for my blog here: https://gitlab.com/rogs/rogs.me
-My theme: https://themes.gohugo.io/hugo-theme-m10c/
+My theme: https://github.com/athul/archie
I was pretty satisfied with the migration and how things were coming along.
diff --git a/content/posts/how-i-got-a-residency-appointment-thanks-to-python-and-selenium.md b/content/posts/how-i-got-a-residency-appointment-thanks-to-python-and-selenium.md
index 988c157..6944db8 100644
--- a/content/posts/how-i-got-a-residency-appointment-thanks-to-python-and-selenium.md
+++ b/content/posts/how-i-got-a-residency-appointment-thanks-to-python-and-selenium.md
@@ -2,8 +2,8 @@
title = "How I got a residency appointment thanks to Python, Selenium and Telegram"
author = ["Roger Gonzalez"]
date = 2020-08-02
-lastmod = 2021-01-10T11:37:49-03:00
-tags = ["python", "selenium", "telegram"]
+lastmod = 2022-12-29T09:34:48-03:00
+tags = ["python", "", "selenium", "telegram"]
categories = ["programming"]
draft = false
weight = 2003
@@ -220,7 +220,7 @@ my own.
My brother is having similar issues in Argentina, and when I showed him this, he
said one of the funniest phrases I've heard about my profession:
-> _"Programmers could take over the world, but they are too lazy"_
+&gt; _"Programmers could take over the world, but they are too lazy"_
I lol'd way too hard at that.
@@ -228,5 +228,4 @@ I loved Selenium and how it worked. Recently I created a crawler using Selenium,
Redis, peewee, and Postgres, so stay tuned if you want to know more about that.
In the meantime, if you want to check the complete script, you can see it on my
-Git instance: <https://git.rogs.me/me/registro-civil-scraper> or Gitlab, if you
-prefer: <https://gitlab.com/rogs/registro-civil-scraper>
+Gitlab: <https://gitlab.com/rogs/registro-civil-scraper>
diff --git a/content/posts/how-to-create-a-celery-task-that-fills-out-fields-using-django.md b/content/posts/how-to-create-a-celery-task-that-fills-out-fields-using-django.md
index de7595c..627f4a3 100644
--- a/content/posts/how-to-create-a-celery-task-that-fills-out-fields-using-django.md
+++ b/content/posts/how-to-create-a-celery-task-that-fills-out-fields-using-django.md
@@ -2,8 +2,8 @@
title = "How to create a celery task that fills out fields using Django"
author = ["Roger Gonzalez"]
date = 2020-11-29T15:48:48-03:00
-lastmod = 2021-01-10T12:27:56-03:00
-tags = ["python", "celery", "django", "docker", "dockercompose"]
+lastmod = 2022-12-29T09:34:16-03:00
+tags = ["python", "celery", "django", "docker", "", "dockercompose"]
categories = ["programming"]
draft = false
weight = 2002
@@ -29,7 +29,7 @@ For that, we need Celery.
[Celery](https://docs.celeryproject.org/en/stable/) is a "distributed task queue". Fron their website:
-> Celery is a simple, flexible, and reliable distributed system to process vast
+&gt; Celery is a simple, flexible, and reliable distributed system to process vast
amounts of messages, while providing operations with the tools required to
maintain such a system.
@@ -707,8 +707,6 @@ I've used Celery in the past for multiple things, from sending emails in the
background to triggering scraping jobs and [running scheduled tasks](https://docs.celeryproject.org/en/stable/userguide/periodic-tasks.html#using-custom-scheduler-classes) (like a [unix
cronjob](https://en.wikipedia.org/wiki/Cron))
-You can check the complete project in my git instance here:
-<https://git.rogs.me/me/books-app> or in GitLab here:
-<https://gitlab.com/rogs/books-app>
+You can check the complete project in my GitLab here: <https://gitlab.com/rogs/books-app>
If you have any doubts, let me know! I always answer emails and/or messages.
diff --git a/content/posts/using-minio-to-upload-to-a-local-s3-bucket-in-django.md b/content/posts/using-minio-to-upload-to-a-local-s3-bucket-in-django.md
index 0fa890d..abc39e0 100644
--- a/content/posts/using-minio-to-upload-to-a-local-s3-bucket-in-django.md
+++ b/content/posts/using-minio-to-upload-to-a-local-s3-bucket-in-django.md
@@ -2,8 +2,8 @@
title = "Using MinIO to upload to a local S3 bucket in Django"
author = ["Roger Gonzalez"]
date = 2021-01-10T11:30:48-03:00
-lastmod = 2021-01-10T14:40:17-03:00
-tags = ["python", "django", "minio", "docker", "dockercompose"]
+lastmod = 2022-12-29T09:34:56-03:00
+tags = ["python", "django", "minio", "docker", "", "dockercompose"]
categories = ["programming"]
draft = false
weight = 2001
@@ -26,7 +26,7 @@ How do you setup your local development environment without using a
## What is MinIO? {#what-is-minio}
According to their [GitHub README](https://github.com/minio/minio):
-> MinIO is a High Performance Object Storage released under Apache License v2.0.
+&gt; MinIO is a High Performance Object Storage released under Apache License v2.0.
It is API compatible with Amazon S3 cloud storage service.
So MinIO its an object storage that uses the same API as S3, which means that we
@@ -164,7 +164,7 @@ Now you can have a simple configuration for your local and production
environments to work seamlessly, using local resources instead of remote
resources that might generate costs for the development.
-If you want to check out the project code, you can go to my git server here: <https://git.rogs.me/me/minio-example> or
-in Gitlab here: <https://gitlab.com/rogs/minio-example>
+If you want to check out the project code, you can check in my Gitlab here:
+<https://gitlab.com/rogs/minio-example>
See you in the next one!