{"id":24753836,"url":"https://github.com/akatopo/k2e","last_synced_at":"2026-04-30T18:32:29.069Z","repository":{"id":44259980,"uuid":"62963816","full_name":"akatopo/k2e","owner":"akatopo","description":"Browse your kindle clippings and export them to evernote","archived":false,"fork":false,"pushed_at":"2022-12-05T19:18:26.000Z","size":4878,"stargazers_count":1,"open_issues_count":11,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-23T05:12:37.428Z","etag":null,"topics":["kindle","webapp"],"latest_commit_sha":null,"homepage":"https://k2e.apphb.com/","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"isc","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/akatopo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-07-09T18:38:17.000Z","updated_at":"2020-04-08T16:37:15.000Z","dependencies_parsed_at":"2023-01-24T06:45:47.427Z","dependency_job_id":null,"html_url":"https://github.com/akatopo/k2e","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/akatopo/k2e","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akatopo%2Fk2e","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akatopo%2Fk2e/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akatopo%2Fk2e/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akatopo%2Fk2e/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/akatopo","download_url":"https://codeload.github.com/akatopo/k2e/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akatopo%2Fk2e/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32473804,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"ssl_error","status_checked_at":"2026-04-30T13:12:06.837Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["kindle","webapp"],"created_at":"2025-01-28T11:36:27.363Z","updated_at":"2026-04-30T18:32:29.056Z","avatar_url":"https://github.com/akatopo.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# k2e\n\nBrowse your kindle clippings and export them to evernote, [try it out](https://k2e.apphb.com).\n\nBuilt with [enyojs](http://enyojs.com/), [babel](https://babeljs.io/), ASP.NET(eugh), and :heart:.\n\n![app screenshot](screenshots/k2e.png)\n\n## Basic Usage\n\n### Loading Clippings\n\nDrag and drop, or select the text file containing your clippings when starting the app. Your clippings are stored **locally** for the duration of your session.\n\n:information_source: Kindle clippings are stored in the `My Clippings.txt` text file located in the kindle's `documents` folder (on kindle keyboard at least).\n\n![adding clippings](screenshots/add-clippings.gif) \n\n### Exporting Clippings to Evernote\n\nClick on the `Export Clippings` button on the upper right to export **all** clippings. To export a **selection** of clippings click on checkmark button on the lower left, select your clippings, and then click on the `Export Selected Clippings` on the upper right:\n\n![exporting selected clippings](screenshots/export-selected.gif)\n\n### Settings\n\nClick on the upper left burger button to fiddle with fonts, font size, text margin, and to revoke the app's evernote permissions. Settings are stored **locally**.\n\n![settings](screenshots/settings.gif)\n\n\n### Keyboard Shortcuts\n\nKey          | Action\n-------------|-------------------------\n\u003ckbd\u003ej\u003c/kbd\u003e | select next clipping\n\u003ckbd\u003ek\u003c/kbd\u003e | select previous clipping\n\u003ckbd\u003ef\u003c/kbd\u003e | toggle fullscreen\n\n## Building\n\nYou will need node, npm, gulp, mono-complete, mono-xsp4, and a mongoDB database.\n\nTo build:\n\n* `npm install`\n* `bower install`\n* Get C# package dependencies by opening the project solution in monodevelop and selecting `Project \u003e Restore NuGet Packages`, or by running `mono nuget.exe restore k2e/packages.config -PackagesDirectory packages` (needs `nuget.exe`, [instructions](https://docs.nuget.org/consume/nuget-faq))\n* You will need to set your [evernote OAuth](https://dev.evernote.com/doc/articles/authentication.php) **consumer key and secret**, and a **url** for a mongoDB database. You can place an `EvernoteCredentials.config` file inside the `k2e` folder (it will be copied over to the `dist` folder when executing the `dist` task) to set configuration options. A minimal example for development follows, all options are presented in the [next section](#configuration-options).\n\n```xml\n\u003c?xml version=\"1.0\"?\u003e\n\u003cappSettings\u003e\n  \u003cadd key=\"PublicKey\" value=\"\u003cOAuth consumer key\u003e\"/\u003e\n  \u003cadd key=\"SecretKey\" value=\"\u003cOAuth consumer secret\u003e\"/\u003e\n  \u003cadd key=\"MongoConnectionString\" value=\"mongodb://127.0.0.1/k2e\"/\u003e\n\u003c/appSettings\u003e\n\n```\n\n**Dist**\n\n* `gulp dist` will create a distributable under the `dist` folder\n* `cd dist \u0026\u0026 xsp4` will run a server for the distributable\n\n**Build**\n\n* `gulp build` will build a debug version of the ASP.NET app, and compile scripts and stylesheets\n* `cd k2e \u0026\u0026 xsp4` will run a server for the debug version\n\n\n## Configuration Options\n\nKey                            | Description\n-------------------------------|-------------------------\n`PublicKey`                    | OAuth consumer key\n`SecretKey`                    | OAuth consumer secret\n`Production`                   | Will use production evernote url if not empty\n`DeploymentMongoConnectionKey` | The key name of a key-value pair containing a mongo URI, used for deployment. Default value is `MONGOLAB_URI`. If the key-value pair has a non-empty value it will be used as the url for the mongo database\n`MongoConnectionString`        | Used to connect to a local mongo installation, taken into account if the value of the key-value pair with the key name defined in `DeploymentMongoConnectionKey` is empty. Default value is `mongodb://127.0.0.1/k2e`\n`AppHbDeployment`              | Used to indicate if the app runs on AppHarbor","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fakatopo%2Fk2e","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fakatopo%2Fk2e","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fakatopo%2Fk2e/lists"}