All Projects → joelewis → readmelater

joelewis / readmelater

Licence: MIT license
Bookmark with a snooze button. Bookmark, buffer and complete your reading list.

Programming Languages

Vue
7211 projects
HTML
75241 projects
javascript
184084 projects - #8 most used programming language
Less
1899 projects
shell
77523 projects
SCSS
7915 projects
Sass
350 projects

Projects that are alternatives of or similar to readmelater

Linux Window Session Manager
A tool to store and reload open windows and window positions for x11 desktops like unity and gnome.
Stars: ✭ 243 (+173.03%)
Mutual labels:  productivity
stapp
A Frontend boilerplate for High productivity
Stars: ✭ 22 (-75.28%)
Mutual labels:  productivity
grit
Multitree-based personal task manager
Stars: ✭ 1,616 (+1715.73%)
Mutual labels:  productivity
Todoman
✅ A simple, standards-based, cli todo (aka: task) manager.
Stars: ✭ 247 (+177.53%)
Mutual labels:  productivity
Terminal-Setup
Best Setup for your terminal for programming on macOS
Stars: ✭ 26 (-70.79%)
Mutual labels:  productivity
awesome-engineering-management
Pointers and tools for learning and day-to-day practice of engineering management & leadership.
Stars: ✭ 1,535 (+1624.72%)
Mutual labels:  productivity
Hamster System
Ultra-simple framework to organize your life.
Stars: ✭ 237 (+166.29%)
Mutual labels:  productivity
VCore
VCore is a Swift collection containing objects, functions, and extensions that I use for my projects
Stars: ✭ 32 (-64.04%)
Mutual labels:  productivity
jiraworklogtool
A simple Chrome Extension that allows adding worklog in Jira easily.
Stars: ✭ 38 (-57.3%)
Mutual labels:  productivity
t2sp
Productive and portable performance programming across spatial architectures (FPGAs, etc.) and vector architectures (GPUs, etc.)
Stars: ✭ 24 (-73.03%)
Mutual labels:  productivity
Dash.jl
Dash for Julia - A Julia interface to the Dash ecosystem for creating analytic web applications in Julia. No JavaScript required.
Stars: ✭ 248 (+178.65%)
Mutual labels:  productivity
Ohmyzsh
🙃 A delightful community-driven (with 1900+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool so that makes it easy to keep up with the latest updates from the community.
Stars: ✭ 138,057 (+155020.22%)
Mutual labels:  productivity
iforgor
A simple CLI productivity tool to quickly display the syntax of a desired piece of code
Stars: ✭ 20 (-77.53%)
Mutual labels:  productivity
3llo
3llo - Trello interactive CLI aplication
Stars: ✭ 245 (+175.28%)
Mutual labels:  productivity
Start-Menu-Manager
App to add websites/software/files/folders/scripts to the Windows 10 Start Menu and Taskbar, and priority shortcuts to Windows 10 Search.
Stars: ✭ 126 (+41.57%)
Mutual labels:  productivity
Espanso
Cross-platform Text Expander written in Rust
Stars: ✭ 3,834 (+4207.87%)
Mutual labels:  productivity
keynavish
Control the mouse with the keyboard, on Windows.
Stars: ✭ 59 (-33.71%)
Mutual labels:  productivity
cookiecutter
CLI for quickly creating boilerplate files based on templates you provide.
Stars: ✭ 30 (-66.29%)
Mutual labels:  productivity
git-init-plus
⚡ Turbo charged git init
Stars: ✭ 15 (-83.15%)
Mutual labels:  productivity
Taskban
A personal productivity tool developed with C# and XAML.
Stars: ✭ 56 (-37.08%)
Mutual labels:  productivity

Read Me Later

A smarter bookmarking system to help you complete your reading list. If you want to use this right away: https://closetab.email

In loving memory of my friend Karthik who helped me write some of the code for this project. He lost his battle against cancer but won the hearts of many with his cheerful smile, stupid jokes and by just being there for us whenever we needed him

Manifesto

A good bookmark service should help me at two things:

  1. I've read something. I don't want to lose it.
  2. I don't have the time to read something at the moment. I want to buffer it and come back to it later.

While some of them are good at #1, most suck at #2. A good bookmark service should help me complete my reading list than just being a dumb bucket. This is what I expect:

  1. I should be able to bookmark a link with a timeout within which I'd like to read it.
  2. The service should remind me of pending items in my reading list.
  3. The service shouldn't work like an annoying alarm clock. It should remind me in a way I enjoy completing my reading list.
  4. I signed up for a bookmarking service, not a social network. It shouldn't run funny algorithms and recommend me friends or internet links.

Here's one version of a bookmarking service that I envison:

  • It should orchestrate well with my current workflow. Ideally it should reach out to me, via email.
  • It should help me #tag a link.
  • When reminding me of my pending links, it should also encourage me by mentioning a rough estimate of reading time to complete articles per tag.
  • It should help me find / sort links by hashtags.
  • It should have an email inbox like view to mark a link as read. So that I only get reminders of relevant links.
  • It should boost my reading habit by periodically presenting me with good metrics on how well I did over number of articles, time spent or hashtag coverage.
  • When the number of pending links of an hashtag grows beyond limit, it should present me with a plan to handle that load, likely by recommending me with a time estimate over the weekend to complete a portion of pending items.
  • Most important of all, it shouldn't make me guilty of having a huge list of pending lists.

This project is one initiative in that direction. Most of the above can be acheived with an authentication layer and a very light browser extension and a server process for metrics calculation and sending reminders.

LICENSE

The source code is released under MIT License.

Contributors

  • Karthikeyan - Thank you for helping me develop the chrome extension and designing a quick UX for the inbox view!
  • Alin Panaitiu - Thank you for porting the extension to a version supported by most browsers!
  • Joe Lewis

Media

Setup

  1. Clone repo
  2. npm install
  3. cp sample.env .env
  4. cp client/sample.env client/.env
  5. Edit .env files to configure database, auth keys and other configurations
  6. DEBUG="*" npx prisma migrate dev --name init to setup migration scripts and create tables.
  7. DEBUG="*" npx prisma generate to create the tables. // we don't need this step in newer versions of prisma. migrate creates the client as well
  8. cd client
  9. npm install to install client project's dependencies
  10. yarn build to build client files and push into ../public folder
  11. cd .. && node index.js to run the server or use your favourite process manager for production
  12. The reminder emails use AWS SES service in production. You might want to override it with your own service/implementation. Look at mail() function from utils.js. If you do intend to use AWS SES, sign up for an AWS account and manage your API keys as suggested by AWS - either by dropping your keys in .env file or creating ~/.aws/credentials file with keys.

To Debug prisma APIs open node interpreter and paste below code

var PrismaClient = require('@prisma/client')
const prisma = new PrismaClient.PrismaClient();
var pp = function(promise) { promise.then(r => console.log(r)) }
pp(prisma.link.findMany())
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].