Kalcifer

joined 11 months ago
[–] [email protected] 10 points 2 weeks ago* (last edited 2 weeks ago) (1 children)

I'd like to see a logarithmic version of this graph. Picking out a straight line in a log graph is easier than trying to discern an exponential. I want that juicy exponential.

[–] [email protected] 1 points 2 weeks ago

Not really as those are public things.

Would you mind citing an example of exactly what you are referring to? I feel like I'm presuming a lot of things in your statements here.


Dhcp is more of a issue.

I don't know if it's "more", or "less" of an issue, but all these things are worthy of concern.

[–] [email protected] 0 points 2 weeks ago (2 children)

That would certainly also be worthy of concern.

[–] [email protected] 0 points 2 weeks ago (4 children)

How do you mean?

[–] [email protected] 1 points 2 weeks ago

Huh. That's actually kind've a clever use case. I hadn't considered that. I presume the main obstacle would be the token limit of whatever LLM that one is using (presuming that it was an LLM that was used). Analyzing an entire codebase, ofc, depending on the project, would likely require an enormous amount of tokens that an LLM wouldn't be able to handle, or it would just be prohibitively expensive. To be clear, that's not to say that I know that such an LLM doesn't exist — one very well could — but if one doesn't, then that would be rationale that i would currently stand behind.

[–] [email protected] 1 points 2 weeks ago

Fair point. I think "leak" is likely the wrong term to use here. "Exposes" is probably a better one. I'll update the post promptly.

1
submitted 2 weeks ago* (last edited 2 weeks ago) by [email protected] to c/[email protected]
 

Git records the local timezone when a commit is made [1]. Knowledge of the timezone in which a commit was made could be used as a bit of identifying information to de-anonymize the committer.

Setting one's timezone to UTC can help mitigate this issue [2][3] (though, ofc, one must still be wary of time-of-day commit patterns being used to deduce a timezone).

References

  1. Git documentation. git-commit. "Date Formats: Git internal format". Accessed: 2024-08-31T07:52Z. https://git-scm.com/docs/git-commit#Documentation/git-commit.txt-Gitinternalformat.

    It is <unix-timestamp> <time-zone-offset>, where <unix-timestamp> is the number of seconds since the UNIX epoch. <time-zone-offset> is a positive or negative offset from UTC. For example CET (which is 1 hour ahead of UTC) is +0100.

  2. jthill. "How can I ignore committing timezone information in my commit?". Stack Overflow. Published: 2014-05-26T16:57:37Z. (Accessed: 2024-08-31T08:27Z). https://stackoverflow.com/questions/23874208/how-can-i-ignore-committing-timezone-information-in-my-commit#comment36750060_23874208.

    to set the timezone for a specific command, say e.g. TZ=UTC git commit

  3. Oliver. "How can I ignore committing timezone information in my commit?". Stack Overflow. Published: 2022-05-22T08:56:38Z (Accessed: 2024-08-31T08:30Z). https://stackoverflow.com/a/72336094/7934600

    each commit Git stores a author date and a commit date. So you have to omit the timezone for both dates.

    I solved this for my self with the help of the following Git alias:

    [alias]
    co = "!f() { \
        export GIT_AUTHOR_DATE=\"$(date -u +%Y-%m-%dT%H:%M:%S%z)\"; \
        export GIT_COMMITTER_DATE=\"$(date -u +%Y-%m-%dT%H:%M:%S%z)\"; \
        git commit $@; \
        git log -n 1 --pretty=\"Autor: %an <%ae> (%ai)\"; \
        git log -n 1 --pretty=\"Committer: %cn <%ce> (%ci)\"; \
    }; f"
    


Cross-posts:

 

In one of my posts, I noticed this removed comment:

I was curious what it was, so I checked the modlog, but it states that the last mod action in this community occurred a month ago:

What's up with this? Are mod actions being scrubbed from the modlog?

 

I'm looking for a cheap and portable tablet that I can use for writing. Microsoft Surface Pro tablets, at least around the gen 4 models, are rather cheap to buy used, and they seem decently well made. Naturally, were I to buy one, I would have to install Linux onto it.

