Hacker News new | ask | show | jobs
by jcun4128 1728 days ago
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.

1 comments

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