- Nov 2024
-
- Aug 2023
-
evilmartians.com evilmartians.com
-
TL;DR For classic Rails apps we have a built-in scope for preloading attachments (e.g. User.with_attached_avatar) or can generate the scope ourselves knowing the way Active Storage names internal associations.GraphQL makes preloading data a little bit trickier—we don’t know beforehand which data is needed by the client and cannot just add with_attached_<smth> to every Active Record collection (‘cause that would add an additional overhead when we don’t need this data).That’s why classic preloading approaches (includes, eager_load, etc.) are not very helpful for building GraphQL APIs. Instead, most of the applications use the batch loading technique.
-
-
engineering.universe.com engineering.universe.com
- May 2022
-
www.ncbi.nlm.nih.gov www.ncbi.nlm.nih.gov
-
Pathogenic germline variants in DICER1 underlie an autosomal dominant, pleiotropic tumor-predisposition disorder.
gene name: DICER 1 PMID (PubMed ID): 33570641 HGNCID: n/a Inheritance Pattern: autosomal dominant Disease Entity: benign and malignant tumor mutation Mutation: somatic Zygosity: heterozygous Variant: n/a Family Information: n/a Case: people of all sexes, ages, ethnicities and races participated CasePresentingHPOs: individuals with DICER1-associated tumors or pathogenic germline DICER1 variants were recruited to participate CasePreviousTesting: n/a gnomAD: n/a
-
- Mar 2022
-
-
nicholas lerman is a sample of one 01:09:54 and if the zerocarton is a tool for thinking there are all these other thinkers out there who are thinking um and do we know how they're thinking how their 01:10:07 how you know what note systems are they using i'd like to i'd like to be able to place lerman yeah amongst all these others and and sort of in the zerocast and 01:10:23 see what others are doing as well and yeah i mean if there was one project i would have loved to do is going around 01:10:36 asking everyone i whose work i admire how do you do it how do you do it exactly what do you do in the morning how do you sit down how do you digest the books you're reading 01:10:48 um i was obsessed with the idea and it's just because i'm too shy to follow up on that
Some discussion of doing research on zettelkasten methods and workflows.
What do note taking methods and processes look like for individual people?
What questions would one ask for this sort of research in an interview setting (compared to how one would look at extant physical examples in document-based research)? #openquestions
Link this to the work of Earle Havens on commonplace books through portions of history.
-
- Jun 2021
-
docs.gitlab.com docs.gitlab.com
-
As an example you might create 5 issues in between counts, which would cause the query count to increase by 5 if an N+1 problem exists.
-
QueryRecorder is a tool for detecting the N+1 queries problem from tests.
-