Skip to content

Commit

Permalink
refactor: add date to blog file to improve sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
Chemaclass committed May 19, 2024
1 parent 8a0a474 commit aacae75
Show file tree
Hide file tree
Showing 17 changed files with 1 addition and 17 deletions.
2 changes: 1 addition & 1 deletion content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Feel free to ask questions and join discussions on the [Phel Gitter channel](htt

## Why Phel?

Phel is a result of my [failed attempts to do functional programming in PHP](/blog/functional-programming-in-php). Basically I wanted:
Phel is a result of my [failed attempts to do functional programming in PHP](/blog/2020-06-05-functional-programming-in-php). Basically I wanted:

* A LISP-inspired
* functional programming language
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
+++
title = "My attempt on functional programming in PHP"
template = "blog-entry.html"
date = "2020-06-05"
+++

PHP was one of my first languages I learned. Even so, this dates back over 10 years, I still use PHP every day at work. However, in the meantime I also learned a lot of other languages like Java, Clojure, Scala, Python, Javascript and Scheme. By learning all the languages and their concepts, the concept of functional programming always was my favorite, and so I tried to make my PHP programming style more functional. In the following article you can read some approaches I tried.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
+++
title = "Release: v0.1.0"
date = "2021-01-31"
+++

After a year of work the very first version of Phel is released. Yeah!
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
+++
title = "Release: v0.2.0"
date = "2021-02-22"
+++

With this release it is possible to call Phel functions from PHP. Additionally, it is possible to set PHP object properties from Phel.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
+++
title = "Release: v0.3.0"
date = "2021-05-12"
+++

The third release of Phel make big improvement in the data structure. Phel now uses persistent data structures. The old data structures are marked as deprecated and will be removed in future versions.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
+++
title = "Release: v0.4.0"
date = "2021-10-05"
+++

In the forth release of Phel a lot of changes happened to the machine room of Phel. The way Phel compiles code has changed from a bottom up approach to a top-down approach.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
+++
title = "Release: v0.5.0"
date = "2021-12-17"
+++

This release adds a compile command and three new language features:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
+++
title = "Map, filter and reduce"
date = "2022-01-25"
+++

Phel, as many other functional programming languages, comes with three basic tools you should learn right from the beginning:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
+++
title = "Release: v0.6.0"
date = "2022-02-02"
+++

We just released version 0.6.0. This release drops the support for PHP 7.4. Phel supports now PHP 8.0 and PHP 8.1. Read the rest of the thread for other important changes
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
+++
title = "Release: v0.7.0"
date = "2022-05-05"
+++

This release comes with a lot a small improvements to the core library.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
+++
title = "Release: v0.8.0"
date = "2023-01-16"
+++

This release adds new JSON functions to Phel.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
+++
title = "Release: v0.9.0"
date = "2023-02-05"
+++

This release adds new config parameters and improve the compiling performance.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
+++
title = "Release: v0.10.0"
date = "2023-04-01"
+++

## Support for fluid configuration
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
+++
title = "Release: v0.11.0"
date = "2023-08-26"
+++

## Improved build
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
+++
title = "Release: v0.12.0"
date = "2023-11-01"
+++

## Better error handling
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
+++
title = "Release: v0.13.0"
date = "2024-04-17"
+++

## Require PHP>=8.2
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
+++
title = "Loop and recur"
date = "2024-05-18"
aliases = [ "/blog/loop" ]
+++

Expand Down

0 comments on commit aacae75

Please sign in to comment.