This is a list of compatible pens with the remarkable tablet.
Name | Links | Build in Eraser | Comments |
---|---|---|---|
Noris digital | here | No | Working well but the paper feeling is different from the original one |
Noris digital jumbo | here | Yes | Havent Tried |
I am no longer abe to monitor this post , I have decided to move everything to my personal blog for better monitoring.
Please click here to access the full post
1 | |
2 | |
3 | |
4 | |
5 | |
another_file.txt | |
3 | |
4 | |
5 | |
6 |
## Usefull configurations | |
export TERM="xterm-256color" # This sets up colors properly | |
# set shell | |
export SHELL=/usr/bin/zsh | |
# If you come from bash you might have to change your $PATH. | |
export NODE_PATH=$NODE_PATH:$HOME/.npm-global/lib/node_modules | |
export JAVA_HOME=/usr/java/latest |
const canRate = done => { | |
request(app) | |
.post(`/api/v1/post/${post.id}/rating`) | |
.set('Authorization', `Bearer ${user.token}`) | |
.send({ userId: user.id, postId: post.id, rating: 4 }) | |
.end((err, res) => { | |
expect(res.status).toBe(201); | |
expect(res.body.rating).toBeDefined(); | |
ratingId = res.body.rating.id; | |
expect(res.body.message).toBe('Post rated successfully'); |
When hosting our web applications, we often have one public IP
address (i.e., an IP address visible to the outside world)
using which we want to host multiple web apps. For example, one
may wants to host three different web apps respectively for
example1.com
, example2.com
, and example1.com/images
on
the same machine using a single IP address.
How can we do that? Well, the good news is Internet browsers
One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
$ brew install python3
$ brew install python3 # Installed at /usr/local/Cellar/python3
Check that python3 has been installed by running it at the terminal:
$ python3
>>> Python 3.6.5
get-pip.py
from https://bootstrap.pypa.io/get-pip.py and install (this should already be installed if python was installed from python.org or homebrew):make sure that pip is installed : | |
to install pip globaly not in a virtual environment do this | |
**step 1: download pip** | |
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py | |
step 2 : install it with sudo : | |
**sudo python get-pip.py** |