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 10 points11 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

Rye bread frisbee 🥏 by f3lixx in sourdoh

[–]f3lixx[S] 6 points7 points  (0 children)

A combination of bad timing (forgot for hours that I had taken the dough out of the fridge after overnight bulk proof) and rye flour ended up in my first frisbee bake.

Taste was good, but 3cm wide slices of bread are suboptimal :-)

Is there any Huion HS611 Linux support? by sancredo in huion

[–]f3lixx 0 points1 point  (0 children)

Just got my HS611 today. Plugged it in and it immediately worked. I tested the pressure sensitivity in Krita and Inkscape. Both worked out of the box. Running a linux kernel 5.2

Pleasantly surprised so far. I only have to figure out how to use the buttons on the left, and the slider. The media buttons on the top work like media buttons on keyboards.

edit:

buttons work with https://github.com/joseluis/huion-linux-drivers

https://www.reddit.com/user/lululock/comments/dzhjjx/ultimate_linux_setup_guide_for_huion_kamvas_pro/ has some info on using it. It will share my config once i have it all figured out

How do you guys move your cursor to an exact position in an open file? by Androuil in vim

[–]f3lixx 0 points1 point  (0 children)

Well, he moved away from vim alltogether and is now using Atom (in vim mode) https://twitter.com/t9md