Skip to content

Commit

Permalink
GITBOOK-83: updated all links in tutorials
Browse files Browse the repository at this point in the history
  • Loading branch information
aerial-robotics-iitk-bot authored and gitbook-bot committed Nov 29, 2023
1 parent 39ffffd commit c567707
Show file tree
Hide file tree
Showing 11 changed files with 25 additions and 28 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ Here are the articles in this book:
[resources](resources/)
{% endcontent-ref %}

{% content-ref url="competitions/" %}
[competitions](competitions/)
{% endcontent-ref %}

{% content-ref url="setting-up-offboard-mission/" %}
[setting-up-offboard-mission](setting-up-offboard-mission/)
{% endcontent-ref %}
2 changes: 1 addition & 1 deletion tutorials/cheatsheets/cmake_cheatsheet.md
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ ENDIF(WIN32)
 \
CMake also contains a feature to automatically find libraries (based on a number of suggested locations) using the command . However, this feature works best on macOS and Linux.

[https://cmake.org/Wiki/CMake:How\_To\_Find\_Libraries](https://cmake.org/Wiki/CMake:How\_To\_Find\_Libraries).
{% embed url="https://gitlab.kitware.com/cmake/community/-/wikis/doc/tutorials/How-To-Find-Libraries" %}

## C++ version

Expand Down
19 changes: 9 additions & 10 deletions tutorials/cheatsheets/git_cheatsheets.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,12 @@
#### Index

* [Commit History](git\_cheatsheets.md#commit-history)
* [Move / Rename](git\_cheatsheets.md#move--rename)
* [Branches & Tags](git\_cheatsheets.md#branches--tags)
* [Update & Publish](git\_cheatsheets.md#update--publish)
* [Merge & Rebase](git\_cheatsheets.md#merge--rebase)
* [Move / Rename](git\_cheatsheets.md#move-rename)
* [Branches & Tags](git\_cheatsheets.md#branches-and-tags)
* [Merge & Rebase](git\_cheatsheets.md#merge-and-rebase)
* [Undo](git\_cheatsheets.md#undo)
* [Git Flow](git\_cheatsheets.md#git-flow)


***

### Search

Expand All @@ -36,7 +34,7 @@ $ git log -S 'keyword'
$ git log -S 'keyword' --pickaxe-regex
```


***

### Commit History

Expand Down Expand Up @@ -64,7 +62,7 @@ $ git log --oneline <origin/master>..<remote/master> --left-right
$ git blame <file>
```


***

### Move / Rename

Expand All @@ -76,7 +74,7 @@ Rename Index.txt to Index.html
$ git mv Index.txt Index.html
```


***

### Branches & Tags

Expand Down Expand Up @@ -349,7 +347,7 @@ squash <commit_id2>
squash <commit_id3>
```


***

### Undo

Expand Down Expand Up @@ -409,3 +407,4 @@ $ git add .
$ git commit -m "remove xyz file"
```

***
2 changes: 1 addition & 1 deletion tutorials/how-to-write-a-ros-package/conversions.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ transform_broadcaster_.sendTransform(

### minkindr (aslam::Transformation)

Please use the [**minkindr\_conversions**](https://github.com/ethz-asl/minkindr\_ros/minkindr\_conversions) package in the [minkindr\_ros](https://github.com/ethz-asl/minkindr\_ros) repo. This also wraps some of the Eigen/TF conversions for common datatypes (`Eigen::Quaterniond`, `Eigen::Vector3d`), so it is a viable alternative to {tf,eigen}\_conversions in most cases. It also transforms minkindr Transformations back and forth to both messages and TF.
Please use the [**minkindr\_conversions** ](https://github.com/ethz-asl/minkindr\_ros/tree/master/minkindr\_conversions)package in the [minkindr\_ros](https://github.com/ethz-asl/minkindr\_ros) repo. This also wraps some of the Eigen/TF conversions for common datatypes (`Eigen::Quaterniond`, `Eigen::Vector3d`), so it is a viable alternative to {tf,eigen}\_conversions in most cases. It also transforms minkindr Transformations back and forth to both messages and TF.

* [Code Documentation - Message](https://github.com/ethz-asl/minkindr\_ros/blob/master/minkindr\_conversions/include/minkindr\_conversions/kindr\_msg.h)
* [Code Documentation - TF](https://github.com/ethz-asl/minkindr\_ros/blob/master/minkindr\_conversions/include/minkindr\_conversions/kindr\_tf.h)
Expand Down
4 changes: 2 additions & 2 deletions tutorials/how-to-write-a-ros-package/transformations.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ Use [minkindr](https://github.com/ethz-asl/minkindr) to represent transformation

{% embed url="https://github.com/ethz-asl/minkindr" %}

Further details on the transformation notation, frame names and conventions can be found on the [Coordinate Systems wiki page](https://github.com/ethz-asl/mav\_tools/wiki/Coordinate-Systems).
Further details on the transformation notation, frame names and conventions can be found on the [wiki page](https://github.com/ethz-asl/mav\_tools\_public/wiki).

{% embed url="https://github.com/ethz-asl/mav_tools/wiki/Coordinate-Systems" %}
{% embed url="https://github.com/ethz-asl/mav_tools_public" %}

## TF2

Expand Down
4 changes: 4 additions & 0 deletions tutorials/workspace-setup/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,7 @@ Here are the articles in this section:
{% content-ref url="ardupilot-setup.md" %}
[ardupilot-setup.md](ardupilot-setup.md)
{% endcontent-ref %}

{% content-ref url="installing-ground-control-station/" %}
[installing-ground-control-station](installing-ground-control-station/)
{% endcontent-ref %}
4 changes: 1 addition & 3 deletions tutorials/workspace-setup/installing-ubuntu.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,7 @@ Steps to unallocate space on windows

## Create a bootable USB drive

{% embed url="https://rufus.ie/en_IE.html" %}
Rufus Official Site for downloading. Rufus helps you burn ISO on your drives
{% endembed %}
{% embed url="https://rufus.ie/en/" %}

Install Rufus, and upon starting the application should look like:

Expand Down
2 changes: 1 addition & 1 deletion tutorials/workspace-setup/px4-setup/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,4 @@ make px4fmu-v2_default upload

For a more detailed and extensive build, check this:

{% embed url="https://dev.px4.io/en/setup/building:px4.html" %}
{% embed url="https://docs.px4.io/main/en/dev_setup/building_px4.html" %}
2 changes: 1 addition & 1 deletion tutorials/workspace-setup/px4-setup/px4-toolchain-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Finally, if you have been successful, you should see a drone hovering in the mid
roslaunch px4 mavros_posix_sitl.launch
```


***

> Do **NOT** use the convenience Bash scripts provided on the website
Expand Down
8 changes: 0 additions & 8 deletions tutorials/workspace-setup/spruce-up-your-space.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,3 @@ You can check out how to get started here:
## ZSH with PowerLevel10K:

{% embed url="https://dev.to/abdfnx/oh-my-zsh-powerlevel10k-cool-terminal-1no0" %}

{% embed url="https://www.triology.de/en/blog-entries/zsh-with-powerlevel9k" %}
Left for legacy reasons
{% endembed %}

## GNOME:

{% embed url="https://itsfoss.com/how-to-install-gnome-in-ubuntu-14-04/" %}
2 changes: 1 addition & 1 deletion tutorials/workspace-setup/untitled.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ Download it here:
Sublime Text is a proprietary cross-platform source code editor with a Python application programming interface. To install, follow this page:
{% embed url="https://www.sublimetext.com/docs/3/linux:repositories.html" %}
{% embed url="https://www.sublimetext.com/docs/linux_repositories.html" %}
**How To Install The Latest Version of Eclipse on Ubuntu**
Expand Down

0 comments on commit c567707

Please sign in to comment.