Skip to content

Commit 5bd3416

Browse files
committed
ref: improve blog post titles
1 parent ffea702 commit 5bd3416

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

content/blog/2020-06-05-functional-programming-in-php.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
+++
2-
title = "My attempt on functional programming in PHP"
2+
title = "Functional Programming in PHP: Lessons from My First Experiments"
33
+++
44

55
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.

content/blog/2022-01-25-map-filter-reduce.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
+++
2-
title = "Map, filter and reduce"
2+
title = "Map, Filter, Reduce: Your First Functional Toolkit in Phel"
33
+++
44

55
Phel, as many other functional programming languages, comes with three basic tools you should learn right from the beginning:
@@ -44,4 +44,3 @@ The reduce function takes three arguments. The first argument is a two-argument
4444
# concat all numbers to a string
4545
(reduce str "" [1 2 3]) # evaluates to "123"
4646
```
47-

content/blog/2024-05-18-loop-and-recur.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
+++
2-
title = "Loop and recur"
2+
title = "Loop and Recur: Tail-Recursive Iteration Made Easy"
33
aliases = [ "/blog/loop" ]
44
+++
55

content/blog/2025-08-23-threading-macros.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
+++
2-
title = "Thread-first (->) vs Thread-last (->>)"
2+
title = "Threading Macros in Phel: Thread-First vs. Thread-Last"
33
+++
44

55
Phel includes two handy threading macros that let you express a sequence of transformations in a linear, readable style.

0 commit comments

Comments
 (0)