- [X] task 1
- [X] task 2
- [ ] task 3
| #!/bin/sh | |
| # | |
| # stunnel Start/Stop the stunnel daemons | |
| # | |
| # description: stunnel is a script that runs stunnel daemons | |
| # version 1.00 | |
| # | |
| # chkconfig: 345 40 60 | |
| # | |
| # processname: stunnel |
| # encoding: utf-8 | |
| require "timeout" | |
| # Capture the standard output and the standard error of a command. | |
| # Almost same as Open3.capture3 method except for timeout handling and return value. | |
| # See Open3.capture3. | |
| # | |
| # result = capture3_with_timeout([env,] cmd... [, opts]) | |
| # |
| 更新: | 2024-05-20 |
|---|---|
| 作者: | @voluntas |
| バージョン: | 2024.1 |
| URL: | https://voluntas.github.io/ |
| 日時: | 2016-01-23 |
|---|---|
| 作: | @voluntas |
| バージョン: | 0.1.2 |
| url: | https://voluntas.github.io/ |
| # --dry-run ... 実際に実行はせず削除コマンドの表示だけ行う | |
| # --keep n ... 直近N個のみ保持しそれ以外は削除 | |
| # --target regexp ... regexpにマッチするアプリケーションバージョン名のみを対象 | |
| # --v-target regexp ... regexpにマッチしないアプリケーションバージョン名のみを対象 | |
| # 例) | |
| # productionが含まれるバージョンを直近20件のみ保持 | |
| # $ delete_old_application_versions karada-yosozu --target "production" --keep 20 | |
| # | |
| # production, staging以外のバージョンを直近20件のみ保持 | |
| # $ delete_old_application_versions karada-yosozu --v-target "staging|production" --keep 20 |
| { | |
| "hosting": { | |
| "public": "public", | |
| "rewrites": [ | |
| { | |
| "source": "**", | |
| "function": "app" | |
| } | |
| ], | |
| "redirects": [{ |
| cargo-features = ["edition"] | |
| [package] | |
| name = "async-await-with-tokio" | |
| version = "0.0.0" | |
| publish = false | |
| edition = "2018" | |
| [[bin]] | |
| name = "async-await" |
I was recently asked to explain why I felt disappointed by Haskell, as a language. And, well. Crucified for crucified, I might as well criticise Haskell publicly.
First though, I need to make it explicit that I claim no particular skill with the language - I will in fact vehemently (and convincingly!) argue that I'm a terrible Haskell programmer. And what I'm about to explain is not meant as The Truth, but my current understanding, potentially flawed, incomplete, or flat out incorrect. I welcome any attempt at proving me wrong, because when I dislike something that so many clever people worship, it's usually because I missed an important detail.
Another important point is that this is not meant to convey the idea that Haskell is a bad language. I do feel, however, that the vocal, and sometimes aggressive, reverence in which it's held might lead people to have unreasonable expectations. It certainly was my case, and the reason I'm writing this.
I love the concept of type class