This file contains hidden or 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
| alias gitroot='cd "$(git rev-parse --show-toplevel)"' |
This file contains hidden or 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
| (ns io.codehopper.fun-with-redis | |
| (:require [taoensso.carmine :as car :refer (wcar)] | |
| [skyscraper.core :as sky] | |
| [skyscraper.cache :as sky.cache] | |
| [reaver])) | |
| (def seed | |
| [{:url "https://clojuredays.org", | |
| :processor :page | |
| :page 2022}]) |
This file contains hidden or 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
| ;; fork me and include your solution! | |
| (ns nonograms.core | |
| (:require [clojure.java.io :as io]) | |
| (:import (javax.imageio ImageIO) | |
| (java.awt.image BufferedImage) | |
| (java.awt Image))) | |
| (defn read-image | |
| "Reads an image" | |
| [path] |
This file contains hidden or 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
| ;type | |
| ;29 | |
| abstract | |
| actor | |
| agent | |
| archimate | |
| artifact | |
| boundary | |
| card | |
| class |
This file contains hidden or 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
| ; | |
| ; Copyright 2017 Fintech Open Source Foundation | |
| ; SPDX-License-Identifier: Apache-2.0 | |
| ; | |
| ; Licensed under the Apache License, Version 2.0 (the "License"); | |
| ; you may not use this file except in compliance with the License. | |
| ; You may obtain a copy of the License at | |
| ; | |
| ; http://www.apache.org/licenses/LICENSE-2.0 | |
| ; |
This file contains hidden or 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
| (ns fossa-parser.core | |
| (:require [clojure.java.io :as io] | |
| [clojure.string :as string])) | |
| (defn maybe-license | |
| "If a license header is found, returns the license" | |
| [[pre lic post]] | |
| (let [thick-line #"^=+$"] | |
| (when (and (re-matches thick-line pre) | |
| (re-matches thick-line post)) |
NewerOlder