
- #SIDENOTES EXTENSION HOW TO#
- #SIDENOTES EXTENSION INSTALL#
- #SIDENOTES EXTENSION CODE#
- #SIDENOTES EXTENSION FREE#
Sidenotes finally offered what I was missing, quick access with an easily organizable format. Even pinned notes became quickly outdated, just not convenient enough to view or quickly organize in the moment. I relied on the notes app for years, curating an assortment of snippets with no context, organization, or urgency, often left to be rediscovered and decrypted months later during spring cleaning attempts. This app is amazing! As a scatterbrain if I don't immediately write down important thoughts/reminders…goodbye forever. drop any other files and application will keep shortcut to them with a nice preview - search for any notes or folders - use 3 text formatting modes: Markdown, Plain Text and Code. - synchronise your notes between computers drop text files or pictures, so they will be added as new notes create notes directly from the pasteboard
#SIDENOTES EXTENSION CODE#
save links, code snippets or even colors drag and drop pictures directly from your web browser mark notes with colors and group them into folders - choose themes smoothly pull out your notes from outside your monitor and easily hide them back SideNotes is for those who love to keep their countless notes handy and organised. You can make your notes stand out by adding colors to them. At the same time it’s small enough not to distract you from your main workflow. Its slim window gives you enough space for convenient writing. Just anything that might get lost if not saved in a flash. It’s a cozy place for your: ideas, inspirational quotes, pictures, fragments of code, vocabulary, recipes. Or just let them stay at your fingertips in SideNotes. Then move them to your writing app or task manager. Just scroll to see more notes in a folder.ĭesigned for momentary notes: phone numbers, links, screenshots. SideNotes shows you several notes at once. A tool to catch fleeting thoughts on the go.

It’s prettier than sticky notes and more agile than big text editors. Just move your cursor to the side of your screen and press the semi-transparent bar. Don’t look for its icon in the Menu bar or in the Dock. How is this app different? SideNotes lives on the side of your monitor. Now with Apple Shortcuts support (it requires macOS 12), exporting note to image, iCloud synchronization (it requires macOS 11 or newer) and themes. SideNotes is designed to take notes instantly. In the end, we have to add key/value pairs to the ext.json file.A fast note-taking.
#SIDENOTES EXTENSION FREE#
If you are using a reverse proxy like traefik, feel free to remove the ports part and add your custom labels and networks instead. Image: sn-notes-extension_math-editor:customĬontainer_name: sn-notes-extension_math-editor Next, create a simple docker-compose.yml: version: '3.8' # Expose it to port 8080 (can be changed to your preferences)ĬMD # Copy the repo and the ext.json into the container
#SIDENOTES EXTENSION INSTALL#
# Install Grunt, the HTTP Server and all relevant npm packages # Copy package.json and package-lock.json into the container Remember that changes might be necessary when using another extension because of different paths, dependencies etc.: FROM node:12 Here, we will copy the data into the container, install all relevant dependencies as well as a http-server to publish and test the results. The heart of the process can be found in the Dockerfile. dockerignore as suggested in the Node.JS documentation: node_modules This should create the following structure: ├── math-editor/Īdd the following to your. Here, I will use the Fancy Markdown Editor / Math Editor as an example: git clone

Next, clone the Git repository of your extensions. dockerignore, Dockerfile, docker-compose.yml and eventually ext.json: touch.
#SIDENOTES EXTENSION HOW TO#
Nevertheless, I will show you an example how to build and create your own custom docker image, just to be sure to get the latest version. Most of the extensions aren't available as images at Docker Hub and you sometimes don't need to build them. While I am using docker and docker-compose for most of my applications I also wanted to dockerize the extensions. To add them to your local Standard Notes client you either have to pay for one of the plans directly from Standard Notes or self-host the server application. Therefore, extensions are necessary to add multiple editors besides the Plain Editor.įor Markdown support, several alternatives are available, for example: But this only creates a plain notes tool without Markdown support. After installing the syncing-server with docker-compose, I quickly set up a working system (more information can be found here). While searching for a self-hosted, platform-independent notes tool supporting Markdown I came across Standard Notes, an encrypted Evernote alternative.
