Git Product home page Git Product logo

minimalnote's Introduction

MinimalNote

Ultra-simple tag-based keyboard-optimized note application.

MinimalNote was developed for the purpose of learning (C++11, MVC/MVP, Qt, cross platform dev, sqlite). The plan is to extend it from time to time and to replace my heavily used Evernote at any time (getting slower and slower).

You can download a portable version in the release folder

Screenshot of early version of MinimalNote

Features

  • Ingredients of a note: Title, tags and content
  • Tag based organization: In combination with fulltext search this is all you need to store and organize all your information. Way better than document and folder oriented.
  • Incremental Search: see results as soon as you start typing
  • 100% keyboard optimized (in progress)
  • Global hotkey ALT-SHIFT-F resumes from Tray Icon (planned for MacOSx/Linux)
  • Platform independent:
  • Automatic save: No need to save, will be done in background.
  • Learning Features: I plan to add learning capabilities later (missing in Evernote)
  • Links to Dropbox files are planned (Evernote attachments are slow and fat)

Implementation

  • Based on C++11, Boost, Qt and sqlite
  • Using C++11 style whenever possible: No raw pointers, RAII, no arrays (vectors instead), move-semantics (e.g. return unique_ptr)
  • Built with VS2010 (for Qt support). Many C++11 features are not yet available;(
  • Based on Model View Presenter approach (Passive View). See below (architecture) for more details
  • Only the View is implemented in Qt, but it should be easy to replace the view by another UI framework. Other parts don't have dependencies on Qt (except Logging)
  • Uses a mall custom sqlite wrapper (could not find a simple c++11-style wrapper without heavy use of raw pointers)

Architecture

This is based on a very simple implementation of Model View Presenter. Model has no way to access View and vice versa. All goes through Presenter. The view is defined by an interface (AbstractView.h) and can be replaced easily (e.g. for testing or using another ui framework). See this great comparism of MVP/MVC or the even better article from M. Fowler.

Todo

  • Static linking deployment
  • Make global hotkey platform independent
  • Add Unit Tests (should have done this first...)
  • Replace Qt logging mechanism by something else. Didn't find a great logging library yet.
  • There are tons of pending issues...

minimalnote's People

Contributors

andrehacker avatar

Stargazers

 avatar  avatar Aliakbar Rashidi avatar

Watchers

Antonio Forgione avatar  avatar James Cloos avatar

Forkers

afialkovskiy

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.