- No mutable state
- no loops (for, while)
- no statements
- no mouse
- no primitives
- no else (only guards)
- no conditionals
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun my-dired--first-char-or-ask () | |
(if (member (char-after (line-beginning-position)) `(?\s ,dired-marker-char)) | |
(read-char "Which mark are you targeting? ") | |
(char-after (line-beginning-position)))) | |
(defun my-dired-swap-marks-ask () | |
(interactive) | |
(let ((mark (my-dired--first-char-or-ask))) | |
(my-dired-swap-marks (string mark)))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
content | |
.lines() | |
.filter(|line| line.to_lowercase().as_str().contains(query)) | |
.collect() | |
content | |
.lines() | |
.map(|line| line.to_lowercase().as_str()) | |
.filter(|line| line.contains(query)) | |
.collect() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Main where | |
type Point = Int | |
type From = Point | |
type To = Point | |
type Segment = (From, To) | |
type Graph = [Segment] | |
hasPath :: Graph -> From -> To -> Bool | |
hasPath [] _ _ = False |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private delegate IEnumerable<string> ManipulateHistory(IEnumerable<string> history); | |
ManipulateHistory append(string tail) => | |
history => history.Append(new[] { history.Last() + tail }); | |
ManipulateHistory delete(int k) => | |
history => history.Append(new[] { delete(history.Last(), k) }); | |
string delete(string last, int k) => last.Substring(0, last.Length - k); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test | |
"repeated characters are replaced with one" | |
{ | |
let randomlyRepeat char = | |
gen { | |
let! randomLength = Arb.generate<int> |> Gen.map (fun i -> abs i + 1) | |
return String(char, randomLength) | |
} | |
let arbitrarilyRepeatCharactersInString s = |
If running GHCI on Windows returns
ghci
GHCi, version 9.4.1: https://www.haskell.org/ghc/ :? for help
<command line>: user specified .o/.so/.DLL could not be loaded (addDLL: pthread or dependencies not loaded. (Win32 error 5))
Whilst trying to load: (dynamic) pthread
Additional directories searched: C:/Users/arialdomartini/scoop/apps/haskell/9.4.1/mingw/lib/clang/13.0.0
C:/Users/arialdomartini/scoop/apps/haskell/9.4.1/lib/../mingw/x86_64-w64-mingw32/lib
C:/Users/arialdomartini/scoop/apps/haskell/9.4.1/lib/../mingw/lib
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(progn | |
(defun download-captions (youtube-link) | |
(shell-command (concat "yt-dlp --write-sub --write-auto-sub --no-warnings --sub-lang en --skip-download --sub-format srv1 -o temp-file -U" youtube-link))) | |
(defun xml-attribute (name item) | |
(cdr (assoc name (xml-node-attributes item)))) | |
(defun xml-items (file-path) | |
(with-temp-buffer | |
(insert-file-contents file-path) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; printing the variable name used by the caller | |
(defmacro name (var) | |
`(format "Name=%s, Value=%s" ',var ,var)) | |
(let ((x 42)) | |
(name x)) | |
"Name=x, Value=42" | |