https://github.com/temken/til
Today I learned...
https://github.com/temken/til
Last synced: 4 months ago
JSON representation
Today I learned...
- Host: GitHub
- URL: https://github.com/temken/til
- Owner: temken
- License: mit
- Created: 2020-05-06T07:51:44.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2022-05-31T08:29:10.000Z (about 4 years ago)
- Last Synced: 2025-01-17T22:17:37.876Z (over 1 year ago)
- Size: 25.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# :computer: TIL
Inspired by [https://github.com/bast/til](https://github.com/bast/til).
Today I learned...
---
### Shell
- [Append a text file from the terminal](bash/append_a_file.md)
### CMake
- [Define a target-specific macro](cmake/define_target_specific_macro.md)
- [Generate a header file with git info and directory macros using CMake](cmake/generate_header_file_with_macros.md)
- [Pass on the include path of a library](cmake/pass_on_include_folder_of_library.md)
- [Run CMake with a specific compiler](cmake/specify_compiler.md)
### C++
- [Automatically format c++ code using custom rules with *clang-format*](cpp/use_clang-format.md)
- [Fix the seed of a pseudo-random number generator](cpp/fix_prng_seed.md)
- [Iterate over a list with a ```for``` loop](cpp/iterate_over_list.md)
### Git
- [Add commits to a pull-request from another user's fork](git/add_commits_to_fork_PR.md)
- [Create a global, machine-specific .gitignore file for all repositories](git/global_gitignore.md)
- [Create a new branch locally and push to remote](git/create_new_branch_locally.md)
- [Fix up a recent commit with ```-fixup``` and ```-autosquash```](git/fix_up_a_recent_commit.md)
- [Modify the most recent git commit](git/modify_recent_commit.md)
- [Rename a branch](git/rename_branch.md)
- [Rename a repository](git/rename_repository.md)
- [Revert (and save) uncommited changes](git/revert_uncommited_changes.md)
- [Undo the most recent git commit](git/undo_recent_commit.md)
### Markdown
- [Use syntax highlighting in Markdown](markdown/use_syntax_highlighting.md)
### Rust
- [Install Rust on Mac](rust/install_rust.md)
- [Start a new Rust project with cargo](rust/start_new_project.md)
### Travis CI
- [Check the syntax of a travis build script](travis/check_script.md)