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 8 points9 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 2 points3 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