- Last 7 days
-
github.com github.com
-
Mentioned here:
but I can't find it on my system
-
-
bugzilla.samba.org bugzilla.samba.org
-
I should note that the issue with deletions being skipped has been fixed (the file-has-vanished errors were changed into warnings).
-
-
www.freetaxusa.com www.freetaxusa.com
-
Already Signed InThis session has ended because the account has been signed into from another browser window on 04/11/2021 04:30:09 PM. This happens when you sign in to your account on more than one browser screen. You can't be signed into your account on two or more browser windows at the same time. Just close your browser and sign back into your account.
-
- Mar 2021
-
academic.oup.com academic.oup.com
-
IFN signalling
Another study was unable to find a correlation between severe COVID-19 and polymorphisms that result in loss-of-function in type-1 IFN signalling (TLR3- and IRF7-dependent) https://doi.org/10.1101/2020.12.18.20248226
-
- Feb 2021
-
twitter.com twitter.com
-
Health Nerd. (2021, February 1). The story continues—After @ikashnitsky and I pointed out that this paper was mathematically impossible, and had numerous errors, it was partially corrected Now, the lead author is calling us ‘trolls’ [Tweet]. @GidMK. https://twitter.com/GidMK/status/1356085063998267398
-
-
github.com github.com
-
Since we're not passing any inputs to ListAccounts, it makes sense to use .run! instead of .run. If it failed, that would mean we probably messed up writing the interaction.
-
ActiveInteraction also supports merging errors. This is useful if you want to delegate validation to some other object. For example, if you have an interaction that updates a record, you might want that record to validate itself. By using the #merge! helper on errors, you can do exactly that.
-
ActiveInteraction provides detailed errors for easier introspection and testing of errors. Detailed errors improve on regular errors by adding a symbol that represents the type of error that has occurred.
-
Inside #execute, we merge errors. This is a convenient way to move errors from one object to another.
-
-
trailblazer.to trailblazer.to
-
WE ARE CURRENTLY WORKING ON A UNIFIED API FOR ERRORS (FOR DRY AND REFORM).
-
-
github.com github.com
-
As a workaround, I guess I'll have to disable my strict CSP in development, but I'd prefer to keep it strict in development as well so that I ran into any CSP issues sooner...
-
-
-
certainly I wouldn't want it to start telling me that I'm not catching these!
-
-
github.com github.com
-
I have a Post object that has_one :schedule with accepts_nested_attributes_for :schedule as well. The latter method sets autosave: true, which unfortunately has the effect of hoisting up errors into the parent object so that the errors object on Post looks like this: (byebug) post.errors.details {:"schedule.publish_at"=>[{:error=>:blank}]}
-
-
qz.com qz.com
-
There is no worse way to screw up data than to let a single human type it in.
Tags
Annotators
URL
-
-
en.wikipedia.org en.wikipedia.org
-
en.wikipedia.org en.wikipedia.org
- Jan 2021
-
github.com github.com
-
You should default to the most permissive option imo and there really is no reason to check anything until you really need to If it were left to me I'd just use optional chaining, as it also eliminates the need for no-ops
(lazy checking)
-
- Dec 2020
-
www.npmjs.com www.npmjs.com
-
Get told in big red letters when the dependency changed and you need to check that your fix is still valid.
-
- Nov 2020
-
blog.timwheeler.io blog.timwheeler.io
Tags
Annotators
URL
-
- Oct 2020
-
stackoverflow.com stackoverflow.com
-
You can determine which openssl.cnf is being used by adding a spurious XXX to the file and see if openssl chokes.
-
-
jhooq.com jhooq.com
-
github.com github.com
-
Certs have been working well with docker cli to remote docker server.
-
-
-
github.com github.com
-
To be clear: this setup works great with just docker daemon, but something about -compose is amiss.
-
Using the docker client I have good success accessing the remote docker server. We call the remote server up to a hundred thousand times a day with good success. Attempting to use docker-compose, installed either via curl OR pip install --upgrade with python 2.7, we get an SSL error:
-
-
github.com github.com
-
docker --tlsverify ps executes just fine, while docker-compose --tlsverify up -d --force-recreate gives me an error: SSL error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed
-
I only have one set of certs. And I can't see how they can be different because docker commands work using the endpoint. It's just the docker-compose command that fails
-
-
stackoverflow.com stackoverflow.com
-
you'll run into the error you've run into if your remote Docker host has a certificate signed by something other than the ca.pem that you've got at that location.
-
-
stackoverflow.com stackoverflow.com
-
This is for a time picker. If you're picking times for today, you may pick a time that is 15 minutes from now. It's valid now because it's currently in the future. If you don't touch the form for the next 20 minutes then click submit, the submission should be prevented because your selected time is now 5 minutes in the past.
-
-
github.com github.com
-
`Module ${a.id} may be unable to evaluate without ${b.id}, but is included first due to a cyclical dependency. Consider swapping the import statements in ${parent} to ensure correct ordering`
-
-
github.com github.com
-
However, IMO, having the conditional in the detach function is necessary, because there are other manifestations of this error. For example, if the DOM element in a component is removed from software outside of svelte, detach will have the same error.
-
IMO, the conditional needs to be added to detach to fix all manifestations of this error.
-
- Sep 2020
-
github.com github.com
-
Since this issue seems to pop up periodically, it would be useful to turn this into a warning. It may not be elegant, but it prevents surprise blank screens due to a navigation error.
Not an actual fix.
-
-
stackoverflow.com stackoverflow.com
-
It is showed as an error, but it is a warning as it doesn't break anything. I hate having warning/error in my console not coming from me. It is not justified as it's not bad practice imho
-
-
github.com github.com
-
The node-resolve plugin doesn't like failing to resolve module IDs (because it usually indicates a bug, like you forgot to install the package in question), so it will throw an error rather than letting Rollup print a warning.
-
-
github.com github.com
-
using modulesOnly behaves exactly as expected when it warns you that the listed npm libraries do not use the ES6 format and are in fact ignored. This option is meant as a way to determine if you still have commonjs libraries in your dependencies that require special treatment via rollup-plugin-commonjs. Your code will probably not work since the listed dependencies will be missing. You should remove modulesOnly and instead add rollup-plugin-commonjs.
-
-
engineering.mixmax.com engineering.mixmax.com
-
You oftentimes see packages list react as a peer dependency. Since this prevents react from being installed into that package's node_modules, this is another way of preventing Rollup from bundling the module. This is also nice _if_ you want the application to install react from npm, because if an application forgets to install a peer dependency, npm will issue a warning.
-
-
github.com github.com
-
When the message say function was called outside component initialization first will look at my code and last at my configuration.
-
-
github.com github.com
-
i feel it should get a runtime warning / error, if it returns something besides function or undefined.
-
-
-
type: "javascript/auto
-
- Aug 2020
-
www.robinsloan.com www.robinsloan.com
-
First, what would it look like for a social media platform to re-establish perspective?
This was the exact design question I asked recently!
-
Browsing Twitter the other day, I once again found myself sucked into a far-off event that truly does not matter, and it occurred to me that social media is an orthographic camera.
How does this relate to Nicholas Carr's article and ideas about category errors in From context collapse to content collapse?
-
-
en.wikipedia.org en.wikipedia.org
-
A category mistake, or category error, or categorical mistake, or mistake of category, is a semantic or ontological error in which things belonging to a particular category are presented as if they belong to a different category,[1] or, alternatively, a property is ascribed to a thing that could not possibly have that property.
-
-
www.roughtype.com www.roughtype.com
-
A fascinating viewpoint on social media, journalism, and information. There are some great implied questions for web designers hiding in here.
-
In discussing the appeal of the News Feed in that same interview with Kirkpatrick, Zuckerberg observed, “A squirrel dying in front of your house may be more relevant to your interests right now than people dying in Africa.” The statement is grotesque not because it’s false — it’s completely true — but because it’s a category error. It yokes together in an obscene comparison two events of radically different scale and import. And yet, in his tone-deaf way, Zuckerberg managed to express the reality of content collapse. When it comes to information, social media renders category errors obsolete.
How can we minimize this sort of bias? How can we help to increase the importance of truly important things?
-
- Jul 2020
-
api.rubyonrails.org api.rubyonrails.org
-
Note that the usec for the time passed will be set to 0 to prevent rounding errors with external services, like MySQL (which will round instead of floor, leading to off-by-one-second errors).
-
-
www.nytimes.com www.nytimes.com
-
Eisen, M. B., & Tibshirani, R. (2020, July 20). Opinion | How to Identify Flawed Research Before It Becomes Dangerous. The New York Times. https://www.nytimes.com/2020/07/20/opinion/coronavirus-preprints.html
-
- May 2020
-
www.typescriptlang.org www.typescriptlang.org
-
TypeScript will see that the a property of A & B is incompatible with that of C: Type 'A & B' is not assignable to type 'C'. Types of property 'a' are incompatible. Type 'number' is not assignable to type 'boolean | undefined'.
-
- Jan 2020
-
- Oct 2019
-
stackoverflow.com stackoverflow.com
-
P can't be assigned {}, since the Generic Type P can be a more defined (or restricted) type.
-
-
github.com github.com
-
The value 10 is assignable to the constraint of T, but it is not assignable to this particular instantiation of T. If there was no error I would passing 10 where 3 is expected!
-
- Aug 2019
- Apr 2019
-
hypothes.is hypothes.is
-
Our culture is defined by the music we listen to, and the way it is portrayed in the media. Every culture around the world has a different style of song or dance that represents their traditions. Culture can not only be changed through popular songs, but is best represented through music. One of the best ways to understand a foreign culture is by listening to the music that is favorable among the people whose culture you are trying to understand. Music is one of the most powerful forms of art between cultures.
Music has the power to redefine cultures. We can see this through generational differences between song preferences. For example, American country music back in the late 1900s has a much different feel and style compared to country music now in 2019. While keeping within the same genre, this style of music touches upon different subjects, and uses different instruments, sounds and lyrics. Even early hip-hop has evolved from its beginnings. Hip-hop music is considered the most popular music as of right now, but it has not always been that way. Each generation favors different types of genres of music, and it is clear which backgrounds over the years have favored certain genres of music. As much as music can differentiate cultures, and generations, music can bring people of completely different background together by its artistic flavor and general popularity throughout the mainstream media.
-
- May 2017
-
edspace.american.edu edspace.american.edu
-
tes
Apostrophe
-
-
edspace.american.edu edspace.american.edu
-
weeks
Apostrophe.`
-
- Apr 2017
-
edspace.american.edu edspace.american.edu
-
In looking at the meaning of the term “suburbia,” the definitions
Dangling Modifier
-
- Mar 2017
-
edspace.american.edu edspace.american.edu
-
has argued journalism is
SV AGR
-
-
edspace.american.edu edspace.american.edu
-
Bois’
's
-
- Jan 2017
-
-
sudo apt-get install libxml2-dev libxslt-dev python-dev lib32z1-dev
-
- Sep 2016
-
www.theguardian.com www.theguardian.com
-
Shakespeare followed in 1594, in The Comedy of Errors: “There’s not a man I meet but doth salute me/As if I were their well-acquainted friend”
Shakespeare uses they for singular in comedy of errors.
-
- Aug 2016
-
tidalcycles.org tidalcycles.org
-
1. Install the TidalCycles pattern engine
For Windows users: if you get errors during this process it is likely because you tried to execute cabal install tidal from the standard Windows command line. Some of the tools in the Linux toolchain are required. Download and install MingW64 or git for Windows which comes with a bash-like shell that should have everything you need built in! Enjoy!
-