Rogue Scholar Beiträge

language
Veröffentlicht in quantixed

We have a new paper out. It’s about how chromosomes get shared during cell division. The paper in a nutshell In science-speak Misaligned chromosomes outside the exclusion zone become *ensheathed *in multiple layers of endomembranes. This event consigns the chromosome to missegregation and generates a micronucleus. In normal language Cells can make mistakes when they divide.

Veröffentlicht in rOpenSci - open tools for open science

Did you know that GitHub lets you refer to the default branch of any repository by substituting the branch name with HEAD in the url? This is a very useful trick to write robust code that works regardless of whether the default branch is called main or master, and will keep working when the default branch gets renamed at some point.

Veröffentlicht in quantixed

I found this great puzzle hidden in an app aimed at children. There are 300 lightbulbs in a row, labelled 1 to 300, each with an on/off switch. We count from 1 to 300 and flick the switches as follows: on “1” all lightbulbs are switched on. On “2” lightbulbs 2, 4, 6, 8 etc. and switched (turning them off). On “3” lightbulbs 3, 6, 9 etc. are switched.

Veröffentlicht in rOpenSci - open tools for open science
Autoren Maëlle Salmon, Noam Ross

rOpenSci Software Peer Review and Statistical Software Peer Review rely on the volunteer work of reviewers, and editors.Editors manage the day-to-day flow of submissions, recruit reviewers and guide the peer-review process from start to finish.

Autoren Maëlle Salmon, Noam Ross

Los procesos de revisión de software y revisión de software estadístico que realizamos en rOpenSci dependen del trabajo voluntario de quienes realizan estas tareas de revisión y edición.El equipo editorial gestiona el flujo diario de envíos, recluta personas para revisar y guía el proceso de revisión por pares de principio a fin.

Veröffentlicht in recology
Autor Scott Chamberlain

I was working on a work task last week, and needed to filter out one instance of a class from a list of class instances. No matter how you do this speed doesn’t matter too much if you’re doing this operation once or a few times. However, I this operation needs to be done about 100K times each time the script runs - so speed definitely does matter in this case.