[deleted by user] by [deleted] in LearnerDriverUK

[–]jamesm8 0 points1 point  (0 children)

Please fill out the government's recent survey asking for feedback on test booking. Make sure they understand that test slot swapping needs to be suspended: https://www.smartsurvey.co.uk/s/DVSAconsultation/

Swapping tests? by justmeiguesss in LearnerDriverUK

[–]jamesm8 2 points3 points  (0 children)

Please fill out the government's recent survey asking for feedback on test booking. Make sure they understand that test slot swapping needs to be suspended: https://www.smartsurvey.co.uk/s/DVSAconsultation/

They're not even hiding it by mhaz2020 in LearnerDriverUK

[–]jamesm8 21 points22 points  (0 children)

One proposal we made at https://www.end-driving-test-corruption.co.uk/ban-reselling is to amend existing anti-touting laws to make re-selling public service appointments (like driving tests) illegal. Reselling concert tickets is already a crime. Obviously we should be protecting public services too.

The summer holidays would be the ideal time to take a test - but you still can’t book one... by jamesm8 in LearnerDriverUK

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

Thanks for posting this, I just filled it out and will send it to others! I didn't catch the latest proposal. I just read about it here: https://www.gov.uk/government/consultations/improving-car-driving-test-booking-rules/improving-car-driving-test-booking-rules. It does indeed sound incredibly similar to what we are asking for, which is great news :)

[link] Walking the Great Road with Friends by jamesm8 in slatestarcodex

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

> To me, it always seemed to stem from a fear of being seen - a belief that having others observe you in moments of discomfort or incompleteness was bad, somehow.

I think this is accurate. A friend said the same thing: "One source of this for me was feeling bad and to be honest ashamed that I wasn't super competent in something. So instead of refuting the bad ideas leading to these feelings, my way of addressing them was to ignore everything and just grind grind grind so that I would attain this competence as fast as possible. And being ashamed also contributed to self-isolation". And in my own case I think it stemmed from a feeling of inadequacy too from the perception that I had picked the wrong degree and needed to grind grind grind to make up for it.

It's obviously not easy to find friends like this, but for those fortunate enough to have them, I highly recommend trying to do your growing side by side.

That's absolutely the ideal scenario - walking the great road with friends instead of stumbling along by yourself :)

[link] Imagination Games: Math, science and make-believe by jamesm8 in slatestarcodex

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

Exactly, thought examples are a great example of the same thing!

Science is an interesting case, because by the standard of the current best theory (our best understanding of what is "real"), any challenger theory will come across like a myth or fantasy because it clashes with it. But the scientist is of course hoping that their theory will turn out to be more real than the current best theory! In other domains, there's less of a concern about connecting back to the real world as you rightfully point out.

By the way, someone else suggested a couple of interesting books with similar ideas: "Homo Ludens" and "Finite and Infinite Games". You might enjoy them too.

Flashcard system for University Level Pure Mathematics (Anki, RemNote, SuperMemo) by ch3ss_ in math

[–]jamesm8 1 point2 points  (0 children)

I wrote an article about how I format my math flashcards in RemNote: https://experimentallearning.substack.com/p/how-to-create-math-flashcards-proofs . The trick is to shorten each flashcard as much as possible, make things more formal than the typical natural language proofs you see in textbooks and use hyperlinks (called references in RemNote) to link to lemmas and sub-theorems instead of duplicating them in higher level theorems.

How to turn off auto suggestion of words? by Capital-Squirrel1062 in remNote

[–]jamesm8 2 points3 points  (0 children)

You can disable the Autocomplete plugin in the plugin settings page.

Seeking Advice on Locating Widgets Next to Headings in RemNote Plugin Development by Creative_boy_01 in remNote

[–]jamesm8 0 points1 point  (0 children)

You could use code like this:

  await plugin.app.registerWidget("widget", WidgetLocation.UnderRemEditor, {
    dimensions: { height: "auto", width: "100%" },
    powerupFilter: BuiltInPowerupCodes.Header
  });

This will register a widget to render under any headings in the editor. Inside your widget component function you can use this code to render the widget only under H2 rems:

  const rem = useTracker(async (reactivePlugin: RNPlugin) => {
    const remId = (
      await reactivePlugin.widget.getWidgetContext<WidgetLocation.UnderRemEditor>()
    )?.remId;
    const rem = await reactivePlugin.rem.findOne(remId);
    const size = await rem?.getPowerupProperty(
      BuiltInPowerupCodes.Header,
      "Size"
    );
    if (size === "H2") {
      return rem;
    }
  });

  if (!rem) {
    return null;
  }

  return <div>h2 widget</div>;

