summaryrefslogtreecommitdiff
path: root/00_blog/00040_Haskell/00250_Open-Source-Contributions
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2022-05-21 22:00:37 +0200
committerMichal Idziorek <m.i@gmx.at>2022-05-21 22:00:37 +0200
commitad0cb7d568710b4766bff74ac769f4353c2810e8 (patch)
treed17527d94b722a7b52c0bbd01700cab897a7aa7d /00_blog/00040_Haskell/00250_Open-Source-Contributions
parent6df490840e9023bd4052fa0f73b8d5c1053b4872 (diff)
added a few pages
Diffstat (limited to '00_blog/00040_Haskell/00250_Open-Source-Contributions')
-rw-r--r--00_blog/00040_Haskell/00250_Open-Source-Contributions/00010_warp-tls-contribution/index.md5
-rw-r--r--00_blog/00040_Haskell/00250_Open-Source-Contributions/00020_http-client-contribution/index.md5
-rw-r--r--00_blog/00040_Haskell/00250_Open-Source-Contributions/00030_Xmonad-contribution/index.md20
3 files changed, 30 insertions, 0 deletions
diff --git a/00_blog/00040_Haskell/00250_Open-Source-Contributions/00010_warp-tls-contribution/index.md b/00_blog/00040_Haskell/00250_Open-Source-Contributions/00010_warp-tls-contribution/index.md
new file mode 100644
index 0000000..482fe54
--- /dev/null
+++ b/00_blog/00040_Haskell/00250_Open-Source-Contributions/00010_warp-tls-contribution/index.md
@@ -0,0 +1,5 @@
+ March 2022
+# Expose TLS.supportedHashSignatures via TLSSettings
+
+## Github Link
+| <https://github.com/yesodweb/wai/pull/872>
diff --git a/00_blog/00040_Haskell/00250_Open-Source-Contributions/00020_http-client-contribution/index.md b/00_blog/00040_Haskell/00250_Open-Source-Contributions/00020_http-client-contribution/index.md
new file mode 100644
index 0000000..1ab2d74
--- /dev/null
+++ b/00_blog/00040_Haskell/00250_Open-Source-Contributions/00020_http-client-contribution/index.md
@@ -0,0 +1,5 @@
+ Apr 2021
+# Add original Request to the Response type.
+
+## Github Link
+| <https://github.com/snoyberg/http-client/pull/464>
diff --git a/00_blog/00040_Haskell/00250_Open-Source-Contributions/00030_Xmonad-contribution/index.md b/00_blog/00040_Haskell/00250_Open-Source-Contributions/00030_Xmonad-contribution/index.md
new file mode 100644
index 0000000..1a5bf0f
--- /dev/null
+++ b/00_blog/00040_Haskell/00250_Open-Source-Contributions/00030_Xmonad-contribution/index.md
@@ -0,0 +1,20 @@
+ April 2018
+# Pretty printer for empty visible workspaces
+
+My little contribution to **xmonad-contrib**, adding functionality to the
+marvelous xmonad tiling window manager, I love and use since a couple of
+years.
+
+## Description
+
+Simple extensions of the pretty printer to differentiate between empty and non-empty visible workspaces. Analogical to the existing functionality for hidden workspaces. Particularly useful if some displays managed by xmonad are turned off temporarily.
+
+The new 'ppVisibleNoWindows' function was wrapped in a Maybe data type. Its value dafaults to 'Nothing' and 'ppVisible' is used as fallback.
+
+## Motivation
+
+My TV is often turned off. Still I want to know if its workspace contains any windows, without having to switch workspaces.
+
+## Github Link
+| _Xmonad-Contrib: Added pretty printer for empty visible workspaces (wrapped in Maybe)_
+| <https://github.com/xmonad/xmonad-contrib/pull/241>