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
| # Python OAuth example | |
| # | |
| # an adaptation of earlier sample code https://stackoverflow.com/q/71564457/1061095 | |
| # | |
| # see also: https://github.com/spchamp/evernote-py3 | |
| # | |
| # Documentation, Oauth 1 in Evernote | |
| # https://dev.evernote.com/doc/articles/authentication.php | |
| # | |
| # Usage: |
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
| -- | |
| -- ** AppleNotesExporter ** | |
| -- -- Easily export Apple notes to standard encoding HTML preserving directory structure | |
| -- | |
| -- Copyright 2022 Konstantin Zaremski | |
| -- | |
| -- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated | |
| -- documentation files (the "Software"), to deal in the Software without restriction, including without limitation | |
| -- the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, | |
| -- and to permit persons to whom the Software is furnished to do so, subject to the following conditions: |
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
| #!/usr/bin/env sh | |
| ## | |
| # This is script with usefull tips taken from: | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # | |
| # install it: | |
| # curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
| # |
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 | |
| /* | |
| * Converts CSV to JSON | |
| * Example uses Google Spreadsheet CSV feed | |
| * csvToArray function I think I found on php.net | |
| */ | |
| header('Content-type: application/json'); | |
| // Set your CSV feed |