Good blog for eclipse plugin developers https://cvalcarcel.wordpress.com/
Java, Eclipse Plugin Development and best software development practices
Thursday, January 23, 2020
Thursday, December 19, 2019
Eclipse CDT: How to exclude certain folders for not showing error markers
Eclipse CDT Code Analysis Plugins
org.eclipse.cdt.codan.core
org.eclipse.cdt.codan.core.cxx
org.eclipse.cdt.codan.ui
org.eclipse.cdt.codan.ui.cfgview
org.eclipse.cdt.codan.ui.cxx
org.eclipse.cdt.codan.core.cxx
org.eclipse.cdt.codan.ui
org.eclipse.cdt.codan.ui.cfgview
org.eclipse.cdt.codan.ui.cxx
Monday, December 16, 2019
Uninstall Python from macOS
Remove the Python 3.8 applications directory
$ sudo rm -rf "/Applications/Python 3.8”
$ sudo rm -rf "/Applications/Python 3.8”
Remove the third-party Python 3.8 framework
$ sudo rm -rf /Library/Frameworks/Python.framework/Versions/3.8Remove the symbolic links, in /usr/local/bin, that point to this Python version. See them using
$ ls -l /usr/local/bin | grep '../Library/Frameworks/Python.framework/Versions/3.8’
and then run the following command to remove all the links:
$ cd /usr/local/bin/
$ ls -l /usr/local/bin | grep '../Library/Frameworks/Python.framework/Versions/3.8’ | awk '{print $9}' | tr -d @ | xargs rm
Edit your shell profile file(s) to remove /Library/Frameworks/Python.framework/Versions/3.8 to your PATH environment file. Depending on which shell you use, any of the following files may have been modified: ~/.bash_login, ~/.bash_profile, ~/.cshrc, ~/.profile, ~/.tcshrc, and/or ~/.zprofile.
$vim ~/.bash_profile
Resources:
Wednesday, November 27, 2019
Interesting article on improving Eclipse CDT Indexing
- Performance Improvement of roughly 37%!
- It used weak references which are garbage collected as soon as heap size becomes sparse
Wednesday, November 20, 2019
Tuesday, June 18, 2019
What tense should I use in git commit message?
So far I was mostly using the past tense since it looks natural to me but the git best practices suggest us to use imperative sentence.
Example:
My old git message:
Added IDF commands into CMake editor
New git message:
Add IDF commands into CMake editor
Follow this thread for more discussion on this:
https://stackoverflow.com/questions/3580013/should-i-use-past-or-present-tense-in-git-commit-messages
Example:
My old git message:
Added IDF commands into CMake editor
New git message:
Add IDF commands into CMake editor
Follow this thread for more discussion on this:
https://stackoverflow.com/questions/3580013/should-i-use-past-or-present-tense-in-git-commit-messages
Subscribe to:
Posts (Atom)