I've been peripherally aware of the Linux Surface project for some time now. I looked at it recently, after having not for some time, and it seems that they have really made good progress compared to what I remember, and it's making me much more interested in trying to install Linux on a Surface Pro.

Having never owned a Surface Pro, I'm not sure which models are the most reliable and sturdy. I'm not looking for something that's the flashiest; I want something that works well. I want something pragmatic — something akin to the idea of an older era of Thinkpad (eg T460). I want a pen with low input delay and good accuracy, reliable and responsive touch controls, and a decent display. I was thinking the Surface Pro 4 might be a good choice, but it's hard to know as there aren't many videos out there of people installing Linux on them, so I'm wondering what your experience has been with Microsoft Surface Pro's and installing Linux on one.


Cross-posts:

120
Rule Fingers (sh.itjust.works)
 
[–] [email protected] 1 points 1 month ago* (last edited 1 month ago)

What the fuck. That’s horrifying. I also though that every sensible workplace bans the use of AI.

I don't see it as being different than any other tool. Aside from the ethical discussions, and assuming that it is being used as if it were simply a tool, if it increases productivity, then what's the issue?

[–] [email protected] 1 points 1 month ago

Yeah, I agree — it feels unnecessarily ambiguous.

 

My config for reflector is currently set as follows:

# Set the output path where the mirrorlist will be saved.
--save /etc/pacman.d/mirrorlist

# Select the transfer protocol.
--protocol https

# Use only the most recently synchronized mirrors.
--latest 200

# Sort the mirrors by synchronization time.
--sort rate

# Return, at most, the following number of mirrors.
--number 20

# Print extra info.
--verbose

I have Reflector set to run as a Systemd service, so it will run when my computer boots.

The "issue" is that I update my system as soon as I boot. Since Reflector is sorting mirrors by their measured download rate, I wonder if downloading updates, or simply doing any action that downloads data, would interfere with those measurements and cause Reflector to choose mirrors that may not be the fastest. I could simply wait for Reflector to finish before using the computer, but it takes quite a while to sort through 200 mirrors.

Is this concern justified? If so, are there ways to mitigate it that don't require me to wait for Reflector to finish? I've thought about setting it as a Pacman hook so that it runs after updating, but, then, that relies on me to perform an update for the mirrorlist to be refreshed, and that still leaves the concern of other actions eating up network bandwidth, thus skewing the measurements.

0
submitted 1 month ago* (last edited 1 month ago) by [email protected] to c/[email protected]
 

I'm looking for an open-source medication/pill tracking app.

Requirements:

  • Android support
  • Ability to create custom medication/pill entries
  • Ability to set notification reminders for taking pills
  • Ability to arbitrarily create entries at any date/time

Nice-to-haves:

  • Data export/backup
  • Data-at-rest encryption
  • Data visualizations

Cross-posted at https://sh.itjust.works/post/23572613

[–] [email protected] 1 points 1 month ago* (last edited 1 month ago)

Pet theory: most Dvorak users were, in their pre-enlightenment lives, messy freestyle 3-finger typists.

Given that Dvorak tries to maximize alternating hands when typing consecutive characters [1], that theory definitely feels plausible given that the "hunt-and-peck" style for typing naturally seems to work with alternating hands. I think the same idea could also be applied to mobile typing as you only have two thumbs — perhaps Dvorak would lend itself well to mobile typing?

References

  1. "Dvorak keyboard layout". Wikipedia. Accessed: 2024-08-10T23:00Z. https://en.wikipedia.org/wiki/Dvorak_keyboard_layout#Overview

Letters should be typed by alternating between hands (which makes typing more rhythmic, increases speed, reduces error, and reduces fatigue).


If you ever went to the trouble of formally learning to touch-type Qwerty, moving to another layout just seems impossibly foreboding.

It's not that bad. By my experience, having gone from QWERTY to Dvorak to Colemak to Workman, it takes maybe an hour to memorize the keys, then it's just a matter of practicing by using it. You will progressively get faster and faster as it becomes second nature. To get to full typing speed and for it to feel completely natural, however, it will likely take a month, depending on how often and how much one types.

