Hacker News new | ask | show | jobs
by hvocode 1733 days ago
I’m in the same boat. Due to security restrictions of my employer I can’t use cloud services to store work related stuff. I was really bummed when I discovered that a lot of the interesting features of my RM2 require their cloud service. I’ve dug through the GitHub repos of RM2 hacks and open source tools that are available, but it still feels like I’m missing out.
1 comments

Can you not just use it as is? I have not connected to a WiFi yet and you can sync to your own cloud.

I guess you do need a way to get the docs on the device. Their sync process is weird.

I've never connected mine to WiFi, but that's because it does all I need through ssh.
Are you able to ssh and move files by something like sftp or no? ssh by wire? Was curious what the file format is of each note.
Yep! When you plug it in to your machine through a USB-C cable, it attaches as an ethernet device and answers to `ssh root@10.11.99.1`. You can also activate an http UI that you can then use to upload files with `curl --form "file=@\"$1\"" "http://10.11.99.1/upload"`.

If you're curious about the file format, have a look at https://remarkablewiki.com/tech/filesystem#user_data_directo...

thanks a lot for the info