Readit News logoReadit News
spaboleo commented on Handwriting but not typewriting leads to widespread brain connectivity   frontiersin.org/journals/... · Posted by u/richrichie
andy_xor_andrew · 2 years ago
This smells true to me, though I couldn't exactly explain why.

(baseless speculation below)

One thing I've noticed is how drastically my handwriting (and maybe hand dexterity in general) varies wildly from hour to hour, mostly depending on how tired I am or how much caffeine I've had.

If I'm feeling tired and sluggish, my handwriting is a disaster. It doesn't look good. It doesn't feel good. But after some caffeine, or otherwise becoming more alert, suddenly it looks better, and it feels much better as I do it.

Is this just me? I guess it's not surprising that caffeine would have an impact like this. But the part that's surprising to me is how pronounced and reliable it is.

spaboleo · 2 years ago
I am wondering for a long time whether this differs from person to person based on their preferred mode of thinking.

As a seemingly overly visual thinker the aspect of making several small decisions about how to layout what I'm writing down by hand also seems to play a huge role in that. I have to make positioning and thereby spacing and sizing decisions, choose the color, as well as making decisions on in what style (caps, cursive, script) I write each letter. I can easily use graphical elements like lines, arrows, boxes, etc.

Anything created digitally by primarily typing will always have a more dynamic and flowing nature, while following the linearity of the typed sequence of characters. It takes away a lot of the decisions that I have to make when laying out a handwritten note.

Anecdotally, I seem to remember mindmaps created with digital tools that rearrange elements automatically based on available space much less than hand-drawn ones. Yet, those come with their own downsides.

spaboleo commented on Handwriting but not typewriting leads to widespread brain connectivity   frontiersin.org/journals/... · Posted by u/richrichie
zharknado · 2 years ago
They didn’t test learning at all; they tested writing a word or typing a word based on a Pictionary prompt.

I’m not a research scientist, but it seems like you could look at this evidence and just as easily conclude that writing by hand increases the extraneous load for learners, i.e. that the task of writing itself requires more attention or “mental bandwidth” which would be diverted away from whatever you’re hoping they will learn.

I’d like to know if there’s evidence against this alternative explanation.

spaboleo · 2 years ago
In this study they observed specific patterns that previously were attributed to learning and remembering.

> "The present findings suggest that the intricate and precisely controlled handwriting movements have a beneficial impact on the brain’s connectivity patterns related to learning and remembering."

But you are right, they do not directly _prove_ that handwriting yields a greater learning effect.

Deleted Comment

spaboleo commented on Rabbit: LLM-First Mobile Phone   rabbit.tech/... · Posted by u/DreamGen
zyang · 2 years ago
Does the LLM run on device or in cloud. Can't find any info on the website but I assume device that size everything runs in the backend?
spaboleo · 2 years ago
Cloud since a web interface and email interaction are showcased in the keynote.
spaboleo commented on Ask HN: Small scripts, hacks and automations you're proud of?    · Posted by u/ThePhysicist
cywick · 2 years ago
> alias rm='trash -i'

This can really backfire. Ages ago, I used to have exactly the same alias for 'rm'. After a year or two, I got so used to 'rm' not really being destructive that one late night when I was really tired, I used it on a remote system without feeling the need to carefully check the file name. That remote system, of course, did not have 'rm' aliased to a safer version...

Long story short, I strongly recommend using a different alias name (e.g., 'rem', 'rmi' or so). In this case, the worst that can happen is getting a 'command not found' message, when the alias is missing.

spaboleo · 2 years ago
I agree, yet I consider this to be the other way round. I treat "rm" still like a direct removal of the file and therefore use it with caution every time. Having it trash the file on my local machines is just a to me hidden fallback. But it is a very valid concern, of course.
spaboleo commented on Ask HN: Small scripts, hacks and automations you're proud of?    · Posted by u/ThePhysicist
jtwaleson · 2 years ago
https://blog.waleson.com/2022/03/the-worlds-first-cowboy-key...

Source code here: https://github.com/jtwaleson/cowboy-bike-remote-ble

I’m currently working on finalizing the PCB version, the first one had some flaws so the battery drained really quickly.

spaboleo · 2 years ago
Thank you. I just recently discovered the nRF52 as a potential solution for my own BLE project. To use a keyfob as a housing is brilliant and very 'stealth'. I have no experience with the nRF52 chips, but this will be a very useful resource for me.

In your blog post you mention that "switching between 24km/h and 25km/h" is very important. May I ask why? Isn't such a speed difference almost negligible as you easily surpass it when pedalling?

spaboleo commented on Ask HN: Small scripts, hacks and automations you're proud of?    · Posted by u/ThePhysicist
pncnmnp · 2 years ago
Really cool idea. For macOS, I just found out about trash https://formulae.brew.sh/formula/trash
spaboleo · 2 years ago
One of the few aliases I always use is:

  alias rm='trash -i'
It will prompt you before moving files to the trash instead of deleting them straight away on macOS.

I've also added the -i flag to the following:

  alias mv='mv -i -v'
  alias cp='cp -i -v'
  alias ln='ln -i -v'
It warns me when a file might be overwritten in the target directory and will display a short protocol of the actions performed due to the 'verbose' flag.

spaboleo commented on Ask HN: Small scripts, hacks and automations you're proud of?    · Posted by u/ThePhysicist
mo_42 · 2 years ago
I use the following tiny script to make PDFs look like they have been scanned. There are still entities that require you to physically sign a document and scan it. So far, everyone accepted PDFs like these:

  #!/bin/sh
  ROTATION=$(shuf -n 1 -e '-' '')$(shuf -n 1 -e $(seq 0.05 .5))
  convert -density 150 $1 \
    -linear-stretch '1.5%x2%' \
    -rotate ${ROTATION} \
    -attenuate '0.01' \
    +noise  Multiplicative \
    -colorspace 'gray' $2

spaboleo · 2 years ago
This is awesome! It would be perfect if there an occasional artefact line crossing the entire page vertically could be added. You know, those lines caused by an old crusty ink jet print head. Also a visibly cast shadow by the allegedly scanned edge of the paper due to misalignment on the flat bed would add to the illusion.
spaboleo commented on The E-Ink Badge   census.dev/blog/diy-e-ink... · Posted by u/nate
CrazyStat · 3 years ago
I have an e-ink tablet (Boox Tab X), which is like a Kindle Scribe except it's also a (more or less) full featured Android tablet.

I have a very nice setup with Zotero, where I can sync papers I want to read to the tablet (running Zoo for Zotero), read and mark them up, and then sync the marked up version back to my computer.

spaboleo · 2 years ago
I'm very interested in those Boox tablets. Is there a way to have them display a static image (a custom website or Android app) when they are in standby? Or do they force-switch to some screen saver mode, like many e-readers do?
spaboleo commented on I've been tracking everything about myself   aprilzero.com/#... · Posted by u/ericnakagawa
a8da6b0c91d · 11 years ago
I have got enormous value from tracking my resting heart rate and body temperature. Anything under 75 bpm or under 98F and I know I need to eat and sleep more and skip exercise. No need to log. I think a ton of folks would benefit.

Beyond those two metrics I can't think of anything it'd be useful to check regularly. Reflex time or achilles reflex test might be good.

spaboleo · 11 years ago
Uhm? Why do you consider a resting heart rate of under 75bpm to be a bad condition?

I'm just assuming that you are within the average age group of hacker news readers (somewhere between 20 and 40 years) it's not really recommended for you to be above 75bpm.

u/spaboleo

KarmaCake day12September 14, 2013View Original