-
download library https://sourceforge.net/projects/ta-lib/files/ta-lib/0.4.0/ta-lib-0.4.0-src.tar.gz/download
-
unpack library
-
build and install library:
./autogen.sh
./configure
make
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| separator_block_width=14 | |
| #[disk-root] | |
| #label=: | |
| #command=/usr/share/i3blocks/disk / | |
| #interval=30 | |
| #color=#1793D1 | |
| #[disk-home] | |
| #label=: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| separator_block_width=14 | |
| #[disk-root] | |
| #label=: | |
| #command=/usr/share/i3blocks/disk / | |
| #interval=30 | |
| #color=#1793D1 | |
| #[disk-home] | |
| #label=: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This is a configuration file for the MOC player. It should be named 'config' | |
| # and placed in directory ~/.moc/ | |
| # Comments begins with '#'. | |
| # You can use quotes and escape ('\') in parameters | |
| # Show file titles (title, author, album) instead of file names. | |
| ReadTags = yes | |
| # Directory in which you store music files, if you specify it, you will be able | |
| # to quickly go to this directory with the '-m' parameter or the 'm' command. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $> export LIBRARY_PATH=/usr/lib/x86_64-linux-gnu:$LIBRARY_PATH | |
| $> vivado_hls |
To remove a submodule you need to:
- Delete the relevant section from the .gitmodules file.
- Stage the .gitmodules changes git add .gitmodules
- Delete the relevant section from .git/config.
- Run git rm --cached path_to_submodule (no trailing slash).
- Run rm -rf .git/modules/path_to_submodule
- Commit git commit -m "Removed submodule "
- Delete the now untracked submodule files
- rm -rf path_to_submodule
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # install homebrew (https://brew.sh/) | |
| /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
| # basic software | |
| brew install \ | |
| iterm2 \ | |
| mc \ | |
| google-chrome \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "title": "switch English, Russian", | |
| "rules": [ | |
| { | |
| "description": "Use caps switch language to English, left_shift+caps - Russian, left_control+caps - Georgian", | |
| "manipulators": [ | |
| { | |
| "from": { | |
| "key_code": "caps_lock" | |
| }, |
Get tree of changed files between versions and save it to TAR archive
git diff-tree -r --no-commit-id --name-only --diff-filter=ACMRT $commit_id | xargs tar -rf mytarfile.targit diff-tree -r $commit_id:- Take a diff of the given commit to its parent(s) (including all subdirectories, not just the top directory).--no-commit-id --name-only:- Do not output the commit SHA1. Output only the names of the affected files instead of a full diff.--diff-filter=ACMRT:- Only show files added, copied, modified, renamed or that had their type changed (eg. file → symlink) in this commit. This leaves out deleted files.
OlderNewer