list found at: docker hub
docker pull ubuntu:xenialthe hash is the docker image ID
Note: the hash after -it is the image ID from docker container ls -a
| curl -s https://bible.mintz5.com/bible/daily/nt | jq '.. | objects | select((.Verse >= 06) and (.Verse <= 11))' | |
| { | |
| "Book": "2CORINTHIANS", | |
| "Chapter": 2, | |
| "Verse": 6, | |
| "Text": "Sufficient to such a man [is] this punishment, which [was inflicted] of many." | |
| } | |
| { | |
| "Book": "2CORINTHIANS", | |
| "Chapter": 2, |
| [Unit] | |
| Description=bible | |
| After=syslog.target | |
| [Service] | |
| ExecStart=/home/rmintz/bin/bible_api -dbPath /home/rmintz/kjv.db | |
| Restart=always | |
| KillSignal=SIGQUIT | |
| Type=fork | |
| StandardError=syslog |
| for i in $(curl 'https://singthekjv.app/scripture-songs' | egrep -o 'data-path=".*"' | tr " " "\n" | egrep "*.mp3" | cut -f2 -d'=' | tr -d '"'); do wget --tries=3 "https://singthekjv.app/$i" ; done |
| https://boruch-baum.github.io/emacs_mini_manual/c-ide.html | |
| dumb-jump | |
| semantic-mode | |
| semantic-ia-fast-jump | |
| sr-speedbar-open | |
| global-semantic-idle-summary-mode # this one shows me where the definition is! | |
| semantic-stickyfunc-mode # Keeps function name at the top |
list found at: docker hub
docker pull ubuntu:xenialthe hash is the docker image ID
Note: the hash after -it is the image ID from docker container ls -a
| <html> | |
| <head> | |
| <style> | |
| .calendar-wrapper { | |
| width: 360px; | |
| margin: 3em auto; | |
| padding: 2em; | |
| border: 1px solid #dcdcff; | |
| border-radius: 5px; | |
| background: #fff; |
| #!/bin/bash | |
| key=$(cat ~/.webster/config.json | jq .key | sed s/\"//g) | |
| curl -s "https://www.dictionaryapi.com/api/v3/references/collegiate/json/$1?key=$key" | jq .[0].shortdef |
| [r4wm@todo hoyj_clickhouse_database]$ cat Dockerfile | |
| FROM yandex/clickhouse-server | |
| RUN apt update | |
| COPY create_database.sh . | |
| COPY create_media_table.sql . | |
| VOLUME /home/r4wm/hoyj_clickhouse_database:/var/lib/clickhouse | |
| EXPOSE 8123/tcp | |
| [r4wm@todo hoyj_clickhouse_database]$ |