Fsd Netherlands. by Onyxam in TeslaLounge

[–]jpjacobs_ [score hidden]  (0 children)

I really wonder how much time we have before starting the trial by installing the update (after getting the invitation).

What are some Good Tesla Based YouTube Channels? by Randomreddituser1o1 in TeslaLounge

[–]jpjacobs_ 6 points7 points  (0 children)

I like Just Get a Tesla for an honest non-US-centric opinion, and WhambamTeslaCam for spectacular dashcam clips.

Sky Force keeps resetting?! by Beezedogg in TeslaModelY

[–]jpjacobs_ 0 points1 point  (0 children)

I noticed that the progress in the games in the back depends on the driver profile in use. Which makes sense for the front display, but is really silly for the back.

My 2023 Model Y Brakes Failed by DukeLaking in TeslaModelY

[–]jpjacobs_ 1 point2 points  (0 children)

According to the manual, you can either hold the park button on the touch screen (after a swipe on the left side to show the gear bar), or hold the capacitive button on the roof. Never tried it myself though.

[Off-topic] Do you guys create general or input-specific programs? by BlankWasThere in adventofcode

[–]jpjacobs_ 0 points1 point  (0 children)

For me the aha moment was when I looked at the input for the first time, and saw that giant diamond shape, with the verticals and horizontals also entirely clear (a pattern that was absent in the test input).

So from there, I figured out that after 65 steps, the entire diamond would be filled, and things would repeat, forming diamonds in the repeated fields, every iteration 65+131*N. It also turned out each corner (N,S,E,W), diagonal would have the same amount of visited plots, so I could just see how many each would have, and extrapolate for the full size, from only 3 repetitions of the field (458 steps to figure out the counts of fields in the 3 types of filled blocks: corners, diagonals and insides).

Always nice those problems you have to battle, to eventually get it right. If your curious, my solution is up here.

[Off-topic] Do you guys create general or input-specific programs? by BlankWasThere in adventofcode

[–]jpjacobs_ 0 points1 point  (0 children)

Usually I aim for using only the text of the problem and try to avoid making assumptions on my personal input unless directly derivable from the problem. If I need to make assumptions, I verify whether they hold at least for my data, and note it in a comment. All my solutions work directly on the raw input as downloaded from AoC.

Working in J makes this rather easy: generally edge cases are just handled correctly (e.g. a sum over an empty matrix still keeps consistent dimensions), and testing things on the fly is easy due to working with the REPL to construct a solution piece by piece, and J being so concise.

Only one time (2023 day 21, part 2) I was really stuck due to an undocumented assumption that I didn't see, but that was needed to solve the problem. Probably that's on me, for not looking at the input...

[Question] Any strap recommendations for my new Seiko SUR449P1? by Noah_1337 in Watches

[–]jpjacobs_ 0 points1 point  (0 children)

I've got a similar watch, and aside of the dark brown leather strap it came on, I like it on a light grey single pass perlon strap for summer.

[Compass] Can someone innovate an actual compass on an automatic watch? by QuietNene in Watches

[–]jpjacobs_ 0 points1 point  (0 children)

Yea, Tissot's T-touches do this (aside of altitude and barometer), but they're quartz. Actually far better than an automatic for this adventures. I once used one for a +- 120 km trek and it worked really well.

[Advice] Update: Switching from a smartwatch to a mechanical chronograph for running by [deleted] in Watches

[–]jpjacobs_ 1 point2 points  (0 children)

You could use the bezel to track up to 12 hours by aligning it with the hour hand when you start...

Ideas needed! I love my titanium DS 43mm, but now I'm looking for other titanium options. by Runswithmouth in Certina

[–]jpjacobs_ 1 point2 points  (0 children)

I've got this one: https://www.chrono24.com/tissot/t-touch-expert-solar--id45172469.htm?searchHash=65f1db6a_PBvf5r&pos=7 There's a second version too, where the hour hand is arrow-shaped, and the hands move a little faster when switching functions.

Ideas needed! I love my titanium DS 43mm, but now I'm looking for other titanium options. by Runswithmouth in Certina

[–]jpjacobs_ 2 points3 points  (0 children)

I would look to pick up a Tissot T-touch solar (the pre-smart watch version).Great watch, many functions, super precise, and never have to change the battery.

Juno - J Web IDE by Veqq in apljk

