- Oct 2020
-
wendynorris.com wendynorris.com
-
wendynorris.com wendynorris.com
-
wendynorris.com wendynorris.com
-
wendynorris.com wendynorris.com
-
by @wendynorris
-
-
stackoverflow.com stackoverflow.com
-
And now it won't let me edit my comment. (I always find that time limit for editing annoying.)
-
-
psyarxiv.com psyarxiv.com
-
Meeter, M., Bele, T., Hartogh, C. d., Bakker, T., de Vries, R. E., & Plak, S. (2020, October 11). College students’ motivation and study results after COVID-19 stay-at-home orders. https://doi.org/10.31234/osf.io/kn6v9
-
-
humanwhocodes.com humanwhocodes.com
-
Once again, this isn’t good or bad, it’s just the most efficient way to create something that is similar to something else
-
-
-
The only "issue" it has is that its unfamiliar. People have been working with HTML for years and are comfortable with it. That's basically the only reason that people find it more readable. If you make an effort to spend sometime with hyperscript, it becomes as familiar and readable as jsx.
-
-
medium.com medium.com
-
Moreover, React team even removed the “highlight updates” feature from dev tools because people used to obsessively haunt wasted renders with no reasoning behind it
-
-
en.wikipedia.org en.wikipedia.org
-
The perdurantist view is that an individual has distinct temporal parts throughout its existence.
-
-
www.theguardian.com www.theguardian.com
-
Press, A. A. (2020, October 12). Virus that causes Covid-19 can survive up to 28 days on surfaces, scientists find. The Guardian. http://www.theguardian.com/world/2020/oct/12/virus-that-causes-covid-19-can-survive-up-to-28-days-on-surfaces-scientists-find
-
-
dylanvann.com dylanvann.com
-
I’d still be interested in Svelte making things easier so I’ve opened a feature request for Reactive statement cleanup functions.
-
-
github.com github.com
-
I'm not sure I understand the problem, everything you are describing is already possible.
-
-
covid-19.iza.org covid-19.iza.org
-
COVID-19 and the Labor Market. (n.d.). IZA – Institute of Labor Economics. Retrieved October 11, 2020, from https://covid-19.iza.org/publications/dp13749/
-
-
www.sciencedirect.com www.sciencedirect.com
-
30-min pre-incubation of inhibitors and BTK
pre-incubation time is 30 min
-
-
covid-19.iza.org covid-19.iza.org
-
COVID-19 and the Labor Market. (n.d.). IZA – Institute of Labor Economics. Retrieved October 10, 2020, from https://covid-19.iza.org/publications/dp13599/
-
-
covid-19.iza.org covid-19.iza.org
-
COVID-19 and the Labor Market. (n.d.). IZA – Institute of Labor Economics. Retrieved October 10, 2020, from https://covid-19.iza.org/publications/dp13569/
-
-
zachholman.com zachholman.com
-
As programmers, we’re kind of inherently built to want the ABSOLUTE BEST HIGHEST FIDELITY FORMATS OF ALL TIME. Like dammit, I need the timestamp down to the micromillinanosecond for every cheeseburger that gets added to my bespoke Watch-The-BK-Throne app. If I do not have this exact knowledge to the millisecond of when I consumed this BBQ Bacon WHOPPER® Sandwich From Burger King® I may die.
I totally want this as a Post Kind on my website now!
-
-
-
Unfortunately people lack the the time to invest to really understand those things
-
Over time Adam, Surplus' creator, had less and less time to spend on the project and I decided to take my own shot.
-
-
unhosted.org unhosted.org
-
Although I also work with solid in my day job at inrupt, I wrote this guide in my spare time.
Tags
Annotators
URL
-
-
twitter.com twitter.com
-
Fionna O’Leary, 🕯 on Twitter. (n.d.). Twitter. Retrieved October 6, 2020, from https://twitter.com/fascinatorfun/status/1312855480956575744
-
-
covid-19.iza.org covid-19.iza.org
-
IZA – Institute of Labor Economics. ‘COVID-19 and the Labor Market’. Accessed 6 October 2020. https://covid-19.iza.org/publications/dp13745/.
-
-
icla2020b.jonreeve.com icla2020b.jonreeve.com
-
“Yes. My objection is, that your proposal obliges us to wait.”
It would be rather anti climactic for the mystery to be dependant on waiting for the reclaim of the diamond from the bank. It makes me believe that something else is likely to happen in between that timeframe, perchaps a new fact that reveals a different location of the diamond. At any rate it seems as if this part of the plot (the diamond resting in a bank) may not be what's really going on... Interested to see what is missing here, maybe Franklin will somehow remember something from before that event that renders this fact irrelevant, assuming that Rachel is truthful and did indeed see Franklin steal the diamon.
-
-
arxiv.org arxiv.org
-
Yuan, Yuan, Muzhi Guan, Zhilun Zhou, Sundong Kim, Meeyoung Cha, and Yong Li. ‘Disruption in the Chinese E-Commerce During COVID-19:A Case Study of the Beidian Platform’. ArXiv:2009.14605 [Physics], 22 July 2020. http://arxiv.org/abs/2009.14605.
-
- Sep 2020
-
digest.bps.org.uk digest.bps.org.uk
-
How To Get The Most Out Of Virtual Learning – Research Digest. (n.d.). Retrieved September 29, 2020, from https://digest.bps.org.uk/2020/07/30/how-to-get-the-most-out-of-virtual-learning/
-
-
arxiv.org arxiv.org
-
James, N., & Menzies, M. (2020). Human and financial cost of COVID-19. ArXiv:2009.11660 [Physics, q-Fin]. http://arxiv.org/abs/2009.11660
-
-
blog.carbonfive.com blog.carbonfive.com
-
But when you’re using Svelte within a larger Rails app, you probably already have a CSS system in place and there’s no reason to change that. You can just use the same CSS classes as you do elsewhere in your app, and everything will be fine.
-
-
github.com github.com
-
Svelte will not offer a generic way to support style customizing via contextual class overrides (as we'd do it in plain HTML). Instead we'll invent something new that is entirely different. If a child component is provided and does not anticipate some contextual usage scenario (style wise) you'd need to copy it or hack around that via :global hacks.
-
Explicit interfaces are preferable, even if it places greater demand on library authors to design both their components and their style interfaces with these things in mind.
Tags
- trying to prevent one bad thing leading to people doing/choosing an even worse option
- run-time dynamicness/generics vs. having to explicitly list/hard-code all options ahead of time
- workarounds
- Svelte: how to affect child component styles
- maintenance burden to explicitly define/enumerate/hard-code possible options (explicit interface)
- maintenance burden
- forced to fork/copy and paste library code because it didn't provide enough customizability/extensibility / didn't foresee some specific prop/behavior that needed to be overridable/configurable (explicit interface)
- explicit interfaces
- being explicit
- forking to add a desired missing feature/change
- burden
- ugly/kludgey
- component/library author can't consider/know ahead of time all of the ways users may want to use it
Annotators
URL
-
-
github.com github.com
-
This has already forced me to forgo Svelte Material because I would like to add some actions to their components but I cannot and it does not make sense for them to cater to my specific use-case by baking random stuff into the library used by everyone.
-
The point of the feature is to not rely on the third-party author of the child component to add a prop for every action under the sun. Rather, they could just mark a recipient for actions on the component (assuming there is a viable target element), and then consumers of the library could extend the component using whatever actions they desire.
Tags
- flexibility
- reusability
- run-time dynamicness/generics vs. having to explicitly list/hard-code all options ahead of time
- pass-through arguments/props/options
- Svelte: action (use:)
- why this feature is needed
- extensibility
- component/library author can't consider/know ahead of time all of the ways users may want to use it
Annotators
URL
-
-
github.com github.com
-
Your LazyLoad image is now inextensible. What if you want to add a class? Perhaps the author of LazyLoad thought of that and sets className onto the <img>. But will the author consider everything? Perhaps if we get {...state} attributes.
-
-
-
You'll have to create a new component that brings in the functionality of both. TooltipButton, TooltipLink, Link, and TooltipRoutedLink. We're starting to get a lot of components to handle a bit of added functionality.
-
For the tooltip example, if you had a whole bunch of tooltips on different elements, it would be annoying to have different event listeners and "should it be shown" variables for each one.
-
-
-
Perhaps at that point we're better off settling on a way to pass components through as parameters? <!-- App.html --> <Outer contents={Inner}/> <!-- Outer.html --> <div> <div>Something</div> <[contents] foo='bar'/> </div>
-
I would hope for it to come with React-like behavior where I could pass in a string (like div or a) and have it show up as a normal div/a element when the child component used it.
-
-
github.com github.com
-
Use case: Wrapper components that need to render an element (e.g. because they attach event listeners). You'd probably use a <div> there by default but there may be places where this is not desirable for semantic reasons (e.g. in lists).
-
-
-
const components = { Label, Tree, Menu };
-
-
github.com github.com
-
The lack of spread continues to be a big pain for me, adding lots of difficult-to-maintain cruft in my components. Having to maintain a list of all possible attributes that I might ever need to pass through a component is causing me a lot of friction in my most composable components.
-
-
robjhyndman.com robjhyndman.com
-
cross-validation is sometimes not valid for time series models
What? Why? Does he mean k-fold specifically?
-
-
journals.plos.org journals.plos.org
-
Jagan, Mikael, Michelle S. deJonge, Olga Krylova, and David J. D. Earn. ‘Fast Estimation of Time-Varying Infectious Disease Transmission Rates’. PLOS Computational Biology 16, no. 9 (21 September 2020): e1008124. https://doi.org/10.1371/journal.pcbi.1008124.
-
-
www.theguardian.com www.theguardian.com
-
Goodley, S., & Halliday, J. (2020, September 18). Troubled test-and-trace system drafts in management consultants. The Guardian. https://www.theguardian.com/world/2020/sep/18/troubled-covid-test-and-trace-programme-drafts-in-management-consultants
Tags
- is:news
- office role
- test-and-trace
- UK
- testing
- cost
- turnaround time
- lang:en
- COVID-19
- consultant
- tracking
- strategy
- management
- challenge
Annotators
URL
-
-
github.com github.com
-
The feature is highly likely to be implemented, the API and implementation are the only real topics of discussion right now.
-
-
-
Three tests to prove a small piece of behavior. Although it might seem overkill for such a small feature, these tests are quick to write—that is, once you know how to write them
-
-
github.com github.com
-
(At the point at which it does make sense to turn this into a separate Tooltip.svelte component, the extraction is a completely mechanical process that could even be automated by tooling.)
-
-
jsrocks.org jsrocks.orgJS Rocks1
-
6to5 attempted to ship a quick and dirty TDZ static checking feature but had to retract it immediately afterwards due to various bugs in the algorithm.
-
-
github.com github.com
-
Sometimes answering a single question can be very time consuming (such as setting up a benchmark), but discussions tend to stall out if concerns don't get thoroughly addressed.
-
-
www.newscientist.com www.newscientist.com
-
Lu, D. (n.d.). AI can edit video in real time to sync new audio to people’s lips. New Scientist. Retrieved September 14, 2020, from https://www.newscientist.com/article/2254326-ai-can-edit-video-in-real-time-to-sync-new-audio-to-peoples-lips/
-
-
ctbergstrom.com ctbergstrom.com
-
Bergstrom, T., Bergstrom, C. T., & Li, H. (n.d.). Frequency and accuracy of proactive testing for COVID-19. 20.
-
-
psyarxiv.com psyarxiv.com
-
Lewandowsky, Stephan, Simon Dennis, Amy Perfors, Yoshihisa Kashima, Joshua White, Paul Michael Garrett, Daniel R. Little, and Muhsin Yesilada. ‘Public Acceptance of Privacy-Encroaching Policies to Address the COVID-19 Pandemic in the United Kingdom’. Preprint. PsyArXiv, 4 September 2020. https://doi.org/10.31234/osf.io/njwmp.
Tags
- privacy-encroaching policy
- widespread acceptance
- UK
- opt-out clause
- is:preprint
- United Kingdom
- public acceptance
- public
- social distancing
- time limited
- tracking technology
- infected
- contact
- willingness
- co-location tracking
- lang:en
- COVID-19
- immunity passport
- health agencies
- antibodies
Annotators
URL
-
-
www.bbc.co.uk www.bbc.co.uk
-
‘Schools “no Greater Risk” for Children and Staff’. BBC News, 5 September 2020, sec. Health. https://www.bbc.com/news/health-54025708.
-
-
github.com github.com
-
For example, you might want to use the browser’s knowledge of the user’s current time zone to group a collection of elements by date.
Tags
Annotators
URL
-
-
www.nytimes.com www.nytimes.com
-
Goodman, J. D. (2020, August 31). A Quick Virus Test? Sure, If You Can Afford It. The New York Times. https://www.nytimes.com/2020/08/31/nyregion/rapid-coronavirus-test.html
-
- Aug 2020
-
bugs.ruby-lang.org bugs.ruby-lang.org
-
It's unfortunate, but I can understand why they decided this way.
-
-
www.medrxiv.org www.medrxiv.org
-
Ray, E. L., Wattanachit, N., Niemi, J., Kanji, A. H., House, K., Cramer, E. Y., Bracher, J., Zheng, A., Yamana, T. K., Xiong, X., Woody, S., Wang, Y., Wang, L., Walraven, R. L., Tomar, V., Sherratt, K., Sheldon, D., Reiner, R. C., Prakash, B. A., … Consortium, C.-19 F. H. (2020). Ensemble Forecasts of Coronavirus Disease 2019 (COVID-19) in the U.S. MedRxiv, 2020.08.19.20177493. https://doi.org/10.1101/2020.08.19.20177493
-
-
-
6 feet may not always be enough distance to protect from COVID-19. (n.d.). NBC News. Retrieved August 28, 2020, from https://www.nbcnews.com/health/health-news/6-feet-may-not-always-be-enough-distance-protect-covid-n1238083
-
-
link.aps.org link.aps.org
-
Perez, I. A., Di Muro, M. A., La Rocca, C. E., & Braunstein, L. A. (2020). Disease spreading with social distancing: A prevention strategy in disordered multiplex networks. Physical Review E, 102(2), 022310. https://doi.org/10.1103/PhysRevE.102.022310
-
-
-
Jarynowski, A., & Płatek, D. (2020). Could Ramadan catalyze or inhibit SARS-CoV-2 spread? Preliminary results [Preprint]. SocArXiv. https://doi.org/10.31235/osf.io/725dv
-
-
www.medrxiv.org www.medrxiv.org
-
Starnini, M., Aleta, A., Tizzoni, M., & Moreno, Y. (2020). Impact of the accuracy of case-based surveillance data on the estimation of time-varying reproduction numbers. MedRxiv, 2020.06.26.20140871. https://doi.org/10.1101/2020.06.26.20140871
-
-
journals.plos.org journals.plos.org
-
Aiken, E. L., McGough, S. F., Majumder, M. S., Wachtel, G., Nguyen, A. T., Viboud, C., & Santillana, M. (2020). Real-time estimation of disease activity in emerging outbreaks using internet search information. PLOS Computational Biology, 16(8), e1008117. https://doi.org/10.1371/journal.pcbi.1008117
-
-
covid-19.iza.org covid-19.iza.org
-
Inequality in the Impact of the Coronavirus Shock: Evidence from Real Time Surveys. COVID-19 and the Labor Market. (n.d.). IZA – Institute of Labor Economics. Retrieved August 7, 2020, from https://covid-19.iza.org/publications/dp13183/
-
-
www.nber.org www.nber.org
-
Couture, V., Dingel, J. I., Green, A. E., Handbury, J., & Williams, K. R. (2020). Measuring Movement and Social Contact with Smartphone Data: A Real-Time Application to COVID-19 (Working Paper No. 27560; Working Paper Series). National Bureau of Economic Research. https://doi.org/10.3386/w27560
-
-
www.bbc.co.uk www.bbc.co.uk
-
‘Missing School Is “Worse than Virus for Children”’. BBC News, 23 August 2020, sec. UK. https://www.bbc.com/news/uk-53875410.
-
-
healthjournalism.org healthjournalism.org
-
Haelle, Tara. ‘Keep an Eye out for Lead-Time Bias with COVID-19 Deaths’. Association of Health Care Journalists (blog), 21 August 2020. https://healthjournalism.org/blog/2020/08/keep-an-eye-out-for-lead-time-bias-with-covid-19-deaths/.
-
-
advice.shinetext.com advice.shinetext.com
-
I have a theory that time scarcity is also linked to something I'll call time scatteredness. This happens when you really have no idea how long it takes us to complete tasks, and this skews how much time you think you have or need.
I relate to this so much I can still feel the sting on my cheek from where it slapped me
-
-
advice.shinetext.com advice.shinetext.com
-
it’s a wise idea to begin tracking your time in order to get a more realistic handle on how long specific projects and tasks take you. That’ll override your optimism bias and keep your expectations for your own productivity in check.
-
Pushing a deadline back once is one thing. Needing to do it over and over again will make it appear as if you don’t know how to manage your own workload.
-
-
-
CNN, A. V., Holly Yan and Christina Maxouris. (n.d.). FDA won’t ‘cut corners’ to approve a Covid-19 vaccine, commissioner says. CNN. Retrieved 12 August 2020, from https://www.cnn.com/2020/08/10/health/us-coronavirus-monday/index.html
-
-
www.nber.org www.nber.org
-
Diebold, Francis X. ‘Real-Time Real Economic Activity: Exiting the Great Recession and Entering the Pandemic Recession’. Working Paper. Working Paper Series. National Bureau of Economic Research, July 2020. https://doi.org/10.3386/w27482.
-
-
www.nber.org www.nber.org
-
Hamermesh, Daniel S. ‘Lock-Downs, Loneliness and Life Satisfaction’. Working Paper. Working Paper Series. National Bureau of Economic Research, April 2020. https://doi.org/10.3386/w27018.
-
-
blog.pragmaticengineer.com blog.pragmaticengineer.com
-
GTD strategies
Author refers to the [Getting Things Done book](https://www.goodreads.com/book/show/1633.Getting_Things_Done) by David Allen.
Also recommend complementing above with J. Knapp's excellent Make Time book
-
- Jul 2020
-
julia-etx.com julia-etx.com
-
19th century
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
late 1700s
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
3,000 years ago
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
back much further
-
possibly oldest
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
1896
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
goes back more than 2,000 years to the Han Dynasty
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
ancient times
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
prehistory
-
ancient
Tags
Annotators
URL
-
-
-
19th century
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
mid 20th century
Tags
Annotators
URL
-
-
-
over 5,000 years
-
oldest known group of dogs in existence today
Tags
Annotators
URL
-
-
-
17th-century
-
1920s
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
since ancient times
-
1930s
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
1539
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
1200 BC
-
medieval
-
ancient
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
4,000 years
-
thousands of years
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
from at least the 1600s
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
mid- to late 19th century
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
13th-century
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
1800s
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
early 1800s
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
since the Middle Ages
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
17th century
-
hundreds of years ago
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
since the time of Charlemagne
Tags
Annotators
URL
-
-
-
the 15th century
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
as early as the late 1500s
-
ancient
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
fourth or fifth century BC.
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
around 1900
-
the 20th century
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
as far as 2,500 B.C.
-
late 1800s and early 20th century
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
medieval times
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
late 1860s
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
old-time
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
year 43
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
as early as the Eleventh and Twelfth centuries
-
centuries ago
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
1325
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
mid-1600s
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
before the founding of the country
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
about a thousand years ago
-
third-century
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
after World War II
-
1930s
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
1986
-
January 20, 1984
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
sometime in the 13th century
-
ancient
Tags
Annotators
URL
-
-
osf.io osf.io
-
Sevi, S., Aviña, M. M., Péloquin-Skulski, G., Heisbourg, E., Vegas, P., Coulombe, M., Arel-Bundock, V., Loewen, P. J., & Blais, A. (2020). Logarithmic vs. Linear Visualizations of COVID-19 Cases Do Not Affect Citizens’ Support for Confinement [Preprint]. SocArXiv. https://doi.org/10.31235/osf.io/h6z4f
-
-
julia-etx.com julia-etx.com
-
great antiquity
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
late Middle Ages
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
distant past
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
early years of the 20th century
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
early part of the twentieth century
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
1825
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
1500s
-
ancient
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
ancient
Tags
Annotators
URL
-
-
-
1870s
Tags
Annotators
URL
-
-
-
1500s
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
ancient
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
16th century
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
more than a thousand years
-
ancient
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
19th century
Tags
Annotators
URL
-
-
-
1840s
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
early 1800s
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
early 1800s
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
As early as 1853
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
6,000 years to the Bronze Age
Tags
Annotators
URL
-
-
-
1800s
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
By the early 18th century
Tags
Annotators
URL
-
-
-
late 1800s
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
Revolutionary times
Tags
Annotators
URL
-
-
bugs.ruby-lang.org bugs.ruby-lang.org
-
julia-etx.com julia-etx.com
-
early 1800s
Tags
Annotators
URL
-
-
-
early 1800s
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
1700s
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
roughly 4,000 years ago
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
early 17th century
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
mid-1800s
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
predates written history by a few thousand years
Tags
Annotators
URL
-
-
julia-etx.com julia-etx.com
-
1600s
Tags
Annotators
URL
-
-
bugs.ruby-lang.org bugs.ruby-lang.org
-
There is a usability problem here, it's basically impossible to read the output of Time#inspect in such a case, even though the input was readable.
-
So, which is better? t.inspect # => "2007-11-01 15:25:00 8483885939586761/68719476736000000 UTC" t.inspect # => "2007-11-01 15:25:00.123456789000000004307366907596588134765625 UTC"
-
-
-
Starominski-Uehara, M. (2020). Mass Media Exposing Representations of Reality Through Critical Inquiry [Preprint]. SocArXiv. https://doi.org/10.31235/osf.io/vz9cu
-
-
-
Nam, R. (2020, July 14). Long waits for test results spark new COVID-19 fears [Text]. TheHill. https://thehill.com/policy/healthcare/507363-long-waits-for-test-results-spark-new-covid-19-fears
-
-
osf.io osf.io
-
Dou, Z., Stefanovski, D., Galligan, D., Lindem, M., Rozin, P., Chen, T., & Chao, A. M. (2020). The COVID-19 Pandemic Impacting Household Food Dynamics: A Cross-National Comparison of China and the U.S. [Preprint]. SocArXiv. https://doi.org/10.31235/osf.io/64jwy
-
-
osf.io osf.io
-
Schraff, D. (2020). Political trust during the Covid-19 pandemic: Rally around the flag or lockdown effects? [Preprint]. SocArXiv. https://doi.org/10.31235/osf.io/pu47c
-
-
osf.io osf.io
-
Mishra, S. V. (2020). COVID-19, online teaching, and deepening digital divide in India [Preprint]. SocArXiv. https://doi.org/10.31235/osf.io/wzrak
-
-
github.com github.com
-
Problem is, everyone's busy, so it can be days or even weeks before even a small PR is merged. So I'm stashing my stuff here as I write it. I'll still try to keep the PRs in motion, to gradually get some of this merged.
-
-
osf.io osf.io
-
Lyttelton, T., Zang, E., & Musick, K. (2020). Gender Differences in Telecommuting and Implications for Inequality at Home and Work. https://doi.org/10.31235/osf.io/tdf8c
-
- Jun 2020
-
psyarxiv.com psyarxiv.com
-
Parsons, Sam. ‘Reliability Multiverse’, 26 June 2020. https://doi.org/10.31234/osf.io/y6tcz.
-
-
doi.org doi.org
-
Horbach, S. P. J. M. (2020). Pandemic Publishing: Medical journals drastically speed up their publication process for Covid-19. BioRxiv, 2020.04.18.045963. https://doi.org/10.1101/2020.04.18.045963
-
-
myronmars.to myronmars.to
-
Disqus:
As for publishing this as an actual gem on rubygems.org...I have enough open source I'm involved in all ready (or too much, as my wife would probably say) and I'm not really interested in maintaining another gem. Are you interested in taking over this code and releasing it as a gem and being maintainer?
-
-
www.bmj.com www.bmj.com
-
Glasziou, P. P., Sanders, S., & Hoffmann, T. (2020). Waste in covid-19 research. BMJ 2020;369. doi: https://doi.org/10.1136/bmj.m1847
-
-
www.amazon.com www.amazon.com
-
I could get a lot more done in an 8-9 hour day with a PC and a desk phone than I get done now in a 9-10 hour day with a laptop /tablet / smartphone, which should allow me to be more a lot more productive but just interrupt me. I don't want the mobile flexibility to work anywhere. It sucked in management roles doing a full day then having dinner with friends and family then getting back to unfinished calls and mails. I much prefer to work later then switch off totally at home.
-
-
stackoverflow.blog stackoverflow.blog
-
Internally, we are continuing to encourage any employee who needs time and space to process current events or participate in protests should they choose to take sick time so that it doesn’t impact their personal paid-time off.
-
-
www.nytimes.com www.nytimes.com
-
Zimmer, C. (2020, June 1). How You Should Read Coronavirus Studies, or Any Science Paper. The New York Times. https://www.nytimes.com/article/how-to-read-a-science-study-coronavirus.html
-
-
link.aps.org link.aps.org
-
Van Mieghem, P., & Wang, F. (2020). Time dependence of susceptible-infected-susceptible epidemics on networks with nodal self-infections. Physical Review E, 101(5), 052310. https://doi.org/10.1103/PhysRevE.101.052310
-
-
-
Costantini, S., De Meo, P., Giorgianni, A., Migliorato, V., Provetti, A., & Salvia, F. (2020). Exploring Low-degree Nodes First Accelerates Network Exploration. ArXiv:2005.08050 [Physics]. http://arxiv.org/abs/2005.08050
-
-
arxiv.org arxiv.org
-
Kempfert, K., Martinez, K., Siraj, A., Conrad, J., Fairchild, G., Ziemann, A., Parikh, N., Osthus, D., Generous, N., Del Valle, S., & Manore, C. (2020). Time Series Methods and Ensemble Models to Nowcast Dengue at the State Level in Brazil. ArXiv:2006.02483 [q-Bio, Stat]. http://arxiv.org/abs/2006.02483
-
-
www.jpost.com www.jpost.com
-
India’s war against the coronavirus pandemic. (n.d.). The Jerusalem Post | JPost.Com. Retrieved June 2, 2020, from https://www.jpost.com/opinion/indias-war-against-the-coronavirus-pandemic-629970
-
-
www.engadget.com www.engadget.com
-
The app was still stuck in beta testing years after its debut, and the creators had to ignore bug reports and feature requests due to the limited resources.
-
-
stm.sciencemag.org stm.sciencemag.org
-
Weissleder, R., Lee, H., Ko, J., & Pittet, M. J. (2020). COVID-19 diagnostics in context. Science Translational Medicine, 12(546). https://doi.org/10.1126/scitranslmed.abc1931
-
-
www.ifs.org.uk www.ifs.org.uk
-
Andrew, A., Cattan, S., Dias, M. C., Farquharson, C., Kraftman, L., Krutikova, S., Phimister, A., & Sevilla, A. (2020, May 18). Learning during the lockdown: Real-time data on children’s experiences during home learning. https://doi.org/10.1920/BN.IFS.2020.BN0288
-
- May 2020
-
psyarxiv.com psyarxiv.com
-
Shaw, H., Ellis, D. A., Geyer, K., Davidson, B. I., Ziegler, F. V., & Smith, A. (2020, May 29). Subjective reports overstate the relationship between screen time and mental health. Retrieved from psyarxiv.com/mpxra
-
-
www.psychologicalscience.org www.psychologicalscience.org
-
Social Scientists Scramble to Study Pandemic, In Real Time. (n.d.). Association for Psychological Science - APS. Retrieved April 20, 2020, from https://www.psychologicalscience.org/news/social-scientists-scramble-to-study-pandemic-in-real-time.html
-
-
psyarxiv.com psyarxiv.com
-
Golino, H., Christensen, A. P., Moulder, R. G., Kim, S., & Boker, S. M. (2020, April 14). Modeling latent topics in social media using Dynamic Exploratory Graph Analysis: The case of the right-wing and left-wing trolls in the 2016 US elections. https://doi.org/10.31234/osf.io/tfs7c
-
-
arxiv.org arxiv.org
-
Alshaabi, T., et al. (2020 March 27). How the world's collective attention is being paid to a pandemic: COVID-19 related 1-gram time series for 24 languages on Twitter. Cornell University. arXiv:2003.12614
-
-
www.erinbromage.com www.erinbromage.com
-
Bromage, E. (2020, May 6). The Risks—Know Them—Avoid Them. Erin Bromage PhD: https://www.erinbromage.com/post/the-risks-know-them-avoid-them
-
-
kellysutton.com kellysutton.com
-
This policy allows the test suite to stay green while letting individual teams decide when they would like to put in the effort to write more deterministic tests. They may choose to do so right away, or delay until they work on the feature again.
-
there’s 3 steps to building software: Make it work Make it right Make it fast
Tags
- software development
- do it right/well the first time because it may be too hard to clean up/fix later if you don't
- intermittent test failures (flaky tests)
- is it worth the effort?
- quotable
- deferring until a more opportune/convenient time
- making things easy/maintainable for future developers
- good policy/practice/procedure
Annotators
URL
-
-
arxiv.org arxiv.org
-
Katz, D. M., Coupette, C., Beckedorf, J., & Hartung, D. (2020). Complex Societies and the Growth of the Law. ArXiv:2005.07646 [Physics]. http://arxiv.org/abs/2005.07646
-