Sunday, January 03, 2021
new year, re-styled the site, removed those non-sense pwa / js / minify stuffs, now only has one plain css file
Monday, January 04, 2021
not a heavy core.logic user, I'll use it for simple IQ questions:
(use 'clojure.core.logic)
(require '[clojure.core.logic.fd :as fd])
(run* [q]
(fresh [x y z]
(fd/in x y z q (fd/interval 1 200))
(fd/eq
(= (+ x x x) 45)
(= (+ y y y) 21)
(= (+ z z z) 12)
(= (+ z (* x y)) q))))
Tuesday, January 05, 2021
this is a great artile on why and how about polimorphism in clojure: Clojure from the ground up: polymorphism
I learned something from it too:
- get super types:
(supers clojure.lang.PersistentList)
, useinstance?
to check - define relationships via
derive
, check withisa?
,parents
,descendants
: - resolve ambiguity with
prefer-method
:(prefer-method put-away ::refrigerated ::grocery)
Thursday, January 14, 2021
I only use twitter as bookmarker, but it's time to remove this dependency
working on some clojure with sqlite:
Friday, January 15, 2021
I extracted data in my tweets and put it here, will do pager later
it was pretty fun, this time I used sqlite, the best thing is I can do an onliner query and feed to any script:
$ sqlite3 data.db -cmd ".headers on" -cmd ".mode csv" "select * from ..."
then I only deal with the csv data, much simpler
I'm also moving the search engine from elasticsearch to sqlite full text search as well, it's lots of resources wasted on elasticsearch for such small data set.
Monday, January 18, 2021
for sqlite full text search, FTS5
has improvements on sort by relevance and highlight results
to check whether FTS5
is available:
sqlite> pragma compile_options;
look for ENABLE_FTS5
usage: SQLite FTS5 Extension
I need to compile it in order to get FTS5
support
$ wget "https://www.sqlite.org/src/tarball/sqlite.tar.gz?r=release" -O sqlite.tar.gz
...
$ ./configure --enable-fts5
$ make
$ sudo make install
learned about the Self language from A tour of Self
kinda like smalltalk, here's another series about it: Series about Self
a long read: How to open a file in Emacs
Tuesday, January 19, 2021
saw few new manning books on safari online, haven't read any java book for few years, reading this one: Classic Computer Science Problems in Java
another one is Deep Learning with Structured Data, because it's about pandas at the beginning.
I'm also interested in this one: Math for Programmers actually it's about game development I think
Cloud Native Go has some updates too
Wednesday, January 27, 2021
learned about Task Spooler, which could be useful for some of my local tasks
Saturday, January 30, 2021
reading Programming Algorithms in Lisp and The Pragmatic Programmer
and re-pick up common lisp again:
$ curl -O https://beta.quicklisp.org/quicklisp.lisp
$ curl -O https://beta.quicklisp.org/quicklisp.lisp.asc
$ gpg --verify quicklisp.lisp.asc quicklisp.lisp
$ sbcl --load quicklisp.lisp
* (quicklisp-quickstart:install)
* (ql:quickload :rutils)
* (ql:add-to-init-file)
* (quit)
CL-USER> (ql:quickload :rutils)
CL-USER> (in-package :rtl-user)
CL-USER> (named-readtables:in-readtable rtl:rutils-readtable)
- Restarts in Common Lisp
- Modern, functional Common Lisp: Myths and tips
- Ask HN: Production Lisp in 2020?
- ruricolist/cloture: Clojure in Common Lisp
- susam/emacs4cl: A 35 line ~/.emacs to quickly set up vanilla Emacs for Common Lisp programming
there's another book I'm interested in: The Common Lisp Condition System
Sunday, January 31, 2021
reading Hands-On Reactive Programming with Clojure
but I'm trying to do examples with shadow-cljs
$ npx create-cljs-project acme-app
$ npx shadow-cljs server
then just following their README to create html
Blog Archive
- Newer Entries
- 2021 February
- 2021 March
- 2021 April
- 2021 May
- 2021 June
- 2021 August
- 2021 September
- 2021 December
- 2022 March
- 2022 April
- 2022 May
- 2022 June
- 2022 July
- 2022 August
- 2022 September
- 2022 October
- 2022 November
- 2022 December
- 2023 January
- 2023 February
- 2023 March
- 2023 April
- 2023 July
- 2023 August
- 2023 September
- 2023 October
- 2023 November
- 2023 December
- 2024 January
- 2024 February
- 2024 March
- 2024 April
- 2024 May
- 2024 June
- 2024 August
- 2024 September
- 2024 October
- 2024 November
- Older Entries
- 2020 December
- 2020 November
- 2020 October
- 2020 September
- 2020 August
- 2019 December
- 2019 November
- 2019 October
- 2019 July
- 2019 May
- 2019 April
- 2019 March
- 2019 February
- 2019 January
- 2018 December
- 2018 November
- 2018 October
- 2018 September
- 2018 August
- 2018 July
- 2018 June
- 2018 May
- 2018 April
- 2018 March
- 2018 February
- 2018 January
- 2017 December
- 2017 November
- 2017 October
- 2017 September
- 2017 August
- 2017 July
- 2017 June
- 2017 May
- 2017 April
- 2017 March
- 2017 February
- 2017 January
- 2016 December
- 2016 November
- 2016 October
- 2016 September
- 2016 August
- 2016 July
- 2016 June
- 2016 May
- 2016 April
- 2016 March
- 2016 February
- 2016 January
- 2015 December
- 2015 November
- 2015 October
- 2015 September
- 2015 August
- 2015 July
- 2015 June
- 2015 May
- 2015 April
- 2015 March
- 2015 February
- 2015 January
- 2014 December
- 2014 November
- 2014 October
- 2014 September
- 2014 August
- 2014 March
- 2014 February
- 2014 January
- 2013 December
- 2013 October
- 2013 July
- 2013 June
- 2013 May
- 2013 March
- 2013 February
- 2013 January
- 2012 December
- 2012 November
- 2012 October
- 2012 September
- 2012 August