- connect kobo to your device
- open a file browser and navigate to the mounted kobo folder
- navigate to the hidden folder
.kobo/Kobo
- open the file
Kobo eReader.conf
- navigate to the section
[FeatureSettings]
, if it doesn't exist, create it. - add the line
ExportHighlights=true
and save - disconnect the device
- now you can long press on a book and export the note file into a .txt file which will be saved alongside your books. to get it connect your ereader.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="article__copy-link__container"> | |
<div class="button--group-message article__copy-link js-copy-wrap"> | |
<a class="button button--secondary button--icon button--icon-left button--has-message button--copy-link js-copy-link" href="#"> | |
{{ 'Copy the link'|t }} | |
<svg class="icon icon--link"> | |
<use xlink:href="#icon-link"/> | |
</svg> | |
</a> | |
<div class="button__message js-copy-message"> | |
{{ 'Link copied to clipboard'|t }} |
I had difficulty installing WP-CLI properly on my WebFaction server because of the inability to use the sudo command to move the .phar file to the proper wp directory. The WebFaction support team was helpful as usual with some good instructions.
- Log in to your WebFaction account via SSH: https://docs.webfaction.com/user-guide/access.html
- Run the following command on the root directory:
curl -so ~/bin/wp https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar
It's probably a good idea to check the download URL there with the official WP-CLI installation instructions to make sure it hasn't changed. - Run the following command:
chmod u+x ~/bin/wp
- Check to make sure it's installed correctly with
wp --info
.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function my_remove_wp_seo_meta_box() { | |
remove_meta_box('wpseo_meta', YOUR_POST_TYPE_NAME_HERE, 'normal'); | |
} | |
add_action('add_meta_boxes', 'my_remove_wp_seo_meta_box', 100); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Customize image size used in the loop by Genesis | |
* | |
* @author Jared Atchison | |
* @link http://jaredatchison.com/code/ | |
* @param string $image_size | |
* @global array $wp_query | |
* @global int $loop_counter | |
* @return string |
The script below is triggered every day from my Mac. I use Hazel to move the tar.gz to an external hard disk once it's finished. This happens every day without me noticing. You can exclude folders if you want to. You probably want to exclude giant cache folders.
You should have a similar script.