Something interesting that I noticed, though, is that it seems that the brain is only to be able to know one keyboard layout well at a time. If I learn a new layout, I don't maintain my skill with the previous layout minus the skill lost due to lack of practice. It almost feels entirely zero-sum. As I gain skill in one keyboard layout, I seem to equally lose skill in the previously known keyboard layout. I do try and maintain some level of proficiency with QWERTY, given that it is still the standard and is the most common, but it takes considerably more effort. It seems to be less acquiring a new skill and more rewiring the brain.

[–] [email protected] 1 points 1 month ago

Under pros and cons

Ah, okay! I didn't see that. Good to know.

Quite funny that, assumedly, Windows prevents those things from being remapped. I personally love that the Capslock key got changed to the Backspace key. It's so much more comfortable.

[–] [email protected] 2 points 1 month ago

They have a section on databases, but, yeah, it looks like nothing for query languages.

[–] [email protected] 0 points 1 month ago (2 children)

What do you mean? It's just a layout. How would it vary depending on the OS?

2
submitted 1 month ago* (last edited 1 month ago) by [email protected] to c/[email protected]
 

I use Workman.

EDIT (2024-08-10T19:23Z): I should clarify that I am referring to the layout that you use for a physical computer keyboard, not a mobile/virtual keyboard.

32
submitted 1 month ago* (last edited 1 month ago) by [email protected] to c/[email protected]
 

I'm looking for a wiki to use and contribute to that provides information similar to what AllTrails provides, and functions similarly to Wikipedia. I would like for the wiki's data to be free and open, and for it to operate under a reasonably permissive license.


Cross-posted to: https://sh.itjust.works/post/23459715

 

References

 

I drink PG Tips Original.

1
submitted 2 months ago* (last edited 2 months ago) by [email protected] to c/[email protected]
 