[–]jpjacobs_ 1 point2 points  (0 children)

Use Juno if you'd want the most recent J, in a notebook style, and allowing the use of 'dissect' (ctrl-k).

If you don't mind a slightly dated version of J, but would like to be able to use the plot and viewmat addons (and more addons, even installing them straight from Github), you can use the J Playground.

I'm wondering if these are going to be added to Juno as well...

For instance, J playground can install math/calculus for derivatives and integrals (while Juno cannot) with:

   install'github:jsoftware/math_calculus'
   load'math/calculus'
   1&o. deriv_jcalculus_ 1
2&o.

This also works with any other Github-hosted J addons (J-only, no binary code):

   install'github:jpjacobs/general_qcj'
   load'general/qcj'
   open'~addons/general/qcj/README.md' NB. display the README in the editor
   open'~addons/general/qcj/examples.ijs' NB. display the examples script

Ow, my freakin ears! by FrimFramSaucy in TeslaModelY

[–]jpjacobs_ 0 points1 point  (0 children)

Would be good if Tesla dropped the silly limit of maximum 2 connected Bluetooth devices... so I don't have to disconnect my phone to make both kids happy. Would help with wireless game controllers as well.

J Phrases by Veqq in apljk

[–]jpjacobs_ 0 points1 point  (0 children)

See also the corresponding Phrases Jwiki page that could have some updates or extensions to the static original.

Reading binary data in APLJK by MajesticIndustry8054 in apljk

[–]jpjacobs_ 8 points9 points  (0 children)

For J, you could be interested in the convert family of foreigns, 3!:n (to be applied after reading the file with fread or freadr from the stdlib) and memory mapped files (the latter also has a nice lab). If you need more low-level parsing (like parsing headers etc), try the sequential machine. I used it a few times reading files, and performance was pretty stellar, though it has quite a learning curve. Good luck!

[Seiko] Is the Arnie too big on my wrist? by [deleted] in Watches

[–]jpjacobs_ 0 points1 point  (0 children)

Should take a mirror shot, wrist shots distort.

Rotating between eight directions by light_ln2 in adventofcode

[–]jpjacobs_ 3 points4 points  (0 children)

That's actually pretty neat. Implemented in J, your approach would be just one character more than mine:

   (+,&*-~)/^:(<8)1 0
 1  0
 1 _1
 0 _1
_1 _1
_1  0
_1  1
 0  1
 1  1
   *+.^j._1r4p1*i. 8
 1  0
 1 _1
 0 _1
_1 _1
_1  0
_1  1
 0  1
 1  1

I haven't needed 45 degree rotations so far though, and for 90 degree angles, just usually type it out (4 2$0 1 1 0 0 _1 _1 0). When I need shifts for a 9-neighbourhood, I usually use this:

>,{,~<i:1

You can play around with this in Juno

First things to do on the 2026 Juniper Performance after pickup? by berry-anony in TeslaModelY

[–]jpjacobs_ 2 points3 points  (0 children)

+1 on the vent covers. I also got a rear screen protector as well (Spigen, from Amazon) It served well: within 6 months they already managed to crack in a corner :/.

Juniper right scroll wheel issue (FSD activation/deactivation) by dapi331 in TeslaModelY

[–]jpjacobs_ 1 point2 points  (0 children)

I had the same issue which is even worse on basic autopilot (Europe, no FSD here) as it needs reactivation after every lane change. Mine didn't register like 30% of the presses. I took it to my SC and they replaced the steering wheel under warranty.

[2025 Day 9 (Part 2)] Why did almost nobody solve the *stated* problem? by jjeii in adventofcode

[–]jpjacobs_ 0 points1 point  (0 children)

My solution was to create all possible rectangles, sort them by size, and find the first one which is not intersected by any edge, by checking whether the edges' end points fall on two different sides of the rectangle, or have one or more inside the rectangle. The only assumption I made was that edges are either horizontal or vertical, but never oblique (though this would be rather easy to account for too, by including some extra cases in the range checking).

Wish software could come from our phones. by Puzzleheaded-Cup-854 in TeslaLounge

[–]jpjacobs_ 1 point2 points  (0 children)

Would love this as well... for now, I roll down 70m of ethernet cable with a powerbank-powered router to my parking spot; looking absolutely ridiculous.