Skip to content

Commit

Permalink
notes
Browse files Browse the repository at this point in the history
  • Loading branch information
BostX committed Jun 19, 2024
1 parent 1786f37 commit df8210b
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
16 changes: 6 additions & 10 deletions notes/bric_a_brac.scrbl
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,12 @@
}

@block{@block-name{Various}
http://blog.interfacevision.com/design/design-visual-progarmming-languages-snapshots/
https://futureofcoding.org/catalog/

Flutter: Google's UI toolkit for building natively compiled apps for mobile,
web, desktop, and embedded devices from a single codebase.

SPAM SPiced hAM

CORS Cross-Origin Resource Sharing
Expand Down Expand Up @@ -264,7 +270,6 @@
}

@block{@block-name{Google Advanced / Extended Search}

# search for <something> in gmail using URL
https://mail.google.com/mail/u/0/#search/<something>

Expand Down Expand Up @@ -388,15 +393,11 @@
OSMAnd
https://github.com/osmandapp/OsmAnd

Prepare routes: View Ranger
https://my.viewranger.com/user/routes/myroutes

Weather
https://www.wetter.com/deutschland/stuttgart/DE0010287.html
https://www.wetter.com/deutschland/muenchen/DE0006515.html

@block{@block-name{Repair and Prepare}
Swap normal for tubeless tires
Baumarkt - Socket for the Nigrin Reifen Dicht

@block{@block-name{Bicycle chain}
Expand Down Expand Up @@ -424,10 +425,6 @@
}
}


http://blog.interfacevision.com/design/design-visual-progarmming-languages-snapshots/
https://futureofcoding.org/catalog/

@block{@block-name{Law and LegalTech}
Proof of X - Consensus algorithm(s) used by Crypto currecies
Smart Contracts
Expand Down Expand Up @@ -469,7 +466,6 @@ https://futureofcoding.org/catalog/
https://www.legaltech.com/
https://en.wikipedia.org/wiki/Legal_technology


@block{@block-name{Logical English as a Programming Language for Law and Ethics}
https://logicalenglish.logicalcontracts.com/

Expand Down
20 changes: 12 additions & 8 deletions notes/cli/git.scrbl
Original file line number Diff line number Diff line change
Expand Up @@ -244,12 +244,12 @@

# join all lines
$ git shortlog --regexp-ignore-case --summary --numbered --grep='.*release.*since.*' | awk '{print $1}' | tr '\n' ' '
2 1 1 1 1 1 1 ⏎ ╭─    ~/dev/guix   master ⇡1 ?1 ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── ✔    14:46:56
2 1 1 1 1 1 1 ⏎ ╭─    ~/dev/guix   master ⇡1 ?1 ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── ✔    14:46:56
# join all lines into columns
$ git shortlog --regexp-ignore-case --summary --numbered --grep='.*release.*since.*' | awk '{print $1}' | paste -d " " - - -
$ git shortlog --regexp-ignore-case --summary --numbered --grep='.*release.*since.*' | awk '{print $1}' | paste -d " " - - -
2 1 1
1 1 1
1
1

# list all commits for a specific day / date / timestamp
git log --after="2013-12-11 00:00" --before="2013-12-11 23:57"
Expand All @@ -259,11 +259,15 @@
git log master --author=John
git shortlog master --author=John

# show settings: --local use .git/config; --global use ~/.gitconfig
git config --local --list
git config --local --get <setting>
git config --global --list
git config --global --get <setting>
# show all settings; .git/config overrides ~/.gitconfig
git config --list # read both
git config --get <setting> # read both
git config --get alias.fs # read alias.fs
git config --list --local # read only from .git/config
git config --list --global # read only from ~/.gitconfig
# show only particular setting
git config --get <setting> --local # read only from .git/config
git config --get <setting> --global # read only from ~/.gitconfig

# set user.name and user.mail
git config --global user.name "Bost"
Expand Down
6 changes: 3 additions & 3 deletions notes/editors/org_mode.scrbl
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@

#+begin_src fish :exports both :results output
set deps '
{:deps {cider/cider-nrepl {:mvn/version "0.30.0"},
nrepl/nrepl {:mvn/version "1.0.0"},
refactor-nrepl/refactor-nrepl {:mvn/version "3.9.0"}}
{:deps {cider/cider-nrepl {:mvn/version "0.49.0"},
nrepl/nrepl {:mvn/version "1.2.0"},
refactor-nrepl/refactor-nrepl {:mvn/version "3.10.0"}}
:aliases
{:cider/nrepl
{:main-opts
Expand Down

0 comments on commit df8210b

Please sign in to comment.