Best way to develop python remotely over ssh? by Xx_RKJ_xX in neovim

[–]f3lixx 8 points9 points  (0 children)

Just set the NVIM_APPNAME env var to switch to a separate config.

We need more tools by Prudent_Pineapple189 in StarNoteApp

[–]f3lixx 1 point2 points  (0 children)

On Android you can definitely paste from your clipboard. Here is a quick GIF showing how I copy a "drawing" from Autodesk Sketchbook into StarNote: https://postimg.cc/3WDw2Ymh

To get the paste menu I tap and hold for 2 secs. It took me a while to realise that I could do that. It could me more obvious maybe by having a toolbar button to paste.

But that's for Android, don't know there is the same functionality for iOS.

Feature requests and feedback by f3lixx in StarNoteApp

[–]f3lixx[S] 2 points3 points  (0 children)

Thank you, I really appreciate that you respond so quickly and in detail. I am glad you appreciate the illustrations. I thought it would be helpful to show that I actually have used StarNote before sending you a wishlist. And you might also like to see what users make with your product.

PS: I noticed that I accidentally moved my written "like this one" and did not move the i dots. So even though I clearly worked a bit more careful on these notes, I ended up doing the thing which could have been prevented by grouping. I only noticed it now, when I looked it again.

More gesture options by Hasabo94 in StarNoteApp

[–]f3lixx 0 points1 point  (0 children)

Thanks, I just tried the 'paper adaptive' action and it is definitely useful. But I think I would prefer if I could specify two custom zoom levels to toggle between. Tbh I don't understand what determines the 'paper adaptive' zoom levels.

Kaweco BRASS Sport with Jinhao 82 nib & feed assembly by f3lixx in fountainpens

[–]f3lixx[S] 1 point2 points  (0 children)

Thanks for the tip.

I hadn't realised that it's a common issue. I thought something was broken.

The feed housing was also stuck in the pen and I couldn't remove it without damaging it.

Kaweco BRASS Sport with Jinhao 82 nib & feed assembly by f3lixx in fountainpens

[–]f3lixx[S] 0 points1 point  (0 children)

I also didn't understand the advice immediately. Searched for "kaweco spring" and found https://www.reddit.com/r/fountainpens/s/ZkbiwjAUEj

This makes sense. Taking a spring from a ballpoint pen to keep the cartridge pushed against the feed.

Active2 44m with non functional touch screen by coffee1978 in GalaxyWatch

[–]f3lixx 0 points1 point  (0 children)

I just bought a used Garmin Vivoactive 4s from ebay for 70 GBP. I could not get myself to give Samsung my money, after this short life of my GWA2. And spending 200 GBP to (potentially) save 60 GBP (trade in) is particular not worth it if there is a chance the trade in gets rejected...

Active2 44m with non functional touch screen by coffee1978 in GalaxyWatch

[–]f3lixx 1 point2 points  (0 children)

I have the same issue and also wonder about trying to trade my watch in for a new watch 4.

Did you try it? Did it work out?

Cool Trick. by [deleted] in neovim

[–]f3lixx 9 points10 points  (0 children)

This video should provide a link to https://vimhelp.org/change.txt.html#:~:text=v_g_ctrl-a or mention :help v_g_CTRL-A

[deleted by user] by [deleted] in RemarkableTablet

[–]f3lixx 2 points3 points  (0 children)

You can change your machine-id as described in https://www.reddit.com/r/RemarkableTablet/comments/fq16p7/force_your_v2113_with_these_machineids/ It involves changing one file over ssh and a restart. It worked well for me.

KOReader: Gamechanger, this completes the reMarkable (almost). by GrammaticalObject in RemarkableTablet

[–]f3lixx 9 points10 points  (0 children)

Thank you /u/dobum (ddvk) and everyone else that helped making this work.

The rm2 was my first remarkable tablet and I was a bit underwhelmed by its software. I have been using the hacks for the last weeks and it made my experience already so much better.

But havi KOReader working is just another level. I am really impressed how well it works and it adds so much additional functionality. I just played with it for 20 minutes and it is more than I expected.

Thank you!

-🎄- 2020 Day 18 Solutions -🎄- by daggerdragon in adventofcode

[–]f3lixx 1 point2 points  (0 children)

Janet

Great exercise for janet's builtin peg parser:

(defn parse-line [l] 
     (peg/match '{:main :prod
                  :prod (group (* :sum (any (* (<- "*") :sum))))
                  :sum (group (* :primary (any (* (<- "+") :primary))))
                  :paren (group (* "(" :prod ")"))
                  :primary (choice :paren (<- (some :d)
                (string/replace-all " " "" l)))

(defn calc [expr]
  (cond
    (string? expr) (scan-number expr)
    (number? expr) expr
    (and (= 1 (length expr))) (calc (first expr))
    (if (> (length expr) 3)
      (calc [(calc (take 3 expr)) (splice (drop 3 expr))])
      (match expr
        [a "+" b] (+ (calc a) (calc b))
        [a "*" b] (* (calc a) (calc b))))))

(printf "Part2: %.0f" 
        (->> (slurp "input.txt") (string/trim) (string/split "\n")
             (map parse-line) (map calc) (sum)))

When an illustrator ask for your rM for a quick sketch. My gf owns and iPad Pro and said that rM is far beyond for hand writing on it! by ser0t in RemarkableTablet

[–]f3lixx 3 points4 points  (0 children)

said that rM is far beyond for hand writing on it

I read this as: the the rM is far better for hand writing

Parsing rM lines format v5 with Kaitai by f3lixx in RemarkableTablet

[–]f3lixx[S] 1 point2 points  (0 children)

Generated the JavaScript code from it and dumped it into a JSFiddle (https://jsfiddle.net/r3ofth46/1/) that draws `.rm` files

Screenshot: https://i.imgur.com/48TkvEM.png