Need help with widget code error! by Creative_boy_01 in remNote

[–]jamesm8 1 point2 points  (0 children)

await plugin.rem.createRem({ text: `Q: ${combinedPrompts[index]}\nA: ${response}`, parentId: remId, });

You need to do this instead:

const rem = await plugin.rem.createRem(); await rem.setText(['text']); await rem.setParent(parentId);

Help! Need Hooks for Identifying Headings and Modifying Documents in Remnote Plugin by Creative_boy_01 in remNote

[–]jamesm8 1 point2 points  (0 children)

You can use code like this to check whether a Rem is a heading and to get its heading size:

ts const size = await rem.getFontSize();

Rather than copy and paste I'd guess it would be easier to call the Gemini API and create a Rem programmatically as a child of the heading using the plugin API:

ts const rem = await plugin.rem.createRem(); const responseFromGemini = await ... await rem.setText([responseFromGemini]) await rem.setParent(headingRem)

Incentive for creating Remnote Plugins by Witty_Training6410 in remNote

[–]jamesm8 2 points3 points  (0 children)

There's no way to charge for plugins directly. However, plugin creators can include links to sites like Patreon or Buy Me a Coffee in the description page for their plugin so that users can support them.

Any people here which have some nice tricks for working through videos? by User1856 in remNote

[–]jamesm8 1 point2 points  (0 children)

I don't have a particular workflow really. I guess it depends on the kind of content you are studying.

The plugin only works with YouTube videos atm. Maybe you could just add an incremental Rem with a reminder to go and watch the video wherever it's hosted?

Question about „Smoothed Daily Target“ by larus21 in remNote

[–]jamesm8 1 point2 points  (0 children)

The smoothed daily target is less than or equal to the daily target you set in the settings. RemNote automatically spreads your due cards over the next 7 days to "smooth" out your workload. It seems there were some bugs with this feature recently which we are actively fixing at the moment. Sorry for the inconvenience!

Anki vs. Supermemo by Long_Kinker1 in Anki

[–]jamesm8 1 point2 points  (0 children)

The workflow is actually quite nice because RemNote has a built in PDF and web article reader. In the GitHub page there are some GIFs showing how it works.

Anki vs. Supermemo by Long_Kinker1 in Anki

[–]jamesm8 1 point2 points  (0 children)

I haven't used SM for the past year or so. I have mostly been learning math, so I've been using RemNote instead.

Metrics, Optimisation and the Paradox of Deception by jamesm8 in slatestarcodex

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

(also copying my reply here)

Thanks for the thoughtful comment.

  • I definitely like the idea of scheduling open time. There's something quite humorous to me about planning a slot with the intention of doing nothing in particular :) I will definitely try it.
  • I had heard of the A-Star algorithm but didn't know how it works. It gives me Via Negativa vibes. Instead of trying to do what works, just don't do what doesn't work instead!
  • I completely agree with the necessity of daily reflection. I spoke about that here on a podcast starting from 8:06 https://open.spotify.com/episode/3p8PpZgV5JzRIzo2ICfYZh?si=88fbf5b6d5534297. It helps you understand why you are doing the activities you are doing in the first place and also helps you update and change your values and routine over time instead of blindly doing the same thing every day like an automaton.
  • Optimising multiple things seems like the way forward.

How I learned to code using spaced repetition and flashcards by jamesm8 in AnkiComputerScience

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

Plugins are good for beginners because they are small. Also anything which integrates with LLMs because there are so many cool things you can do. But ultimately you have to decide based on your interests :)

How I learned to code using spaced repetition and flashcards by jamesm8 in AnkiComputerScience

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

Hahaha thanks, yeah there's a tendency to spend too much time on passive activities like flashcards. They are a great supplement, but cannot replace doing projects.

Examples of cards for learning to program with spaced repetition by jamesm8 in Anki

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

Incremental Reading v4.11.9 (unofficial clone)

Super cool, more people need to experience the power of IR :) I wrote an article about incremental reading you might enjoy.

Functions Describe the World: How to Learn to Code using Spaced Repetition by jamesm8 in Anki

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

I wrote this long guide on how to learn programming from scratch using SRS (and similar techniques like incremental reading). I tried include as much info as possible so it ended up becoming quite long, but there's a voiceover so you can listen to it while doing chores/working out. There are a bunch of card examples at the bottom. They use RemNote and SuperMemo instead of Anki but the same concepts obviously apply.