Download activity data from Garmin Forerunner 310XT on Linux

My everyday computer is running CentOS. There is no way install Garmin connect to upload data from my old 310XT. I am sure there are other ways to do so, but the following works for me.
There are two software packages need to install: openant and ant-fs.

1. Steps to install openant
 git clone https://github.com/Tigge/openant
cd openant
sudo python setup.py install

2. steps to install ANT-FS
git clone https://github.com/Tigge/antfs-cli
cd antfs-cli
sudo python setup.py install

3. Pair your ant receiver with your watch
antfs-cli  --pair

4. Read data from your watch
antfs-cli 
The downloaded fit data from your watch is saved at
~/.config/antfs-cli/###/activities/


Highlight Search Keyword in Oracle Apex 5


Follow the steps below:
1. Copy and paste the following JavaScript to the page "Function and Global Variable Declaration" section
http://johannburkard.de/resources/Johann/jquery.highlight-5.js

2. Add the following style sheet to the page CSS inline section:
.highlight { background-color: yellow }

3. Create interactive report, set static id: highlight_report
4. Create two dynamic actions for the interactive report region
4.1 before refresh: 
Name: before refresh
Event: Before refresh
Region: is your interactive region
True Action: execute JavaScript Code

gv_search = $('#highlight_report_search_field').val()

4.2 After refresh
Name: after refresh
Event: After refresh
Region: is your interactive region
True Action: execute JavaScript Code

if (gv_search) {
$('td').highlight(gv_search);
}


Demo, go to use demo/demo and choose "Highlight Search Field"




Datatable static image not found on the server

When you use ```datatables.min.css``` and ```datatables.min.js``` locally, instead of datatables CDN, you may have encountered that ```sort...