Skip to content

Instantly share code, notes, and snippets.

View mauricioszabo's full-sized avatar

Maurício Szabo mauricioszabo

View GitHub Profile
@mauricioszabo
mauricioszabo / query.clj
Created October 5, 2020 22:47
Chlorine's datalog ideas
;; What I want to do is something like this:
(def res
(query '[:find ?meta
:where
[?e :editor/contents "p/deferred"]
[?e :editor/ns "foo.bar"]
[?fqn :repl/fqn ?e]
[?var :repl/var ?fqn]
[?meta :repl/meta ?fqn]]))
@mauricioszabo
mauricioszabo / chlorine-config.cljs
Last active March 31, 2021 17:42
My Chlorine Config
(defn- wrap-in-tap [code]
(str "(let [value " code
" rr (try (resolve 'requiring-resolve) (catch Throwable _))]"
" (if-let [rs (try (rr 'cognitect.rebl/submit) (catch Throwable _))]"
" (rs '" code " value)"
" (tap> value))"
" value)"))
(defn tap-top-block []
(p/let [block (editor/get-top-block)]
@mauricioszabo
mauricioszabo / chlorine-config.cljs
Last active August 25, 2020 18:53
A simple POC on rendering custom test reporters inside Chlorine
(def old-fail-blob
'(defmethod clojure.test/report :fail [m]
(clojure.test/with-test-out
(clojure.test/inc-report-counter :fail)
(println "\nFAIL in" (clojure.test/testing-vars-str m))
(when (seq clojure.test/*testing-contexts*) (println (clojure.test/testing-contexts-str)))
(when-let [message (:message m)] (println message))
(println "expected:" (pr-str (:expected m)))
(println " actual:" (pr-str (:actual m))))))
@mauricioszabo
mauricioszabo / crux.clj
Created July 8, 2020 19:34
Crux by-temporality
(defn start-standalone-node ^crux.api.ICruxAPI []
(crux/start-node {:crux.node/topology '[crux.standalone/topology]
:crux.kv/db-dir "/tmp/crux"}))
(def conn (start-standalone-node))
(def day-1
(crux/submit-tx conn [[:crux.tx/put
{:crux.db/id :alice
:location :north
@mauricioszabo
mauricioszabo / with_code.clj
Last active April 18, 2022 04:25
Open Socket REPL on CLR or Clojerl
#Clojerl
./bin/clje \
-e "(do (require 'clojure.core.server) \
(clojure.core.server/start-server \
{:name \"socket-repl\" \
:port 4444 \
:accept 'clojure.main/repl \
:address \"localhost\"}))" -r
#CLR
Synthetical Country
(Bolzhidar, explaining Croatia or Ucraine?)
APIs Plumber (Encanador de APIs)
(On Telegram, explaining people that use JS or Python and suffer to implement state control or immutable structures, and end up plumbing various libraries)
Resume Driven Development
(On Telegram, a kind of learning when you want to inflate your resume or find a job so you study mainstream technologies)
import { app } from './js/test_cljs.core';
export default app
@mauricioszabo
mauricioszabo / coercion_example.clj
Created December 27, 2018 14:21
Coercion example with Clojure, Schemas, and Paprika
(require '[paprika.schemas :as schemas]
'[cheshire.core :as json])
(def Person {:name schemas/NonEmptyStr
:surname schemas/NonEmptyStr
:cpf (schemas/digits-string 11)
:birth-date schemas/Date})
(def as-person (schemas/coercer-for Person))
@mauricioszabo
mauricioszabo / benchmark_collections.rb
Last active April 28, 2018 02:48
Anima's Examples
require "hamster"
require "benchmark"
require "set"
TIMES = 2_000_000
Benchmark.bmbm do |r|
x = arr = nil
r.report("Mutable array - push") do
x = []
(ns example.core
(:require [clojure.java.io :as io]
[clojure.data.csv :as csv]))
; Using sample CVS from this site:
; http://www.sample-videos.com/download-sample-csv.php
; and renamed to bigfile.csv
(defn row->product [[name manufacter _ _ _ price _ _]]
{:name name
:manufacter manufacter