16th Week of 2021
Computer Science⚑
GNULinux⚑
(../computer_science/gnu_linux/mkdocs.md)⚑
-
New: (../computer_science/gnu_linux/mkdocs.md#plugins)
(https://github.com/chrieke/mkdocs-exclude-search) is a mkdocs plugin that lets you exclude selected chapters from the search index.
-
New: (../computer_science/gnu_linux/mkdocs.md#plugins)
(https://github.com/lyz-code/mkdocs-newsletter) is a plugin that automatically creates newsletters from the changes in a (mkdocs) git repository.
(../computer_science/gnu_linux/parallel.md)⚑
-
New: GNU/Parallel.
(https://www.gnu.org/software/parallel/) is a shell tool for executing jobs in parallel using one or more computers.
(../computer_science/gnu_linux/vim.md)⚑
-
New: Sort lines.
Vim has a very powerful (https://vim.fandom.com/wiki/Sort_lines), or it can interface with an external one.
Programming⚑
(../computer_science/programming/code_style/git_commits.md)⚑
- New: Add Angular commit convention.
- New: (../python_basics.md#string-formatting)
-
New: Filters.
Variables can be modified by filters. Filters are separated from the variable by a pipe symbol (
|
) and may have optional arguments in parentheses. Multiple filters can be chained. The output of one filter is applied to the next.
(../computer_science/programming/python/networkx.md)⚑
- New: Import graph from pandas df edgelist.
(../computer_science/programming/python/plotly.md)⚑
-
New: (../computer_science/programming/python/plotly.md#dash)
(https://dash.plotly.com/) is a productive Python framework for building web analytic applications.
(../projects/projects.md)⚑
-
New: (../projects/projects.md#finished-projects)
Modeling of a dynamic system using fuzzy logic.
Other⚑
-
New: Http.server.
You can create a basic HTTP server that serves the files in the current directory with (https://docs.python.org/3/library/http.server.html#module-http.server)