- Nov 2020
-
github.com github.com
-
I would like the compiler to add a property like canIgnore: false to the warning, if the warning cannot be disabled.
-
-
-
In principle, this information is already available through other means, but it is actually a fair amount of work to gather it in this form, and I think it could be useful to open it up to programmatic consumption.
-
- Oct 2020
-
groups-in-graphs.corinna-vehlow.com groups-in-graphs.corinna-vehlow.com
-
codesandbox.io codesandbox.io
-
Meat:
validate={values => formValidation.validateForm(values)}
-
-
www.basefactor.com www.basefactor.com
-
Focus on your application: forget about forms details like I'm dirty, field touched...
-
Form Validation
-
return { type: "COUNTRY_BLACK_LIST", succeeded, message: succeeded ? "" : "This country is not available" }
-
It is easily extensible (already implemented Final Form and Formik plugin extensions).
-
You can try to build a solution to tackle these issues on your own, but it will cost you time and money... why not use a battle-tested solution to handle all this complexity?
-
If you want to implement a form with a superb User Experience, you have to take care of many variables:
-
Form validation can get complex (synchronous validations, asynchronous validations, record validations, field validations, internationalization, schemas definitions...). To cope with these challenges we will leverage this into Fonk and Fonk Final Form adaptor for a React Final Form seamless integration.
-
Managing Form State (holding field information, check if a control has been touched, if the user has clicked the submit button, who owns the current focus...) can be tedious and prone to errors. We can get help from React Final Form to handle these challenges for us.
Tags
- form design
- final-form
- tedious
- user experience
- easy to get wrong
- form validation
- adapter
- extensibility
- nice API
- interoperability
- can't keep entire system in your mind at once (software development) (scope too large)
- don't write your own
- a lot of things to consider
- reinventing the wheel / not invented here
- Formik
- integration
- too hard/difficult/much work to expect end-developers to write from scratch (need library to do it for them)
- complexity
- difficult/hard problem
- react-final-form
- fonk (form validation library)
- form validation library
Annotators
URL
-
-
lemoncode.github.io lemoncode.github.ioFonk1
-
Fonk is framework extension, and can be easily plugged into many libraries / frameworks, in this documentation you will find integrations with:
-
-
final-form.org final-form.org
-
Vue Final Form A form state management system for Vue that uses Final Form under the hood.
-
-
-
But it sounds like the library could use some way to setTouched()
-
-
www.infodocket.com www.infodocket.com
-
unidad_COVID2019,biblioteca,favorito
-
-
github.com github.com
-
-
I'm suggesting there should be a way to write lifecycle related code that also responds to changing props, like how useEffect works. I think how React handles this could be a good source of inspiration.
-
Svelte right now has a lot of opportunities to have component state become out of sync with props.
-
I'm suggesting this is a problem generally. Users will not think of being out of sync with props
-
Svelte doesn't re-render, so you need to respond to component mount/dismount and prop changes separately as they are distinct concepts and never tied together, unlike in React.
Tags
- Dylan Vann
- different way of thinking about something
- copying ideas from another project
- distinction
- copying/doing the same as how another project/library did it
- easy to get wrong
- trying to doing things the same way you did in a different library/framework (learning new way of thinking about something / overcoming habits/patterns/paradigms you are accustomed to)
- I have this problem
- general problem
- Svelte
- UI library: reacting to prop changes
- lifecycle callbacks
- feature proposal
- issues I'm watching
- easy to forget
- useEffect
- can we do even better?
- a problem worth solving properly
- use as inspiration
- learning from others
- inspiration
- learning by studying/emulating/copying others who do it well
- excellent writing
Annotators
URL
-
-
github.com github.com
-
If something isn't a great idea, the tools should support that approach
should => shouldn't
-
-
final-form.org final-form.org
-
Wondering how to get field state from multiple fields at once? People coming from Redux-Form might be wondering where the equivalent of Redux Form's Fields component is, as a way to get state from several fields at once. The answer is that it's not included in the library because it's so easy to write one recursively composing Field components together.
-
-
formvalidation.io formvalidation.io
-
Add new plugin Recaptcha3Token that sends the reCaptcha v3 token to the back-end when the form is valid
-
-
github.com github.com
-
stackoverflow.com stackoverflow.com
-
that a better and cleaner approach would be to use computed properties and a validation library that is decoupled for the UI (like hapi/joi).
-
-
demo.mobiscroll.com demo.mobiscroll.com
-
-
If the react cargo cult didn't have the JSX cowpath paved for them and acclimated to describing their app interface with vanilla javascript, they'd cargo cult around that. It's really about the path of least resistance and familiarity.
-
hyperscript is a perfectly good alternative and uses the same interface as matt esch's virtual-dom
Tags
- UI library
- same/compatible API
- doing something without knowing why/how it works
- UI library: syntax
- virtual-dom (library)
- hyperscript
- it's just _
- hypothetical/alternate history
- paving cow paths
- familiarity
- path of least resistance
- cargo cult
- JavaScript
- due to historical reasons
- familiar syntax
- it's just plain JavaScript
Annotators
URL
-
-
github.com github.com
-
A JavaScript DOM model supporting element creation, diff computation and patch operations for efficient re-rendering
-
virtual-dom exposes a set of objects designed for representing DOM nodes. A "Document Object Model Model" might seem like a strange term, but it is exactly that. It's a native JavaScript tree structure that represents a native DOM node tree.
-
virtual-dom is a collection of modules designed to provide a declarative way of representing the DOM for your app. So instead of updating the DOM when your application state changes, you simply create a virtual tree or VTree, which looks like the DOM state that you want. virtual-dom will then figure out how to make the DOM look like this efficiently without recreating all of the DOM nodes.
-
-
github.com github.com
-
The problem is that not all tooling supports adding new dependencies from a transform. The first step is figuring out how this can be done idiomatically in the current ecosystem.
-
-
-
I recommend folks use https://github.com/shama/bel instead of this package; we've been working hard on it for the past two years to make sure it has all the features you could want to write inline HTML. Hope it's good; closing for now!
-
-
github.com github.com
Tags
Annotators
URL
-
-
github.com github.com
-
interfaces
-
-
-
github.com github.com
Tags
Annotators
URL
-
-
github.com github.com
Tags
Annotators
URL
-
-
github.com github.com
-
unified is an interface for processing text using syntax trees.
-
It’s what powers remark (Markdown), retext (natural language), and rehype (HTML), and allows for processing between formats.
-
-
github.com github.com
Tags
Annotators
URL
-
-
-
it also allows for more divergence in how people write there code and where they put their logic, making different svelte codebases potentially even more different due to fewer constraints. This last point is actually something I really value, I read a lot of Svelte code by a lot of different people and broadly speaking things look the same and are in the same places.
Tags
- strong conventions resulting in code from different code bases/developers looking very similar
- consistency
- uniformity
- programming: multiple ways to do the same thing
- idiomatic pattern (in library/framework)
- idiomatic code style (programming languages)
- software development: code organization: where does this code belong?
- convention
Annotators
URL
-
-
dylanvann.com dylanvann.com
-
Our custom useEffect is not idiomatic Svelte.
-
To fix our Svelte version you might think we could use beforeUpdate or afterUpdate, but these lifecycle functions are related to the DOM being updated, not to prop updates. We only want to rerun our fetching when the album prop is changed.
-
Beautiful, except that switching albums does not update the PhotoGrid. This is not the automatic reactivity we were promised by Svelte.
Tags
- Svelte for someone coming from React
- not delivering on promise
- easy to confuse (mix up)
- not
- confusing for newcomers
- easy to get wrong
- idiomatic pattern (in library/framework)
- false assumptions
- failed to deliver on expectations
- lifecycle callbacks
- UI library: reacting to prop changes
- the natural assumption
- surprising
- useEffect
Annotators
URL
-
-
letconst.com letconst.com
Tags
Annotators
URL
-
-
recoiljs.org recoiljs.org
-
We want to improve this while keeping both the API and the semantics and behavior as Reactish as possible.
-
-
-
github.com github.com
-
Recoil
-
It provides several capabilities that are difficult to achieve with React alone, while being compatible with the newest features of React.
-
-
medium.com medium.com
-
Sometimes, you may be tempted to write that wrapper. Because all your (React or Vue or insert your reactive framework here) instincts tell you so.Resist the temptation. There is a better way. A svelter way. Introducing: the use-directive (a.k.a. “actions”).
-
However, especially when starting out, it’s very easy to fall into the “this is how I did things in my previous framework” trap.
Tags
- different way of thinking about something
- trying to doing things the same way you did in a different library/framework (learning new way of thinking about something / overcoming habits/patterns/paradigms you are accustomed to)
- Svelte: action (use:)
- getting a fresh perspective
- paradigm shift
- Svelte
- overcoming preconceived opinions
Annotators
URL
-
-
github.com github.com
-
While you could use a map function for loops they aren't optimized.
-
Solid supports spread operator on native elements and Components.
-
In general it is recommended you handle forms in this "controlled" manner. In some cases it might make sense to manage the form state outside of Solid via refs. These "uncontrolled" forms can also work. Just be conscious of the difference as mixing approaches can lead to unexpected results.
-
-
levelup.gitconnected.com levelup.gitconnected.com
-
This is just a library not a Framework.
-
-
github.com github.com
Tags
Annotators
URL
-
-
-
Wait what? No runtime. How does that work? Well, obviously JavaScript executes at runtime, so was he saying he doesn't reuse any code? Well as it turns out the message here has changed. I looked and sure enough there was a runtime. Of course there was.
-
-
-
A library is a set of functions you can use in your project. It does not care how and where you use that functionality. A framework tells you how to write code with the framework you are working with so you can make the best use of patterns, architecture, and functions in a framework. A framework can encompass a library.
-
-
github.com github.com
-
this is a common Svelte idiom for manually invalidating something that might have been mutated without there being a visible = sign somewhere
-
-
final-form.org final-form.org
-
both copied much of their API from Redux Form, so, despite working very differently under the hood, there is a lot of overlap in their APIs.
-
- Sep 2020
-
devblogs.microsoft.com devblogs.microsoft.com
-
If you’ve used Flow before, the syntax is fairly similar. One difference is that we’ve added a few restrictions to avoid code that might appear ambiguous.
-
-
-
but would it be reasonable to expect svelte-select to handle that so that consumers of this lib don't have to do all that?
-
-
engineering.mixmax.com engineering.mixmax.com
-
Rollup builds atop Browserify and Webpack's lineage to make it possible to easily consume those packages, while looking to the future of JS modules.
-
When you publish this module, you do not want to bundle React, for the reasons described above. (It would be even worse to bundle React in a library, because then its copy would duplicate that loaded by the application!) But the fix is slightly different for a library than an application. In this library's Rollup configuration, we only want to specify external, not globals:
-
-
jimmyutterstrom.com jimmyutterstrom.com
-
As you've probably already figured out it's the last output definition that should be by legacy apps. With the above output configuration we allow consuming the component both from a modern app with a Node.js-based environment and from legacy apps.
-
-
medium.com medium.com
-
But library users are more numerous, and so their needs are more important.
-
small modules allow library authors to become lazy. Why include that six-line helper function when you can do a one-line `require`?
-
These are all things that make your life as a library author easier.
-
I think I know why: it’s because the small modules philosophy favours library authors (like Sindre) at the ultimate expense of library users.
-
-
github.com github.com
-
I don't understand why it just launches the mutation once and then it throws the error Function called outside component initialization, the only way to make it work is to do something like $: result = mutation(...) but it doesn't make sense, I don't want to run the mutation after each keystroke.
-
We’re still working on idiomatic Svelte APIs so this one’s also on our list to figure out what the best way forward is
-
For context, the previous API had a lazy promise. Currently I’m thinking we could just return a closure like in the React API
-
-
stackoverflow.com stackoverflow.com
-
This is the same as useEffect in React, incidentally — the function must be synchronous in order to avoid race conditions.
-
-
github.com github.com
-
urql/packages/svelte-urql/ Go to file Add file Go to file Create new file Upload files urql/packages/svelte-urql/
-
-
-
I assume that soon developers will publish more components for svelte, and any possible class conflict is problematic. Yeah, it's rare case, but it is.
-
-
-
There are work arounds, but nothing clean. I just feel like this should be functionality that should be part of the slot feature.
-
-
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.
-
The main rationale for this PR is that, in my hones opinion, Svelte needs a way to support style overrides in an intuitive and close to plain HTML/CSS way. What I regard as intuitive is: Looking at how customizing of styles is being done when applying a typical CSS component framework, and making that possible with Svelte.
-
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.
-
The RFC is more appropriate because it does not allow a parent to abritrarily control anything below it, that responsibility still relies on the component itself. Just because people have been passing classes round and overriding child styles for years doesn't mean it is a good choice and isn't something we wnat to encourage.
Tags
- copying/doing the same as how another project/library did it
- explicit interfaces
- maintenance burden
- control (programming)
- Svelte: how to affect child component styles
- limiting how much library consumers/users can control/override
- being explicit
- customizable
- which component/tool/organization/etc. is responsible for this concern?
- ugly/kludgey
- reinventing the wheel / not invented here
- 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
- Svelte: components are their own boss (encapsulation)
- component/library author can't consider/know ahead of time all of the ways users may want to use it
- workarounds
- principle of least surprise
- 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)
- whose responsibility is it?
- intuitive
- forking to add a desired missing feature/change
- programming: who is responsible for this concern?
- maintenance burden to explicitly define/enumerate/hard-code possible options (explicit interface)
- burden
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
- reusability
- run-time dynamicness/generics vs. having to explicitly list/hard-code all options ahead of time
- component/library author can't consider/know ahead of time all of the ways users may want to use it
- Svelte: action (use:)
- flexibility
- extensibility
- pass-through arguments/props/options
- why this feature is needed
Annotators
URL
-
-
github.com github.com
-
Does it look like a decorator plugin in Ractive, right
-
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.
-
I totally get not wanting to extend the syntax. I tried doing these things and in practice it was not easy or pretty. Actions provide a much cleaner and easier way to accomplish a certain set of functionality that would be much more difficult without it.
-
Actions add additional functionality to elements within your component's template that may be difficult to add with other mechanisms. Examples of functionality which actions makes trivial to attach are:
Tags
- plugins
- run-time dynamicness/generics vs. having to explicitly list/hard-code all options ahead of time
- decorator
- could be easier / more difficult than it needs to be
- copying/doing the same as how another project/library did it
- clean
- library/framework could make this easier
- component/library author can't consider/know ahead of time all of the ways users may want to use it
- analogue
- inextensible
- extensibility
- just use/do...
- comparison
- clean solution
Annotators
URL
-
-
-
If this was tied into Svelte's flow with hooks this would not be necessary since it would know when it was being removed from the DOM.
-
You must: reference each element you are extending using refs or an id add code in your oncreate and ondestroy for each element you are extending, which could become quite a lot if you have a lot of elements needing extension (anchors, form inputs, etc.)
Tags
- could be easier / more difficult than it needs to be
- library/framework could make this easier
- too hard/difficult/much work to expect end-developers to write from scratch (need library to do it for them)
- scalability
- difficult/hard
- framework taking care of responsibility so users can leverage it and not have to worry about that responsibility themselves
- why this feature is needed
Annotators
URL
-
-
github.com github.com
-
The more I think about this, the more I think that maybe React already has the right solution to this particular issue, and we're tying ourselves in knots trying to avoid unnecessary re-rendering. Basically, this JSX... <Foo {...a} b={1} {...c} d={2}/> ...translates to this JS: React.createElement(Foo, _extends({}, a, { b: 1 }, c, { d: 2 })); If we did the same thing (i.e. bail out of the optimisation allowed by knowing the attribute names ahead of time), our lives would get a lot simpler, and the performance characteristics would be pretty similar in all but somewhat contrived scenarios, I think. (It'll still be faster than React, anyway!)
-
-
github.com github.com
-
github.com github.com
-
For reference: an independent implementation
-
-
c0bra.github.io c0bra.github.ioSvelma1
-
github.com github.com
-
illright.github.io illright.github.io
-
americanlibrariesmagazine.org americanlibrariesmagazine.org
-
unidad_COVID2019,prioridad1
-
-
marcin-piela.github.io marcin-piela.github.io
-
Extend ActionConfig interface in rfc-extended.d.ts file with new params: import * as RFC from 'react-fetching-library'; declare module 'react-fetching-library' { export interface ActionConfig { // Only new params skipAuth: boolean; params: any; }; }
-
- Aug 2020
-
pragmaticpineapple.com pragmaticpineapple.com
-
Knowing all this, what would you do? Which path would you choose and why? The answer might seem obvious now that you come from the future - React
-
-
mui-treasury.com mui-treasury.com
Tags
Annotators
URL
-
- Jul 2020
-
amp.dev amp.dev
-
If you can, use AMP like any other JavaScript library to build your site and forget about the canonical linking. Using AMP to build a whole website dramatically reduces your maintenance burden.
-
- Jun 2020
-
www.nature.com www.nature.com
-
Palayew, A., Norgaard, O., Safreed-Harmon, K. et al. Pandemic publishing poses a new COVID-19 challenge. Nat Hum Behav (2020). https://doi.org/10.1038/s41562-020-0911-0
-
-
github.com github.com
-
www.loc.gov www.loc.gov
-
A Bibliography
-
-
www.nature.com www.nature.com
-
Hiatt, J., Patwardhan, R., Turner, E. et al. Parallel, tag-directed assembly of locally derived short sequence reads. Nat Methods 7, 119–122 (2010). https://doi.org/10.1038/nmeth.1416
-
-
github.com github.com
-
koha-community.org koha-community.org
Tags
Annotators
URL
-
- May 2020
-
www.zotero.org www.zotero.org
-
Zotero | Groups > COVID-19 psych papers. (n.d.). Retrieved April 28, 2020, from https://www.zotero.org/groups/2472136/covid-19_psych_papers
-
-
psyarxiv.com psyarxiv.com
-
Ikeda, K., Yamada, Y., & Takahashi, K. (2020). Post-Publication Peer Review for Real [Preprint]. PsyArXiv. https://doi.org/10.31234/osf.io/sp3j5
-
-
github.com github.com
Tags
Annotators
URL
-
-
github.com github.com
Tags
Annotators
URL
-
-
github.com github.com
-
support.mozilla.org support.mozilla.org
-
How do I find my bookmarks? To find a page that you've bookmarked, just start typing its name in the address bar. As you type, a list of web pages that you've bookmarked, tagged and visited will appear. Bookmarked pages will have a star next to them. Simply click one of the pages and you'll be taken there instantly. To learn more, see Address bar autocomplete in Firefox - Search your bookmarks, history and tabs.
Tags
Annotators
URL
-
- Apr 2020
-
-
IMSLP stands for International Music Score Library Project and started on February 16, 2006. It is a project for the creation of a virtual library of public domain music scores based on the wiki principle; it is also more than that. Users can exchange musical ideas through the site, submit their own compositions, or listen to other people's composition; this makes IMSLP an ever-growing musical community of music lovers for music lovers.
Tags
Annotators
URL
-
-
www.openmusicarchive.org www.openmusicarchive.org
-
The Open Music Archive aims to gather together information about and recordings of public domain music. This is music whose copyright has expired. This music can be used by anyone for any purpose.
Tags
Annotators
URL
-
-
www.copyright.gov www.copyright.gov
-
How Long Does Copyright Protection Last? How long does a copyright last? The term of copyright for a particular work depends on several factors, including whether it has been published, and, if so, the date of first publication. As a general rule, for works created after January 1, 1978, copyright protection lasts for the life of the author plus an additional 70 years. For an anonymous work, a pseudonymous work, or a work made for hire, the copyright endures for a term of 95 years from the year of its first publication or a term of 120 years from the year of its creation, whichever expires first. For works first published prior to 1978, the term will vary depending on several factors. To determine the length of copyright protection for a particular work, consult chapter 3 of the Copyright Act (title 17 of the United States Code). More information on the term of copyright can be found in Circular 15a, Duration of Copyright, and Circular 1, Copyright Basics. Do I have to renew my copyright? No. Works created on or after January 1, 1978, are not subject to renewal registration. As to works published or registered prior to January 1, 1978, renewal registration is optional after 28 years but does provide certain legal advantages. For information on how to file a renewal application as well as the legal benefit for doing so, see Circular 15, Renewal of Copyright, and Circular 15a, Duration of Copyright.
Tags
Annotators
URL
-
-
librivox.org librivox.orgLibriVox1
-
Autobiography of Andrew Carnegie Andrew CARNEGIE (1835 - 1919) This autobiography of Andrew Carnegie is a very well written and interesting history of one of the most wealthy men in the United states. He was born in Scotland in 1835 and emigrated to America in 1848. Among his many accomplishments and philanthropic works, he was an author, having written, besides this autobiography, Triumphant Democracy (1886; rev. ed. 1893), The Gospel of Wealth, a collection of essays (1900), The Empire of Business (1902), and Problems of To-day (1908)]. Although this autobiography was written in 1919, it was published posthumously in 1920. (Summary by William Tomcho)
-
-
librivox.org librivox.org
-
About LibriVox LibriVox Objective To make all books in the public domain available, for free, in audio format on the internet. Our Fundamental Principles Librivox is a non-commercial, non-profit and ad-free project Librivox donates its recordings to the public domain Librivox is powered by volunteers Librivox maintains a loose and open structure Librivox welcomes all volunteers from across the globe, in all languages
Tags
Annotators
URL
-
-
www.gutenberg.org www.gutenberg.org
-
Project Gutenberg is a library of over 60,000 free eBooks. Choose among free epub and Kindle eBooks, download them or read them online. You will find the world's great literature here, with focus on older works for which U.S. copyright has expired. Thousands of volunteers digitized and diligently proofread the eBooks, for enjoyment and education.
Tags
Annotators
URL
-
-
futurepress.org futurepress.org
-
The future of eBooks is not in the production of digital photocopies you can read by the pool. The future of eBooks lies in re-imagining the book as an open, easily accessible, immersive experience; a connected community of discovery. Scott Abel The Content Wrangler
Tags
Annotators
URL
-
-
github.com github.com
-
github.com github.com
-
blog.1password.com blog.1password.com
-
There are, indeed, at least two projects independent of us, which are developing software that can read 1Password data (once you’ve given them your Master Password.). James Brown (@RogueLazer) has developed some Python libraries which can – given the Master Password – read both the Agile Keychain Format (1Password 2 and 3 for Mac, 1Password for Windows) and the Cloud Keychain Format (1Password 4). Indeed, RogueLazer’s efforts and queries have led to substantial improvements in our documentation.
-
-
github.com github.com
-
github.com github.com
Tags
Annotators
URL
-
-
www.ncbi.nlm.nih.gov www.ncbi.nlm.nih.gov
-
dA-tailing to add an “A” base to the 3′ end of the fragment
-
-
docs.seattlerb.org docs.seattlerb.org
-
minitest doesn't reinvent anything that ruby already provides, like: classes, modules, inheritance, methods. This means you only have to learn ruby to use minitest and all of your regular OO practices like extract-method refactorings still apply.
-
-
github.com github.com
- Mar 2020
-
athenslibrary.org athenslibrary.org
-
guides.library.upenn.edu guides.library.upenn.edu
-
unidad_COVID2019
-
-
guides.library.upenn.edu guides.library.upenn.edu
-
unidad_COVID2019
-
-
www.slsa.sa.gov.au www.slsa.sa.gov.au
-
unidad_COVID2019
-
-
libguides.njstatelib.org libguides.njstatelib.org
-
unidad_COVID2019
-
-
libguides.njstatelib.org libguides.njstatelib.org
-
libguides.njstatelib.org libguides.njstatelib.org
-
unidad_COVID2019
-
-
www.cochrane.org www.cochrane.org
-
unidad_COVID2019
-
-
www.cochranelibrary.com www.cochranelibrary.com
-
unidad_COVID2019
-
-
www.cochranelibrary.com www.cochranelibrary.com
-
unidad_COVID2019
-
-
www.cochranelibrary.com www.cochranelibrary.com
-
unidad_COVID2019
-
-
custodians.online custodians.online
-
Care for the libraries - care for the metadata - care for the backup.
Tags
Annotators
URL
-
-
-
~1.3 billi
the 1.3 billion compounds consist of both Enamine REAL and ZINC
-
-
github.com github.com
Tags
Annotators
URL
-
-
github.com github.com
-
This looks good but https://github.com/jonahb/akismet looks better maintained
-
-
github.com github.com
-
github.com github.com
-
research.auctr.edu research.auctr.edu
-
unidad_COVID2019
-
-
www.albanypubliclibrary.org www.albanypubliclibrary.org
-
www.washington.edu www.washington.edu
-
unidad_COVID2019
-
-
kcls.org kcls.org
-
unidad_COVID2019
-
-
-
unidad_COVID2019
-
-
guides.lib.unc.edu guides.lib.unc.edu
-
unidad_COVID2019,favorito
-
-
www.wiltonlibrary.org www.wiltonlibrary.org
-
unidad_COVID2019
-
-
www.jocolibrary.org www.jocolibrary.org
-
unidad_COVID2019
-
-
www.fvrl.org www.fvrl.org
-
unidad_COVID2019
-
-
www.springfieldlibrary.org www.springfieldlibrary.org
-
unidad_COVID2019
-
-
www.sjpl.org www.sjpl.org
-
unidad_COVID2019
-
-
unric.org unric.org
-
unidad_COVID2019,favorito
-
-
cmlibrary.org cmlibrary.org
-
unidad_COVID2019
-
-
www.osceolalibrary.org www.osceolalibrary.org
-
unidad_COVID2019
-
-
greenburghlibrary.org greenburghlibrary.org
-
unidad_COVID2019
-
-
www.moonlibrary.org www.moonlibrary.org
-
unidad_COVID2019,biblioteca
-
-
www.bpl.org www.bpl.org
-
unidad_COVID2019
-
-
samiz-dat.github.io samiz-dat.github.io
-
www.amazon.com www.amazon.com
Tags
Annotators
URL
-
- Feb 2020
-
github.com github.com
-
github.com github.com
Tags
Annotators
URL
-
-
github.com github.com
-
-
If you like the straight forward and effective nature of Strong Parameters
-
-
github.com github.com
Tags
Annotators
URL
-
- Jan 2020
-
-
A good library is filled with mostly unread books. That’s the point.
-
Some questions are only asked by people with a fundamental misunderstanding. The friends who walk into my office and ask, “have you read all of these” miss the point of books.
-
a private library is not an ego-boosting appendages but a research tool. The library should contain as much of what you do not know as your financial means … allow you to put there. You will accumulate more knowledge and more books as you grow older, and the growing number of unread books on the shelves will look at you menacingly. Indeed, the more you know, the larger the rows of unread books. Let us call this collection of unread books an antilibrary.
-
The antidote to this overconfidence boils down to our relationship with knowledge. The anti-scholar, as Taleb refers to it, is “someone who focuses on the unread books, and makes an attempt not to treat his knowledge as a treasure, or even a possession, or even a self-esteem enhancement device — a skeptical empiricist.
-
- Dec 2019
-
github.com github.com
Tags
Annotators
URL
-
-
github.com github.com
Tags
Annotators
URL
-
-
www.loc.gov www.loc.gov
-
Johnson / In the Loop SA History
Tags
Annotators
URL
-
-
blog.logrocket.com blog.logrocket.com
-
By default, fetch() doesn’t provide a way to intercept requests, but it’s not hard to come up with a workaround. You can overwrite the global fetch method and define your own interceptor, like this
-
-
blog.logrocket.com blog.logrocket.com
-
If you are using a JavaScript library, chances are it comes with a client HTTP API. jQuery’s $.ajax() function, for example, has been particularly popular with frontend developers. But as developers move away from such libraries in favor of native APIs, dedicated HTTP clients have emerged to fill the gap.
-
-
github.com github.com
-
ΛLIΛ
-