Skip to content

Commit

Permalink
Add redirects from old URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasprag committed Feb 2, 2024
1 parent b6c5c7c commit 6af1403
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ gem 'jekyll-feed'
gem 'jekyll-postcss'
gem 'jekyll-sitemap'
gem 'webrick'
gem 'jekyll-redirect-from', '~> 0.16.0'
3 changes: 3 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ GEM
jekyll-feed (0.17.0)
jekyll (>= 3.7, < 5.0)
jekyll-postcss (0.5.0)
jekyll-redirect-from (0.16.0)
jekyll (>= 3.3, < 5.0)
jekyll-sass-converter (3.0.0)
sass-embedded (~> 1.54)
jekyll-sitemap (1.4.0)
Expand Down Expand Up @@ -76,6 +78,7 @@ DEPENDENCIES
jekyll
jekyll-feed
jekyll-postcss
jekyll-redirect-from (~> 0.16.0)
jekyll-sitemap
webrick

Expand Down
1 change: 1 addition & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ plugins:
- jekyll-postcss
- jekyll-feed
- jekyll-sitemap
- jekyll-redirect-from

postcss:
cache: false
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ date: 'Jul 26, 2019'
tags:
- vim
description: "This can be very useful, I'm going to show how to reload your vim configs anytime you save them or using a command and a map."
redirect_from:
- /2020-06-22-fish-the-shell
---

This can be very useful, I'm going to show how to reload your vim configs anytime you save them or using a command and a map.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ date: 'Nov 6, 2019'
tags:
- vim
description: This is really helpful especially if you need to debug other people's gems or your own. 👌
redirect_from:
- /posts/trick-to-use-ctags-to-jump-to-definition-even-inside-ruby-gems
---

If you don't know what ctags is:
Expand Down
2 changes: 2 additions & 0 deletions _posts/2020-06-22-expanding-rails-sti-to-your-architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ date: 'Jun 22, 2020'
tags:
- architecture
- rails
redirect_from:
- /2020-06-22-expanding-rails-sti-to-your-architecture
---

Let's say we need to create integrations with multiple ecommerce platforms that are somewhat similar where all them have orders, customers, products and the store itself, in this scenario we could use one model for each of these entities.
Expand Down
2 changes: 2 additions & 0 deletions _posts/2020-06-22-fish-the-shell.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ title: 🐠 Fish, the shell
date: 'Jun 22, 2020'
tags:
- terminal
redirect_from:
- /2020-06-22-fish-the-shell
---

One of the greatest changes I've made to my set of programming tools was changing from zsh to [fish](https://fishshell.com/) and these are the reasons that drove me to this change:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ tags:
- elixir
- phoenix
description: I've seen a few blog posts about using environment variables on React/Vue/etc when they're part of a Phoenix app using webpack, but I didn't find much content about using esbuild. This post is about providing configs to your front-end when using esbuild.
redirect_from:
- /2022-02-18-how-to-provide-configs-to-react-on-phoenix-and-esbuild
---

I've seen a few blog posts about using environment variables on React/Vue/etc when they're part of a Phoenix app using webpack, but I didn't find much content about using esbuild. This post is about providing configs to your front-end when using esbuild.
Expand Down

0 comments on commit 6af1403

Please sign in to comment.