Dr. Amen seemingly is a very popular "ADHD influencer". Many of his claims surrounding ADHD, however, are scientifically dubious. His main claim to fame is his work with SPECT imaging as a tool for diagnosing mental disorders [11]. Specifically relevant to this community is his advocacy for its purported use in diagnosing ADHD [12]; however, there is virtually no research to support this practice [1]. The only research that does exist (as far as I've been able to find, anyways) is a paper that he co-authored [2]. The paper does appear to show that SPECT can be used to measure observable differences between ADHD brains and the control brains [2.1], but one paper is far from an established body of supportive science for a medical practice that he touts and charges money for [5][10]. In addition to this, he also diagnoses what he calls the "7 types of ADD" [6]. This is not standard diagnostic practice in the DSM-5 [7]. He also operates an online store at brainmd.com where he sells many supplements that he has publicly claimed help with ADHD management [3.1], and he advocates for their use in his practice [4] — this is a conflict of interest; however, the supplements that he advocates for (that I have looked into) do have some research behind them [8][9], but they appear to not be well established treatments. I would also be wary of his research as he has openly stated that he doesn't respect the main body of psychiatric researchers, and that he doesn't wish to listen to their criticism [3.2].

I don't intend for this post to be interpreted as a trashing of Dr. Amen's reputation, nor do I fault him for trying to earn a living. There is simply a large potential for shady behavior given the context as a whole, and I believe that it is wise to be very cautious of his advice. I do hope that his research turns out to be beneficial, and not exploitative — I think that there is great benefit to be had from more accurate diagnostic methods, and improved classifications.


References

  1. "The Puzzle of Neuroimaging and Psychiatric Diagnosis: Technology and Nosology in an Evolving Discipline". Martha J. Farah, Seth J. Gillihan. AJOB Neurosci. 2012-10-01. https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8653781/.
    • The lack of empirical validation has led to widespread condemnation of diagnostic SPECT as premature and unproven.

  2. "SPECT Functional Neuroimaging Distinguishes Adult Attention Deficit Hyperactivity Disorder From Healthy Controls in Big Data Imaging Cohorts". Daniel G. Amen, Theodore A. Henderson, Andrew Newberg. Frontiers in Psychiatry. 2021-11-24. https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3597411/.
    1. See Table 3.
  3. ""Healing ADD - See And Heal The 7 Types!" with Dr. Daniel Amen". AmenClinics. YouTube. 2014-07-11. https://www.youtube.com/watch?v=UWnJ4wjVu9k.
    1. T23:20
    2. T11:26
  4. "Is Dr. Amen a scammer or legit?". KeyasWorld. YouTube. 2022-03-01. https://www.youtube.com/watch?v=RhQx6UMDLGw.
    • T15:32
  5. "Daniel Amen is the most popular psychiatrist in America. To most researchers and scientists, that’s a very bad thing.". Neely Tucker. The Washington Post. 2012-09-09T08:57-04:00. https://www.washingtonpost.com/lifestyle/magazine/daniel-amen-is-the-most-popular-psychiatrist-in-america-to-most-researchers-and-scientists-thats-a-very-bad-thing/2012/08/07/467ed52c-c540-11e1-8c16-5080b717c13e_story.html [Internet Archive link].
    • A full initial session, including two scans, costs about $3,500.

  6. "Getting to know the 7 Types of ADD". Amen Clinics. https://www.amenclinics.com/wp-content/uploads/2021/05/ADD_eBook_FNL_R1.pdf [Internet Archive link].
    • At Amen Clinics, one of the first—and biggest— lessons we learned from our brain imaging work is that attention deficit disorder (ADD) is not a single or simple disorder. In fact, there are 7 Types of ADD and each has a unique set of symptoms that requires a customized treatment plan.

  7. "Diagnostic and Statistical Manual of Mental Disorders". 5ed. American Psychiatric Association. 2013. https://www.psychiatry.org/psychiatrists/practice/dsm [Internet Archive link].
    • 314.01 (F90.2) Combined presentation: If both Criterion A1 (inattention) and Crite- rion A2 (hyperactivity-impulsivity) are met for the past 6 months.

      314.00 (F90.0) Predominantly inattentive presentation: If Criterion A1 (inattention) is met but Criterion A2 (hyperactivity-impulsivity) is not met for the past 6 months.

      314.01 (F90.1) Predominantly hyperactive/impulsive presentation: If Criterion A2 (hy- peractivity-impulsivity) is met and Criterion A1 (inattention) is not met for the past 6 months.

  8. "The Role of Iron and Zinc in the Treatment of ADHD among Children and Adolescents: A Systematic Review of Randomized Clinical Trials ". Roser Granero, Alfred Pardo-Garrido, Ivonne Lorena Carpio-Toro, Andrés Alexis Ramírez-Coronel, Pedro Carlos Martínez-Suárez, Geovanny Genaro Reivan-Ortiz. Nutrients. Elsevier. 2021-11-13. https://www.mdpi.com/2072-6643/13/11/4059.
  9. "Magnesium status and attention deficit hyperactivity disorder (ADHD): A meta-analysis". Mohammad Effatpanah, Mahdi Rezaei, Hosein Effatpanah, Zeynab Effatpanah, Hamed Kord Varkaneh, Seyed Mohammad Mousavi, Somaye Fatahi, Giulia Rinaldi, Rezvan Hashemi. 2019-02-25. https://www.sciencedirect.com/science/article/abs/pii/S0165178118318456
  10. "Could High-Tech Brain Scans Help Diagnose ADHD?". Carl Sherman. ADDitude. 2023-11-17. https://www.additudemag.com/brain-scans-for-adhd/ [Internet Archive link].
    • Several scans may be required, at a cost that can top $1,000.

  11. "SPECT Research Overview". Amen Clinics. https://www.amenclinics.com/approach/spect-research/ [Internet Archive link].
    • Research has repeatedly recognized the value of brain SPECT—the imaging technology we use with our patients at Amen Clinics—for assessing many different areas of brain function, especially the blood flow patterns in issues such as traumatic brain injury, post-traumatic stress disorder, ADHD, depression, OCD, dementia, substance abuse, autism, seizures, and strokes.

  12. "Attention Deficit Disorder (ADD/ADHD)". Amen Clinics. https://www.amenclinics.com/conditions/adhd-add/ [Internet Archive link].
    • [...] we use brain SPECT imaging to determine which of the 7 types of ADD/ADHD a patient has so our doctors can target treatment specific to their needs.

view more: next ›