Recent
ros-2-setup
ros-2-setup
Here's how I setup ROS 2 Foxy on my machine (Ubuntu 20.04)
- Get GPG key
sudo apt update && sudo apt install curl gnupg2 lsb-release
sudo curl -sSL https://raw.githubusercontent.com/ros/rosdistro/master/ros.key -o /usr/share/keyrings/ros-archive-keyring.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/ros-archive-keyring.gpg] http://packages.ros.org/ros2/ubuntu $(source /etc/os-release && echo $UBUNTU_CODENAME) main" | sudo tee /etc/apt/sources.list.d/ros2.list > /dev/null
- Update
sudo apt update && sudo apt upgrade
- Install
sudo apt install ros-foxy-desktop
- Setup environment
source /opt/ros/foxy/setup.bash
- add above line to end of
~/.bashrc
- Verify ROS is in environment
printenv | grep -i ROS
blog-creation
blog-creation
- Install Node.js
- Install TiddlyWiki
npm i -g tiddlywiki
- To update:
npm update -g
- To update:
- Create a new wiki
tiddlywiki mywiki --init server
- Start server
tiddlywiki mywiki/ --listen port=8080
- Go to https://giffmex.org/gifts/tiddlyblink.html#TiddlyBlink%20home and drag the "tb" tag over and import
- Go to https://giffmex.org/gifts/transclusioninpopups.html and drag the three links over and import
- Add the following to
$:/core/templates/static.tiddler.html
under the body tag<div class="tc-sidebar-scrollable" style="overflow: auto;"> <div class="tc-sidebar-header"><h1 class="tc-site-title">Site Title</h1></div> <div class="tc-site-subtitle">Site subtitle</div> </div>
- Add the following to
$:/core/templates/static.template.css
at the bottom.tc-tiddler-controls { display: none; } .tc-tab-buttons { display: none; }
- Go to
$:/ControlPanel
and do the following- In Info –> Basics –> Default tiddlers, click retain story ordering
- In Appearance –> Theme Tweaks
- Story left position, 5%
- Story right, 66%
- Story width, 61%
- Tiddler width, 100%
- Build static assets
tiddlywiki mywiki/ --build
References: