HackerTrans
TopNewTrendsCommentsPastAskShowJobs

michaelhoffman

no profile record

Submissions

Anthropic is scraping websites so fast it's causing problems

pivot-to-ai.com
50 points·by michaelhoffman·2 yıl önce·24 comments

comments

michaelhoffman
·6 ay önce·discuss
I understand why this is bad, but I personally would sign up for a Microsoft account anyway. Mainly, I don't want all my stuff in "C:\Users\micha". Is there a way to set your username?
michaelhoffman
·10 ay önce·discuss
When FASTA was invented in 1985, generally sequencing reads would be about half that.

The simplicity of FASTA seems like a dream compared to the GenBank flat file format used before then. And around the year 2000, less computationally-inclined scientists were storing sequence in Microsoft Word binary .doc files.

A lot of file formats (including bioinformatics formats!) have come and gone in that time period. I don't think many would design it this way today, but it has a lot of nice features like the ones you point out that led to its longevity.
michaelhoffman
·geçen yıl·discuss
Using machine learning, he counted all of the yurts.

Counting all of the yurts that happen to be using machine learning is a way more difficult problem.
michaelhoffman
·2 yıl önce·discuss
> I assume the author means "out of all the ISAs I know"?

Out of all the ISAs where they know whether it provides integer division or not.
michaelhoffman
·2 yıl önce·discuss
This is not "hard-coded" as I would describe it. It is defined in `gv.el`:

    (gv-define-setter buffer-string (store)
  `(insert (prog1 ,store (erase-buffer))))
Unfortunately, it is marked obsolete since 29.1. The NEWS says:

* Many seldom-used generalized variables have been made obsolete. Emacs has a number of rather obscure generalized variables defined, that, for instance, allowed you to say things like:

    (setf (point-min) 4)
These never caught on and have been made obsolete. The form above, for instance, is the same as saying

    (narrow-to-region 4 (point-max))
michaelhoffman
·2 yıl önce·discuss
This used to be the case until Emacs 24.1, in 2012.

    Passing a nil argument to a minor mode function call now ENABLES
    the minor mode unconditionally.  This is so that you can write e.g.
    
        (add-hook 'text-mode-hook #'foo-mode)
    
    to enable foo-mode in Text mode buffers, removing the need for
    'turn-on-foo-mode' style functions.  This affects all mode commands
    defined by 'define-minor-mode'.  If called interactively, the mode
    command still toggles the minor mode.
michaelhoffman
·2 yıl önce·discuss
Wherever possible, I use sina plots, which provide many of the advantages of violin plots while actually showing the individual data points.

https://en.wikipedia.org/wiki/Sina_plot

https://cran.r-project.org/web/packages/sinaplot/vignettes/S...

Adding on a representation of mean in a different style (like a black bar) can be helpful. So can a boxplot-style indication of variance, in some cases.