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.
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.
I took the same approach with _layout.svelte and not just for the svelte-apollo client. Except I put all of that setup into another module (setup.js) and imported from _layout. I just couldn't stomach having all that code actually in my _layout file. It's for layout, supposedly, but it's the only component that is a parent to the whole app.
“should I use the private keyword, or ECMAScript’s hash/pound (#) private fields?”
for example, reactive declarations essentially do the work of React's useMemo, useCallback and useEffect without the boilerplate (or indeed the garbage collection overhead of creating inline functions and arrays on each state change).
You know those useMemo and useCallback hooks? Well, Svelte has something like this. If you declare a variable like this: $: double = counter * 2;, Svelte will recalculate it only if counter changes.
Insisting on a specific implementation, rather than proposing a clear problem, suggesting a possible solution, and “not being married” to your initial preferred solution.
In my opinion, because Webpack was one of the first bundlers, is heavily packed with features, and has to support swathes of legacy code and legacy module systems, it can make configuring Webpack cumbersome and challenging to use. Over the years, I’ve written package managers, compilers, and bundlers, and I still find configuring Webpack to be messy and unintuitive.
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.
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.
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.
This is likely not desired for ES module dependencies: Here require should usually return the namespace to be compatible with how bundled modules are handled. If you set esmExternals to true, this plugins assumes that all external dependencies are ES modules and will adhere to the requireReturnsDefault option. If that option is not set, they will be rendered as namespace imports.
possibly making it harder for them to appreciate how severe the discoverability issues are for the rest of us.
I offer an additional explanation: that we in the JavaScript world have a higher tolerance for nonsense and dreck.
DX: start sapper project; configure eslint; eslint say that svelt should be dep; update package.json; build fails with crypt error; try to figure what the hell; google it; come here (if you have luck); revert package.json; add ignore error to eslint; Maybe we should offer better solution for this.
When the message say function was called outside component initialization first will look at my code and last at my configuration.
i feel it should get a runtime warning / error, if it returns something besides function or undefined.
There are work arounds, but nothing clean. I just feel like this should be functionality that should be part of the slot feature.
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.
margin, flex, position, left, right, top, bottom, width, height, align-self, justify-self among other is CSS properties that should never be modified by the child itself. The parent should always have control of those properties, which is the whole reason I'm asking for this.
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.)
I'll work on a preliminary PR (which I expect will need some love from maintainers, sorry!)
The feature is highly likely to be implemented, the API and implementation are the only real topics of discussion right now.
Nic Fildes in London and Javier Espinoza in Brussels April 8 2020 Jump to comments section Print this page Be the first to know about every new Coronavirus story Get instant email alerts When the World Health Organization launched a 2007 initiative to eliminate malaria on Zanzibar, it turned to an unusual source to track the spread of the disease between the island and mainland Africa: mobile phones sold by Tanzania’s telecoms groups including Vodafone, the UK mobile operator.Working together with researchers at Southampton university, Vodafone began compiling sets of location data from mobile phones in the areas where cases of the disease had been recorded. Mapping how populations move between locations has proved invaluable in tracking and responding to epidemics. The Zanzibar project has been replicated by academics across the continent to monitor other deadly diseases, including Ebola in west Africa.“Diseases don’t respect national borders,” says Andy Tatem, an epidemiologist at Southampton who has worked with Vodafone in Africa. “Understanding how diseases and pathogens flow through populations using mobile phone data is vital.”
the best way to track the spread of the pandemic is to use heatmaps built on data of multiple phones which, if overlaid with medical data, can predict how the virus will spread and determine whether government measures are working.
I was now about to form another being of whose dispositions I was alike ignorant; she might become ten thousand times more malignant than her mate and delight, for its own sake, in murder and wretchedness.
No one knows what someone will be like after they've been brought into the world, but we don't lament every single person who is born. When someone you know is having a kid you don't say to them: "remember H.H. Holmes? Are you sure you want to have kid? They might be ten thousand times worse than H.H. Holmes!" Because that would be ridiculous.
When a component reaches such a size that this becomes a problem, the obvious course of action is to refactor it into multiple components. But the refactoring is complex for the same reason: extracting the styles that relate to a particular piece of markup is an error-prone manual process, where the relevant styles may be interleaved with irrelevant ones.
(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.)
Please focus on explaining the motivation so that if this RFC is not accepted, the motivation could be used to develop alternative solutions. In other words, enumerate the constraints you are trying to solve without coupling them too closely to the solution you have in mind.
Further discussion can take place when this has a PR.
That's funny that he mentions a PR being a prerequisite for having further discussion, when elsewhere ( ), someone said that instead of talking about the
So is a specific proposed implementation (how to built it) necessary/useful in order to have a general discussion about a feature proposal? I would say no.
It would also reduce friction for new users, who would no longer have to learn a new syntax for each new framework.
But what all frameworks have in common is to write JS and this could convince users of React but also newcomers that know JS.
GitHub Issues are preferred for discussion of this specification.
Often, allowing the parents to compose elements to be passed into components can offer the flexibility needed to solve this problem. If a component wants to have direct control over every aspect of a component, then it should probably own the markup as well, not just the styles. Svelte's slot API makes this possible. You can still get the benefits of abstracting certain logic, markup, and styles into a component, but, the parent can take responsibility for some of that markup, including the styling, and pass it through. This is possible today.
I’ve seen some version of this conversation happen more times than I can remember. And someone will always say ‘it’s because you’re too used to thinking in the old way, you just need to start thinking in hooks’.
But after seeing a lot of really bad hooks code, I’m starting to think it’s not that simple — that there’s something deeper going on.
Spencer, S. H. (2020, September 1). CDC Did Not “Admit Only 6%” of Recorded Deaths from COVID-19. FactCheck.Org. https://www.factcheck.org/2020/09/cdc-did-not-admit-only-6-of-recorded-deaths-from-covid-19/
Looking forward to the upcoming property management trends, there will be a wider range of opportunities, some big economic and social shifts, and a set of new technological trends upping the future of housing market sales numbers across the world.
Independent Variable Manipulation
Independent variable manipulation is the hallmark of experimental design.
Writing proficiency is an essential learning outcome for undergraduate education as a whole and, specifically, in postsecondary psychology education. The American Psychological Association (APA, 2013) explicitly names effective writing as a goal in its guidelines for psychology majors,
Effective writing is a core principle in education, emphasized by the most noted national psychological associations (APA; American Psychological Association). The following sections outline efforts to streamline the methods used instructor to student feedback for essays in a psychology class.
This will enable Material-UI to stay relevant in the long term.
Yarn also has an RFC process which may offer a better discussion platform compared to this GitHub issue.
Covid-19 has decimated independent U.S. primary care practices—How should policymakers and payers respond? (2020, July 2). The BMJ. https://blogs.bmj.com/bmj/2020/07/02/covid-19-has-decimated-independent-u-s-primary-care-practices-how-should-policymakers-and-payers-respond/
The Trump administration must stop sidelining the CDC. (2020). Nature, 583(7818), 660–660. https://doi.org/10.1038/d41586-020-02231-6
Peter English #FBPE on Twitter. (n.d.). Twitter. Retrieved August 24, 2020, from https://twitter.com/petermbenglish/status/1296730819420196864
Principle #1: Writing is not the outcome of thinking; it is the medium in which thinking takes place
But it's easy to imagine that the caption was incorrect for too long because those who know the language, know where the mistake is, and those who don't, think that it's the correct way to spell it.
those who know the language, know where the mistake is, In other words, they can easily spot the mistake and no better than to repeat it themselves, but either are powerless or too lazy to actually fix it on SE.
and those who don't, think that it's the correct way to spell it. So those who should no better are inadvertently perpetuating the mistake and teaching others that it is an acceptable/correct usage.
As a web designer, I hate that "log in" creates a visual space between the words. If you line up "Log In Register" - is that three links or two? This creates a Gestalt problem, meaning you have to really fiddle with spacing to get the word groupings right, without using pipe characters.
Sure, you can try to solve that problem by using a one-word alternative for any multi-word phrase, but that's not always possible: there isn't always a single word that can be used for every possible phrase you may have.
Adjusting the letter-spacing and margin between items in your list isn't that hard and would be better in the long run since it gives you a scalable, general solution.
"Log in" is the only correct way to spell the verb, and the only way to be consistent with 1000s of other phrasal verbs that are spelled with a space in them.
We don't need nor want an exception to the general rule just for "login" just because so many people have made that mistake.
Course as community onboarding
I like this idea - as when joining a community figuring out the 'rules of engagement' can be hard, and also
For team on-boarding, project on-boarding, etc - it can also guide people towards other courses / resources that may be more ongoing or of other types
Then when giving answers I'm even less certain. For example I see occasional how-to questions which (IMO) are ridiculously complex in bash, awk, sed, etc. but trivial in python, (<10 lines, no non-standard libraries). On such questions I wait and see if other answers are forthcoming. But if they get no answers, I'm not sure if I should give my 10 lines of python or not.
I went against the grain, applying other tools that people have written over the years to directly perform the job at hand which do not involve entering a program for awk or a shell to run, with answers like https://unix.stackexchange.com/a/574309/5132 and https://unix.stackexchange.com/a/578242/5132 . Others have done similar. https://unix.stackexchange.com/a/584274/5132 and https://unix.stackexchange.com/a/569600/5132 are (for examples) answers that show alternative tools to answers employing shell script and (yet again) awk programs, namely John A. Kunze's jot and rs (reshape), which have been around since 4.2BSD for goodness' sake!
There is an observable widespread tendency to give an awk answer to almost everything, but that should not be inferred as a rule to be followed, and if there's (say) a Python answer that involves less programming then surely that is quite on point as an answer for a readership of users.
Java may have been designed as a completely object oriented language, but when Java SE 8 was released in 2014, it added Lambda expressions (aka closures), which added some functional programming elements. Not every problem is best served by OOP, and by adding Lambdas, Java became more flexible.
Quinn, A. E., Trachtenberg, A. J., McBrien, K. A., Ogundeji, Y., Souri, S., Manns, L., Rennert-May, E., Ronksley, P., Au, F., Arora, N., Hemmelgarn, B., Tonelli, M., & Manns, B. J. (2020). Impact of payment model on the behaviour of specialist physicians: A systematic review. Health Policy, 124(4), 345–358. https://doi.org/10.1016/j.healthpol.2020.02.007
DNA vaccine for SARS-CoV-2 inflammations.
Ruby has some really nice libraries for working with linked data. These libraries allow you to work with the data in both a graph and resource-oriented fashion, allowing a developer to use the techniques that best suit his or her use cases and skills.
Using !important in your CSS usually means you’re narcissistic & selfish or lazy. Respect the devs to come…
As mentioned earlier in these guidelines, it is very important that controllers assess the purposes forwhich data is actually processed and the lawful grounds on which it is based prior to collecting thedata. Often companies need personal data for several purposes, and the processing is based on morethan one lawful basis, e.g. customer data may be based on contract and consent. Hence, a withdrawalof consent does not mean a controller must erase data that are processed for a purpose that is basedon the performance of the contract with the data subject. Controllers should therefore be clear fromthe outset about which purpose applies to each element of data and which lawful basis is being reliedupon.
In cases where the data subject withdraws his/her consent and the controller wishes to continue toprocess the personal data on another lawful basis, they cannot silently migrate from consent (which iswithdrawn) to this other lawful basis. Any change in the lawful basis for processing must be notified toa data subject in accordance with the information requirements in Articles 13 and 14 and under thegeneral principle of transparency.
Some vendors may relay on legitimate interest instead of consent for the processing of personal data. The User Interface specifies if a specific vendor is relating on legitimate interest as legal basis, meaning that that vendor will process user’s data for the declared purposes without asking for their consent. The presence of vendors relying on legitimate interest is the reason why within the user interface, even if a user has switched on one specific purpose, not all vendors processing data for that purpose will be displayed as switched on. In fact, those vendors processing data for that specific purpose, relying only on legitimate interest will be displayed as switched off.
Under GDPR there are six possible legal bases for the processing of personal data.
Ultimately though, I'd say the file structure that makes the most sense for your i18n workflow is the best one.
the successes and failures of a long-running consultancy are not particularly interesting or unique, and most are wise to the fact that Unspace’s strengths were a mixture of strong bonds, evolving senior talent, sociability, serendipity and scotch tape.
Nevertheless, this is quite confusing and has lead to a recently reported issue on the Webpacker GitHub repository.
How Europe can emerge stronger out of the coronavirus crisis. (n.d.). World Economic Forum. Retrieved 25 July 2020, from https://www.weforum.org/agenda/2020/07/resilient-european-economy/
Cook, Marion. ‘Potential Factors Linked to High COVID-19 Death Rates in British Minority Ethnic Groups’. The Lancet Infectious Diseases 0, no. 0 (17 July 2020). https://doi.org/10.1016/S1473-3099(20)30583-1.
This follows the original vision of the Web as a space for collaboration and not just a one-way publishing medium.
If you answer is yes, then we are doing this wrong because subset? or part_of method should be in a parent class (maybe Enumerable class ) in order for it to work for subset, array, hash and any data structure that inherit from it Enumerable.
Some may say that copied/not-copied goes without saying. I agree with Tallyrand: "If it goes without saying, it goes all the better for saying it."
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.
Kaufman, S. B. (n.d.). Forced Social Isolation Causes Neural Craving Similar to Hunger. Scientific American Blog Network. Retrieved 26 June 2020, from https://blogs.scientificamerican.com/beautiful-minds/forced-social-isolation-causes-neural-craving-similar-to-hunger/
Call for Papers: Risk Perception, Communication, and Decision Making in the Time of COVID-19. (n.d.). Https://Www.Apa.Org. Retrieved July 1, 2020, from https://www.apa.org/pubs/journals/xap/call-for-papers-covid-19
COVID-19: Relevant Calls for Papers from APA Journals. (n.d.). Https://Www.Apa.Org. Retrieved July 1, 2020, from https://www.apa.org/pubs/journals/resources/covid-19-calls-for-papers
Axt, J. R., Landau, M. J., & Kay, A. C. (2020). The Psychological Appeal of Fake-News Attributions. Psychological Science, 0956797620922785. https://doi.org/10.1177/0956797620922785
One need arose quite commonly as trains of thought would develop on a growing series of note cards. There was no convenient way to link these cards together so that the train of thought could later be recalled by extracting the ordered series of notecards. An associative-trail scheme similar to that out lined by Bush for his Memex could conceivably be implemented with these cards to meet this need and add a valuable new symbol-structuring process to the system.
This reminds me of of how the Roam Research app has implemented bidirectional links and block references.
We refer to a way of life in an integrated domain where hunches, cut-and-try, intangibles, and the human "feel for a situation" usefully co-exist with powerful concepts, streamlined terminology and notation, sophisticated methods, and high-powered electronic aids.
This sounds a lot like Rheingold's tools for thought.
As an engineer, it’s important to explore different technologies. It’s important to identify the tools available to tackle problems. And it’s important to expand your horizons because then you can look cool on your CV.
DELVE group publishes evidence paper on the use of face masks in tackling Coronavirus (COVID-19) pandemic | Royal Society. (2020 May 04). https://royalsociety.org/news/2020/05/delve-group-publishes-evidence-paper-on-use-of-face-masks/
Axt, J.R., et. al, (2020) The Psychological Appeal of Fake-News Attributions. Psychological Science, https://doi.org/10.1177/0956797620922785
hypothes.is is an exciting project, but not a commenting system. It belongs, therefore, to a different category of software (annotation systems).
I suggest you start a thread in the forum as this is a support request.
British Journal of Social Psychology. (n.d.). Wiley Online Library. https://doi.org/10.1111/(ISSN)2044-8309
Science in the time of COVID-19. Nat Hum Behav 4, 327–328 (2020). https://doi.org/10.1038/s41562-020-0879-9
Call for Papers: COVID19-Pandemic. (n.d.). Https://Www.Apa.Org. Retrieved June 11, 2020, from https://www.apa.org/pubs/journals/amp/call-for-papers-covid19-pandemic
Journal of Computational Social Science. Springer. Retrieved June 10, 2020, from https://www.springer.com/journal/42001/updates/17993070
Please don't put "feature request" items into GitHub Issues. If there's a new feature that you want to see added to Ruby on Rails, you'll need to write the code yourself - or convince someone else to partner with you to write the code. Later in this guide, you'll find detailed instructions for proposing a patch to Ruby on Rails. If you enter a wish list item in GitHub Issues with no code, you can expect it to be marked "invalid" as soon as it's reviewed.
With that said, the term “tools for thought” has been widely used since Iverson’s 1950s and 1960s work An account may be found in Iverson’s Turing Award lecture, Notation as a Tool of Thought (1979). Incidentally, even Iverson is really describing a medium for thought, the APL programming language, not a narrow tool. introducing the term. And so we shall use “tools for thought” as our catch all phrase, while giving ourselves license to explore a broader range, and also occasionally preferring the term “medium” when it is apt.
PAY $1 OR MORE TO ALSO UNLOCK!
Star Wars Vs. Star Trek
Everything Everyday Math Book
Everything Guide to Pre-Algebra
100 Things to See in the Night Sky
Simple Acts to Save Our Planet
Weather 101
1,001 Facts That Will Scare the S#*t Out of You
Why Didn't I Think of That?
What's Your STEM?
Dad's Book of Awesome Science Experiments
Psych 101
PAY $8 OR MORE TO ALSO UNLOCK!
Everything Guide to Algebra
Math Geek
Anatomy 101
Physics of Star Wars
Facts From Space!
100 Things to See in the Southern Night Sky
Everything STEM Handbook
Architecture 101
Nature is the Worst
Ultimate Roblox Book: An Unofficial Guide
The Everything Astronomy Book
Everything Psychology
PAY $15 OR MORE TO ALSO UNLOCK!
Psych Experiments https://www.amazon.com/Psych-Experiments-Rorschachs-psychologys-fascinating-ebook/dp/B01M3R7RVN/ 4.6/5 $12/$11
DNA is You! https://www.amazon.com/DNA-You-Marvelous-One-Kind-ness/dp/1721400176/ 3.8/5 $11/$14 Want: 8/10
Everything Guide to the Human Brain https://www.amazon.com/Everything-Guide-Human-Brain-Everything%C2%AE-ebook/dp/B00CMVFW62/ 4.3/10 $14/$13 Want: 8/10
Astronomy 101 https://www.amazon.com/Astronomy-101-Wormholes-Theories-Discoveries-ebook/dp/B00DV1V7LQ/ 4.5/5 $9/$11 Want: 7/10
Everyday Amazing https://www.amazon.com/Everyday-Amazing-Fascinating-Science-Surrounds-ebook/dp/B07M5VB9FW/ 4.6/5 $15/$13 Want: 7/10
Everything Kids' Scratch Coding Book https://www.amazon.com/Everything-Kids-Scratch-Coding-Book/dp/1507207972/ 4.4/5 $14/$15 Want: 6/10
In the Company of Trees https://www.amazon.com/Company-Trees-Honoring-Connection-Sacred/dp/1507209541/ 5/5 $13/$15 Want: 9/10
Science of Marvel https://www.amazon.com/Science-Marvel-Infinity-Stones-Revealed/dp/1507209983/ 4.6/5 $13/$11 Want: 7/10
Bizarre World https://www.amazon.com/Bizarre-World-Collection-Creepiest-Traditions-ebook/dp/B07MKDH8XY/ 5/5 $9/$10 Want: 8/10
Statistics 101 https://www.amazon.com/Statistics-101-Distribution-Determining-Probability-ebook/dp/B078M5FZ1P/ 3.4/5 $11/$10 Want: 3/10
Everything Guide to Anatomy and Physiology https://www.amazon.com/Everything-Guide-Anatomy-Physiology-Everything%C2%AE-ebook/dp/B00XO0PZAS/ 4.6/5 $16/21 Want: 7/10
Advanced Roblox Coding Book: An Unofficial Guide https://www.amazon.com/Advanced-Roblox-Coding-Book-Unofficial-ebook/dp/B07GNVRPXW/ 4.6/5 $11/$10 Want: 5/10
Genetics 101 https://www.amazon.com/Genetics-101-Chromosomes-Cloning-Everything-ebook/dp/B078M5KLXB/ 4.1/5 $11/$10 Needs pictures Want: 5/10
est it using bash -c 'echo ${!#}' arg1 arg2 arg3.
there’s 3 steps to building software: Make it work Make it right Make it fast
“Make it right” means that the code is maintainable and easy to change. Humans can read it, not just computers. New engineers can easily add functionality to the code. When there’s a defect, it is easy to isolate and correct.
This is not a Q&A section. Comments placed here should be pointed towards suggestions on improving the documentation or server, and may be removed again by our moderators if they are either implemented or considered invalid/off-topic.
Jordana, J., & Triviño-Salazar, J. C. (2020). Where are the ECDC and the EU-wide responses in the COVID-19 pandemic? The Lancet, S0140673620311326. https://doi.org/10.1016/S0140-6736(20)31132-6
React Static is also a great replacement for the ever popular Create React App CLI. It provides a similar developer experience, zero-config environment, and features, but without boxing you in. If you ever need to customize your build system in React Static, there is no need to eject!
Free GitLab Community Forum
Requested Dormant Username Enter the username you would like to request, without the preceding URL (e.g., "User" instead of "gitlab.com/User")
Problem Type: Dormant Username Requests
Community Forum For free and trial users, or if the question is out of scope.
The GitLab.com support team does offer support for: Account specific issues (unable to log in, GDPR, etc.) Broken features/states for specific users or repositories Issues with GitLab.com availability
Technical and general support for those using our free options is “Community First”. Like many other free SaaS products, users are first directed to find support in community sources such as the following:
Out of Scope The following details what is outside of the scope of support for self-managed instances with a license.
For general questions, use cases, or anything else that does not fit into one of the above cases, please post in the GitLab Forum or on a third-party help site.
If you're in a paid tier on GitLab.com or GitLab Self-managed, you're entitled to Support. Please open a support ticket after reviewing our Statement of Support
If you're a free user on GitLab.com and are having one of the following specific issues please file a support ticket after reviewing the Free Plan Users Section in our Statement of Support
Account Support If you haven't received your confirmation email, you can request to resend your confirmation instructions via our confirmation page.
This Account Support section only includes one possible problem related to account support
If you haven't received your confirmation email, you can request to resend your confirmation instructions via our confirmation page.
What about if you have any other issue with your account? How would you get support then? This would be a good opportunity/place to describe what to do in that case.
Presumably the answer is to submit support requests at <del>https://gitlab.com/gitlab-com/support-forum</del> (to be shut down) or in the community forums.
We're closing the Support Forum issue tracker in favor of the Community Forum and support channels. We recognize that the Support Forum issue tracker has not received much attention in the last few months, and want to redirect our community members to locations that are regularly monitored by GitLab staff. As a result, this issue will be moved to the GitLab product issue tracker and triaged there.
We don't have an internationalization group. That responsibility is shared across many groups. We might instead have an internationalization tooling group.
We don't have a performance group. Ensuring GitLab is performant is the responsibility of all groups.
Hey there. We see you’ve been busy reading, which is fantastic, so we’ve promoted you up a trust level! We’re really glad you’re spending time with us and we’d love to know more about you. Take a moment to fill out your profile, or feel free to start a new topic.
It seems weird to me that we are trying to enforce commit messages when they are not really visible or used in the GitLab workflow at all. This is what you see most of the time when interacting with the commit list. I've taken time to compose a nice descriptive body and it is hidden by default:
What I think we're lacking is proper tooling, or at least the knowledge of it. I don't know what most people use to write Git commits, but concepts like interactive staging, rebasing, squashing, and fixup commits are very daunting with Git on the CLI, unless you know really well what you're doing. We should do a better job at learning people how to use tools like Git Tower (to give just one example) to rewrite Git history, and to produce nice Git commits.
Many also question how the average user with little knowledge of the GDPR will react to being asked so many questions regarding consent. Will they be confused? Probably at first. It will be up to each business to create a consent form that is easy to understand, while being at the same time comprehensive and informative
A "tag" is a snippet of code that allows digital marketing teams to collect data, set cookies or integrate third-party content like social media widgets into a site.
This is a bad re-purposing of the word "tag", which already has specific meanings in computing.
Why do we need a new word for this? Why not just call it a "script" or "code snippet"?
Davis, N. (2020, May 4). Report on face masks’ effectiveness for Covid-19 divides scientists. The Guardian. https://www.theguardian.com/world/2020/may/04/scientists-disagree-over-face-masks-effect-on-covid-19
The folks at Netlify created Netlify CMS to fill a gap in the static site generation pipeline. There were some great proprietary headless CMS options, but no real contenders that were open source and extensible—that could turn into a community-built ecosystem like WordPress or Drupal. For that reason, Netlify CMS is made to be community-driven, and has never been locked to the Netlify platform (despite the name).
Kind of an unfortunate name...
Sure, anti-spam measures such as a CAPTCHA would certainly fall under "legitimate interests". But would targeting cookies? The gotcha with reCAPTCHA is that this legitimate-interest, quite-necessary-in-today's-world feature is inextricably bundled with unwanted and unrelated Google targeting (cookiepedia.co.uk/cookies/NID) cookies (_ga, _gid for v2; NID for v3).
One of the GDPR's principles of data processing is storage limitation. You must not store personal data for longer than you need it in connection with a specified purpose.
P ⇒ Q
It may be confusing for a newcomer (or on first read-through) that the variable/predicate/condition that represents the "necessary condition" in this statement P ⇒ Q is the Q.
One might be forgiven for incorrectly assuming that the P represents the necessary condition. That is because most of the time when one states a statement/relation/implication/etc. about a subject, the sentence/statement begins with the subject. For example, if we're explaining about a "less than" relationship, and we give x < y as an example, one would correctly assume that x is the subject here and x is the thing that is less than.
So it may be a bit surprising to a newcomer (on first read-through) that the subject of this section — the necessary condition — is represented by the Q and not be the P.
(Made even more confusing by the fact that the very same implication P ⇒ Q is also used to express the opposite sufficiency relationship in the very next section. I would argue that Q ⇒ P should have been used instead in exactly one of these sections to make it clearer that the subject is different and/or the relation is different, depending how you look at it.)
Is there any reason we couldn't rewrite this to express the logical relation between P and Q with the subject first? If we let P be the subject (that is, "necessary condition" that we're illustrating/explaining), could we not rewrite this as P ⇐ Q?
In fact, that is exactly how this relation was expressed below, in https://en.wikipedia.org/wiki/Necessity_and_sufficiency#Simultaneous_necessity_and_sufficiency !:
that P is necessary for Q, P ⇐ Q, and that P is sufficient for Q, P ⇒ Q
In algebra, for some set S together with an operation ⋆ {\displaystyle \star } to form a group, it is necessary that ⋆ {\displaystyle \star } be associative.
Seems like a simpler example (of individually necessary and jointly sufficient) that is easier to follow could be found.
Where a processing activity is necessary for the performance of a contract.
Would a terms of service agreement be considered a contract in this case? So can you just make your terms of service basically include consent or implied consent?
“Is consent really the most appropriate legal basis for this processing activity?” It should be taken into account that consent may not be the best choice in the following situations:
It’s useful to remember that under GDPR regulations consent is not the ONLY reason that an organization can process user data; it is only one of the “Lawful Bases”, therefore companies can apply other lawful (within the scope of GDPR) bases for data processing activity. However, there will always be data processing activities where consent is the only or best option.
If you’re a controller based outside of the EU, you’re transferring personal data outside of the EU each time you collect data of users based within the EU. Please make sure you do so according to one of the legal bases for transfer.
Here they equate collection of personal data with transfer of personal data. But this is not very intuitive: I usually think of collection of data and transfer of data as rather different activities. It would be if we collected the data on a server in EU and then transferred all that data (via some internal process) to a server in US.
But I guess when you collect the data over the Internet from a user in a different country, the data is technically being transferred directly to your server in the US. But who is doing the transfer? I would argue that it is not me who is transferring it; it is the user who transmitted/sent the data to my app. I'm collecting it from them, but not transferring it. Collecting seems like more of a passive activity, while transfer seems like a more active activity (maybe not if it's all automated).
So if these terms are equivalent, then they should replace all instances of "transfer" with "collect". That would make it much clearer and harder to mistakenly assume this doesn't apply to oneself. Or if there is a nuanced difference between the two activities, then the differences should be explained, such as examples of when collection may occur without transfer occurring.
American Psychological Association. Interdivisional call for papers: Developing resilience in response to stress and trauma. Apa.org. https://www.apa.org/pubs/journals/hea/interdivisional-call-for-papers-resilience-stress-trauma
In particular, I, quite accidentally, became a maintainer of ActsAsTaggableOn, a Rails tagging engine, after bumping a long-stale, minor, pull-request I had written.
U.K. Information Commissioner Elizabeth Denham clearly states that consent is not the "silver bullet" for GDPR compliance. In many instances, consent will not be the most appropriate ground — for example, when the processing is based on a legal obligation or when the organization has a legitimate interest in processing personal data.
data processing limited to purposes deemed reasonable and appropriate such as commercial interests, individual interests or societal benefits with minimal privacy impact could be exempt from formal consent. The individual will always retain the right to object to the processing of any personal data at any time, subject to legal or contractual restrictions.
organizations may require consent from individuals where the processing of personal data is likely to result in a risk or high risk to the rights and freedoms of individuals or in the case of automated individual decision-making and profiling. Formal consent could as well be justified where the processing requires sharing of personal data with third parties, international data transfers, or where the organization processes special categories of personal data or personal data from minors.
First, organizations must identify the lawful basis for processing prior to the collection of personal data. Under the GDPR, consent is one basis for processing; there are other alternatives. They may be more appropriate options.
Vertical navigation needs to scroll and “stick” to the screen so that users don’t lose it. Often vertical navigation works well on a single page design
With wider screens, the scroll is higher and some navigation elements might get “lost.”
One thing is certain when it comes to navigation trends, users and designers seem to be fed up with completely hidden styles and demand options that work in similar formats on desktops and mobile devices. This might be one of the reasons a vertical pattern is trending.
Responsive design almost forced designers to think about alternative navigation patterns to make getting around on small screens easier. And the hamburger menu icon was born.
The common theme is that many hamburger icons open into vertical sliding navigation.
You may receive better information if you ask your question in the help forum for that topic
Short of a fingerprint reader, two-step verification (aka two-step authorization) may be the single best way to protect online accounts.
I'm happy to try to reach agreement with you, but this isn't the right place. Feel free to invite me to a more appropriate forum.
There is a forum for discussing CommonMark; you should use it instead of github issues for questions and possibly open-ended discussions. Use the github issue tracker only for simple, clear, actionable issues.
Having said all that, I think this is completely absurd that I have to write an entire article justifying the release of this data out of fear of prosecution or legal harassment. I had wanted to write an article about the data itself but I will have to do that later because I had to write this lame thing trying to convince the FBI not to raid me.
I could have released this data anonymously like everyone else does but why should I have to? I clearly have no criminal intent here. It is beyond all reason that any researcher, student, or journalist have to be afraid of law enforcement agencies that are supposed to be protecting us instead of trying to find ways to use the laws against us.
you could even provide an incentive if the user proactively opts to change a Pwned Password after being prompted, for example the way MailChimp provide an incentive to enabled 2FA:
The data is stored in log files to ensure the functionality of the website. In addition, the data serves us to optimize the website and to ensure the security of our information technology systems. An evaluation of the data for marketing purposes does not take place in this context. The legal basis for the temporary storage of the data and the log files is Art. 6 para. 1 lit. f GDPR. Our legitimate interests lie in the above-mentioned purposes.
The temporary storage of the IP address by the system is necessary to enable the website to be delivered to the user's computer. For this the IP address of the user must remain stored for the duration of the session.
The legal basis for the processing of personal data using cookies is Art. 6 para. 1 lit. f GDPR. Our legitimate interests lie in the above-mentioned purposes.
If you didn't and this incident is the impetus that causes you to start practising secure password management then that's precisely the outcome I'd hoped for.
it isn't actually -prune itself that causes this, by the way. The issue is that the or operator "short-circuits", and or has lower precedence than and. The end result is that if a file called .snapshot is encountered it will match the first -name, -prune will then do nothing (but return true), and then the or returns true since its left-argument was true. The action (eg: -print) is part of its second argument, so it never has a chance to execute.
Oxygen is required for almost all steps of wound healing and is also an important factor in the body’s defense against bacterial infection
In addition to its role in healing, oxygen plays an essential role in the production of reactive oxygen species such as superoxide that are angiogenesis stimulators and are bacteriostatic
IDEs and standard *nix tools like sed can help, but you typically have to make a trade-off between introducing errors and introducing tedium.
In patients with clear indications for operation, essential radiographs should be taken, and the patient should be transported to the OR immediately. Such patients include those with blunt trauma and massive hemothorax, those with penetrating trauma and an initial chest tube output of >1 L, and those with abdominal trauma and ultrasound evidence of extensive hemoperitoneum.
General surgeons in communities without emergency neurosurgical coverage should have a working knowledge of burr hole placement in the event that emergent evacuation is required for a life-threatening epidural hematoma
The partial pressure of carbon dioxide (PCO2) should be maintained in a normal range (35–40 mmHg), but for temporary management of acute intracranial hypertension, inducing cerebral vasoconstriction by hyperventilation to a PCO2 of <30 mmHg is occasionally warranted.
The role of decompressive craniectomy for refractory ICH remains controversial.
descriptive study of a large develop-ment team—roughly 450 people producing about 9,000 annotationson about 1,250 documents over 10 months—using a Web-based anno-tation system.
It is not the browser's responsibility to auto-login to websites. This is the responsibility of the website you are accessing. The browser can remember form data and auto-fill for you, as can various extensions like LastPass.
There is no system that is equally well-suited to significantly different scenarios.
The higher the load on the system, the more important it is to customize the system set up to match the requirements of the usage scenario, and the more fine grained this customization becomes. There is no system that is equally well-suited to significantly different scenarios. If a system is adaptable to a wide set of scenarios, under a high load, the system will handle all the scenarios equally poorly, or will work well for just one or few of possible scenarios.
legitimate interest triggers when “processing is necessary for the purposes of the legitimate interests pursued by the controller or by a third party, except where such interests are overridden by the interests or fundamental rights and freedoms of the data subject
of the six lawful, GDPR-compliant ways companies can get the green light to process individual personal data, consent is the “least preferable.” According to guidelines in Article 29 Working Party from the European Commission, "a controller must always take time to consider whether consent is the appropriate lawful ground for the envisaged processing or whether another ground should be chosen instead."
“It is unfortunate that a lot of companies are blindly asking for consent when they don’t need it because they have either historically obtained the consent to contact a user,” said digital policy consultant Kristina Podnar. “Or better yet, the company has a lawful basis for contact. Lawful basis is always preferable to consent, so I am uncertain why companies are blindly dismissing that path in favor of consent.”
By choosing Matomo, you are joining an ever growing movement. You’re standing up for something that respects user-privacy, you’re fighting for a safer web and you believe your personal data should remain in your own hands, no one else’s.
Take the challenge: Compare your Google Analytics data (sampled data) against your Matomo data.
To become compliant, organisations will need to either stop collecting the offending cookies or find a lawful ground to collect and process that data
Our Cookie Solution plugins for WordPress, Magento, Joomla! and PrestaShop allow you to automate the blocking of scripts drastically reducing the necessity for direct interventions in the site’s code.
it is possible to verify this yourself by noting that we don’t have any analytics tool installed in the code of that page
Legitimate interest. When there is a genuine reason for processing personal data without consent. Interpretations of this legal ground may vary, but a good example would be risk assessment or checking children’s age, such as in an online liquor store.
Are cookies governed by the GDPR? Cookie usage and it’s related consent acquisition are not governed by the GDPR, they are instead governed by the ePrivacy Directive (Cookie Law) which in future will be repealed by the up-coming ePrivacy Regulation.
They are in place to prevent brute forcing a password. If you had to complete these every time you login, a person has to be there to answer it. This makes it so you can’t leave a guessing software to break your password. So, in short, it's for your account’s safety.
Describe the problem fully Link to a test case showing the problem.
Without this information, very likely your question will not be answered, frustrating both yourself and anyone else who does want to help, because they are unable to do so
ask your question in a way that it provides enough information that it can be answered
We have a fantastic community here, full of very helpful and knowledgeable people
some examples of legitimate interest (although their main aim is to emphasize what rights, freedoms and so on override legitimate interest)
An example of reliance on legitimate interests includes a computer store, using only the contact information provided by a customer in the context of a sale, serving that customer with direct regular mail marketing of similar product offerings — accompanied by an easy-to-select choice of online opt-out.
This is no different where legitimate interests applies – see the examples below from the DPN. It should also be made clear that individuals have the right to object to processing of personal data on these grounds.
Individuals can object to data processing for legitimate interests (Article 21 of the GDPR) with the controller getting the opportunity to defend themselves, whereas where the controller uses consent, individuals have the right to withdraw that consent and the ‘right to erasure’. The DPN observes that this may be a factor in whether companies rely on legitimate interests.
.
Here’s how to check it:
One of the core organizations leading the charge on COVID-19 mitigation.
How do relevant ads help pay for content and services? Advertising is the engine that powers much of the content and services that consumers enjoy online. More relevant ads get more clicks, and advertisers pay more for these ads, allowing content and services providers to continue to operate without charging visitors to their sites.
Rather than using NFS for this task, use explicit data duplication, via one of the long-established mechanisms designed for this purpose.
For mainly two reasons: I pay for things that bring value to my life, and when something's "free", you're usually really just giving away your privacy without being aware.
Ways to increase Wi-Fi coverage.
define need for product
Enjoy a better home internet experience with these Wi-Fi tips.
grabbing attention
When you upgrade or improve your home, you may increase your home's estimated replacement cost. Your State Farm agent will then help you adjust your policy to meet your home insurance coverage needs.
explanations of parameters for decision
4. Build With Not For This simple but compelling phrase sums up our approach to building technology. The concept comes from a long history of movement work, and in the civic tech space has been popularized by Laurenellen McCann, who has written extensively on the topic. To us, the ethos of “build with note for” is a reminder that the moment we are in the mindset of building something “for” our partners rather than with them, we have failed. Going back to the theme that technology is not neutral and that our values are embedded in our work, whether it’s conscious or not, building “for” inherently conjures up a feeling of saviorism, of believing we have the answers, or believing we are here to do something for someone else. Building with means constantly checking our assumptions, being open to ideas we haven’t thought of, and, most of all, results in much better work.
Introductory Videos
table properties, you can create two columns, 1 row, merge the heading column. Modify the heading column size to be closer to the font size.
This makes it easy to use Markdown to write about HTML code. (As opposed to raw HTML, which is a terrible format for writing about HTML syntax, because every single < and & in your example code needs to be escaped.)
Unless you specifically need the open source tool, most website owners will be better served by the hosted version
people assume that by asking someone a question privately, they are doing everyone else a favor by bothering the fewest amount of people.
We encourage team members to consider making private issues public wherever possible so that we can all learn from the experience, rather than requiring a small group to spend effort translating those learnings in the future.
Wrong solutions can be fixed, but non-existent ones aren’t adjustable at all.
It's important that we keep our focus on action, and don't fall into the trap of analysis paralysis or sticking to a slow, quiet path without risk.