771 Matching Annotations
  1. Nov 2020
    1. If I understand the problem correctly, just changing the imports to point to svelte/internal isn't enough because they could still point to different packages depending on how your components are bundled. It solved your specific issue, but if you had two completely unrelated Svelte components compiled to vanilla javascript bundled with Svelte, you'd still hit issues with mismatching current_component when using slots or callbacks.
    2. It sounds like another case of multiple svelte/internal modules? I think we need to look into reworking how svelte/internal keeps track of the current component since it breaks when mixing components not bundled with the app. It sounds like we need to find a way to pass Svelte's internal runtime state when instantiating components, since slots and callbacks end up mixing different svelte/internal together.
    1. A Chrome Extension designed with one intention: Increase the speed and privacy of your web browsing by skipping tracking redirects and removing the tracking parameters from URLs to keep them short and cleaner for sharing, bookmarking, etc.
    1. It is impossible to rebuild the base from the Dockerfile as the 3rd party dependencies have changed significantly since 8 months ago when the base was last built. The tags for my base image have been overwritten and I can only restore them from a descendant image. With Docker 1.8 I simply pulled the descendant image, tagged the base layer and I was done. With Docker 1.10+ I'd need to save, then manually construct the base image descriptor and reload it. Doable but sad that it's far more complex.
    2. Sorry, I don't totally know how the internals work, but does there currently exist a workaround? By that I mean, can I pull an image, then run it at a layer other than the top layer? (I basically use this for testing purposes, its certainly possible to build the image myself then do it, but its slightly less convenient)
  2. Oct 2020
    1. Please don't copy answers to multiple questions; this is the same as your answer to a similar question

      Why on earth not? There's nothing wrong with reusing the same answer if it can work for multiple questions. That's called being efficient. It would be stupid to write a new answer from scratch when you already have one that can work very well and fits the question very well.

    1. “"

      Which character is this referring to exactly?

      It looks like the empty string, which wouldn't make sense.

      https://www.postgresql.org/docs/13/functions-matching.html only lists these 2:

      If pattern does not contain percent signs or underscores, then the pattern only represents the string itself; in that case LIKE acts like the equals operator. An underscore (_) in pattern stands for (matches) any single character; a percent sign (%) matches any sequence of zero or more characters.

    1. Could you please explain why it is a vulnerability for an attacker to know the user names on a system? Currently External Identity Providers are wildly popular, meaning that user names are personal emails.My amazon account is my email address, my Azure account is my email address and both sites manage highly valuable information that could take a whole company out of business... and yet, they show no concern on hiding user names...

      Good question: Why do the big players like Azure not seem to worry? Microsoft, Amazon, Google, etc. too probably. In fact, any email provider. So once someone knows your email address, you are (more) vulnerable to someone trying to hack your account. Makes me wonder if the severity of this problem is overrated.

      Irony: He (using his full real name) posts:

      1. Information about which account ("my Azure account is my email address"), and
      2. How high-value of a target he would be ("both sites manage highly valuable information that could take a whole company out of business...")

      thus making himself more of a target. (I hope he does not get targetted though.)

    1. For all systems of structural incentive, the incentive of any actor (individual or group), must be rigorously aligned with the well-being of all other agents in the system and of the commons writ large. Ie, all externalities must be internalized – all the consequences of activity within the system must be included in the system’s accounting.

      Sure ...

      This is a bit "I want a million dollars"

      You can write this down and the devil is in how to implement it.

    1. Another example:

      const expensiveOperation = async (value) => {
        // return Promise.resolve(value)
          // console.log('value:', value)
          await sleep(1000)
          console.log('expensiveOperation: value:', value, 'finished')
          return value
      }
      
      var expensiveOperationDebounce = debounce(expensiveOperation, 100);
      
      // for (let num of [1, 2]) {
      //   expensiveOperationDebounce(num).then(value => {
      //     console.log(value)
      //   })
      // }
      (async () => { await sleep(0   ); console.log(await expensiveOperationDebounce(1)) })();
      (async () => { await sleep(200 ); console.log(await expensiveOperationDebounce(2)) })();
      (async () => { await sleep(1300); console.log(await expensiveOperationDebounce(3)) })();
      // setTimeout(async () => {
      //   console.log(await expensiveOperationDebounce(3))
      // }, 1300)
      

      Outputs: 1, 2, 3

      Why, if I change it to:

      (async () => { await sleep(0   ); console.log(await expensiveOperationDebounce(1)) })();
      (async () => { await sleep(200 ); console.log(await expensiveOperationDebounce(2)) })();
      (async () => { await sleep(1100); console.log(await expensiveOperationDebounce(3)) })();
      

      Does it only output 2, 3?

    1. Without elegant ways of expressing loops/iterators (like angular does with directives), the primary way to keep JSX readable thus becomes copying and pasting.

      I'm not quite sure I understand this (so until I do, I'm not sure I agree)...

      Why does he think copying and pasting is the only way to make it readable? Like he pointed out, you can extract JSX snippets and use loops within JSX. But maybe he means (his previous point), that people often don't do that. Hmm. 

    1. A new option --proximate=N groups together lines of output that are within N lines of each other in the file. This is useful when looking for matches that are related to each other.

      I'd been wishing for a feature like this with grep/etc. tools.

      I've had to use some really ugly workarounds (chain grep -C5 | grep -B5) which end up showing extra irrelevant context lines.

      So I'm glad there's a clean way to do this now!

  3. Sep 2020
    1. Actually just returning the loginDaoCall works fine. I dont really get what's different as it is the looked like it was the same instance, but probably not.

      So the posted answer wasn't necessary/correct? Which part of the answer was incorrect/unneeded?

      I wish this OP comment included the full version of code that worked.

      I don't understand this OP comment. Wasn't OP already returning loginDaoCall? So maybe the only thing they could mean is that they just needed to change it to return loginDaoCall.then(...) instead...

      That would be consistent with what the answer said:

      the promise returned by the further .then() does also get rejected and was not handled.

      So I guess the unnecessary part of the answer was adding the return true/false...

    1. setContext / getContext can only be used once at component init, so how do you share your API result through context? Related: how would you share those API results if the call was made outside of a Svelte component, where setContext would be even more out of the question (and the API call would arguably be better located, for separation of concerns matters)? Well, put a store in your context.
    1. 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.

  4. Aug 2020
  5. Jul 2020
    1. This isn’t an accident. OpenOffice’s sidebar code was copied and incorporated into LibreOffice. The Apache OpenOffice project uses the Apache License, while the LibreOffice uses a dual LGPLv3 / MPL license. The practical result is LibreOffice can take OpenOffice’s code and incorporate it into LibreOffice — the licenses are compatible. On the other hand, LibreOffice has some features — like font embedding — that don’t appear in OpenOffice. This is because the two different licenses only allow a one-way transfer of code. LibreOffice can incorporate OpenOffice’s code, but OpenOffice can’t incorporate LibreOffice’s code. This is the result of the different licenses the projects chose.

      What part of LGPLv3 / MPL prevents LibreOffice code from being incorporated back into OpenOffice's Apache Licensed code??

    1. lass ceilings’.

      These individuals who hit this "glass ceiling" make up the majority of the population in our classrooms. These are the children who's schools are underfunded and teachers are exhausted and burn out or who are fresh out of school with no experience, but a lot of motivation.

    1. In the Set class we already called this - and difference, which it is ok but not really accurate because of the previous explanation, but probably not worthwhile to change it.

      Is this saying that the name difference is inaccurate?

      Why is it inaccurate? You even called it the "theoretic difference" above.

      Is that because "relative complement" would be better? Or because the full phrase "theoretic difference" [https://en.wiktionary.org/wiki/set-theoretic_difference] is required in order for it to be accurate rather than just "difference"?

  6. Jun 2020
    1. This means you no longer have to declare inverse_of on two associations which have good names.

      ... which have good names.

      This implies that those names where the inverse_of cannot automatically be inferred are bad names. I disagree that a "good name" is at all related/dependent on that ability.

      What they should say here instead is:

      ... which have names that allow the relationship to be easily inferred.

      Or refer to these names as the "default" or "Rails conventional" names for these associations.

      But it is not necessarily a better name. A better name is, quite often, one that is more descriptive and specific.

      For example, just because by default if you use rails generate with a User model, it might (I don't remember; can it even generate associations?) create a belongs_to :user association doesn't mean that's the best name for it. belongs_to :author or belongs_to :owner, for example, being more specific, are likely better names. The model still needs a generic name like User because it may be used in various relationships, but the relationships themselves should pretty much never be called user because there's almost always a more specific name that better reveals/describes the relationship.

    1. What would be nice is if JavaScript had a built-in way to do what I can do in Ruby with:

      > I18n.interpolate('Hi, %{name}', name: 'Fred')
      => "Hi, Fred"
      

      But to be fair, I18n comes from i18n library, so JS could just as easily (and I'm sure does) have a library that does the same thing.

      Update: Actually, you can do this in plain Ruby (so why do we even need I18n.interpolate?):

      main > "Hi, %{name}" % {name: 'Fred'}
      => "Hi, Fred"
      
      main > ? String#%
      
      From: string.c (C Method):
      Owner: String
      Visibility: public
      Signature: %(arg1)
      Number of lines: 9
      
      Format---Uses str as a format specification, and returns the result
      of applying it to arg. If the format specification contains more than
      one substitution, then arg must be an Array or Hash
      containing the values to be substituted. See Kernel::sprintf for
      details of the format string.
      
         "%05d" % 123                              #=> "00123"
         "%-5s: %016x" % [ "ID", self.object_id ]  #=> "ID   : 00002b054ec93168"
         "foo = %{foo}" % { :foo => 'bar' }        #=> "foo = bar"
      

      I guess that built-in version is fine for simple cases. You only need to use I18n.translate if you need its more advanced features like I18n.config.missing_interpolation_argument_handler.

  7. May 2020
    1. Related concepts in other fields are: In natural language, the coordinating conjunction "and". In programming languages, the short-circuit and control structure. In set theory, intersection. In predicate logic, universal quantification.

      Strictly speaking, are these examples of dualities (https://en.wikipedia.org/wiki/Duality_(mathematics))? Or can I only, at strongest, say they are analogous (a looser coonection)?

    1. 1. Disabling concrete extension update. That's what I wanted! You can do this by editing the extensions manifest json-file on Windows: C:\Users\<USERNAME>\AppData\Local\Google\Chrome\User Data\Default\Extensions\<EXTENSION-ID>\<VERSION>\manifest.json (find out the extensions ID by enabling developer mode in the extension settings page) on Ubuntu for Chromium: ${HOME}/.config/chromium/Default/Preferences In this file set "update_url" property to something invalid like "https://localhost" for example. For now according to given url updating of that extension is simply impossible.
    1. The consent provided by the user is saved in some cookies within the host page’s domain. By verifying the presence or the absence of these cookies you can determine whether the user has given their consent or not.

      But how do you check if they've given consent to a specific category??

    1. Make it clear that signing up is optional. Consent must be “freely given”; you may not coerce users into joining your mailing list or make it appear as if joining the list is mandatory. For this reason, you must make it clear that signing up is optional. This is especially relevant in cases where you offer free white-papers (or e-books) for download. While the user’s email address is required for the delivery of the service, signing up for your newsletter is not. In such a case, you must not make it appear as if signing-up to the newsletter list mandatory and must make it clear that it is optional.

      Question (answer below)

      Are they saying that it's not allowed to make signing up for a mailing list a precondition/requirement for anything? This was surprising to me.

      So if you have a newsletter sign-up page that sends a digital bonus gift (like an e-book) to new subscribers, are required to completely change/repurpose your "newsletter sign-up page" into a "download e-book page" (that has an optional checkbox to also sign up for the newsletter, if you want)? That seems dumb to me, since it requires completely reversing the purpose of the page — which was, in my mind, primarily about signing up for the newsletter, with a bonus (an essentially optional one) thrown in for those who do so. Are you required to either repurpose it like that or remove the free bonus offer that would be sent to new subscribers?

      The irony of this is that it requires websites that have a newsletter sign-up page like that to change it into a "newsletter sign-up page" where the newsletter sign-up part is optional. Which make you look kind of stupid, making a page that claims to be one thing but doesn't necessarily do what it says it's for.

      Does this mean, in effect, that you may not lawfully provide any sort of incentive or reward for signing up for something (like a mailing list)? As long as it's very clear that some action is required before delivery of some thing, I don't see why this sort of thing should not be permitted? Would this fall under contract law? And as such, wouldn't such a contract be allowed and valid? Are mailing lists a special class of [service] that has special requirements like this? Or is it part of a broader category to which this requirement applies more generally?

      Why is requiring the user to provide an email address before they can download a digital reward allowed but not requiring signing up to a mailing list? Why isn't it required that even the email address be optional to provide? (To answer my own question, probably because it's allowed to allow a user to request a specific thing to be sent via email, and an email address is required in order to fulfill that request. But...) It seems that the website could just provide a direct link to download it via HTTP/FTP/etc. as an option for users that chose not to provide an email address. (But should they be required to provide that option anytime they / just because they provide the option to have the same thing delivered via email?)

      Answer

      Looks like my question was answered below:

      Explicit Form (where the purpose of the sign-up mechanism is unequivocal). So for example, in a scenario where your site has a pop-up window that invites users to sign up to your newsletter using a clear phrase such as: “Subscribe to our newsletter for access to discount vouchers and product updates!“, the affirmative action that the user performs by typing in their email address would be considered valid consent.

      So the case I described, where it is made very clear that the incentive that is offered is conditional on subscribing, is listed as an exception to the general rule. That's good; it should be allowed.

    1. A real-world example of this would be an e-commerce site that allows users to “hold” items in their cart while they’re using the site or for the duration of a session. In this scenario, the technical cookies are both necessary for the functioning of the purchasing service and are explicitly requested by the user when they indicate that they would like to add the item to the cart. Do note, however, that these session-based technical cookies are not tracking cookies.

      I'm not sure I agree with this:

      [the technical cookies] are explicitly requested by the user when they indicate that they would like to add the item to the cart.

      The only thing they requested was that the item be held in a cart for them. They didn't explicitly request that cookies be used to store information about items in the cart. They most likely don't understand all of the options for how to store data like this, and certainly wouldn't know or expect specifically that cookies be used for this.

      In fact, localStorage could be used instead. If it's a single-page app, then even that would be necessary; it could all be kept in page-local variables until they checked out (all on the same page); such that reloading the page would cause the cart data held in those variables to be lost.

  8. Apr 2020
    1. Chrome first sends an encrypted, 3-byte hash of your username to Google, where it is compared to Google's list of compromised usernames. If there's a match, your local computer is sent a database of every potentially matching username and password in the bad credentials list

      Why do they only send password matches if username also matches?? A password should be deemed compromised and never used again if the password is found in a breach/paste anywhere, even if in connection with a different username/email.

  9. Mar 2020
    1. Instead of re-opening Ruby classes like that (I get involuntary twitches), for our little exercise we are going to invent another name

      IMHO, re-opening classes is okay. Certainly better than duplicating an entire core Ruby class and giving it a silly, less-meaningful name. (Though I'm not sure he actually intended people to use Lax instead of Lazy. I think he was just showing how easy it is to implement Lazy from scratch in Ruby.)

  10. Feb 2020
    1. Mais qu’est-ce donc que je suis ? une chose qui pense. Qu’est-ce qu’une chose qui pense ? c’est une chose qui doute, qui entend, qui conçoit, qui affirme, qui nie, qui veut, qui ne veut pas, qui imagine aussi, et qui sent.

      The fact that thinking is the production of a human being derives from the necessity of knowing what an human being is. Descartes wants to answer the question: who am I. Thus he takes what seems to be the more material and certain thing: thinking. Then he says: I am something who thinks. But actually this is a paralogism.

  11. Jan 2020
  12. Nov 2019
    1. This book is current from 2015 and is one stop shopping for technology integration in schools. Integrations and Blooms taxonomy theory, ISTE standards, pathways (yes, it is still a slow process), understanding about classroom set up when using technology and learning theories, online, web 2.0, teacher resources, multilingual tools, different screens, digital cameras, and COPPA, Privacy, and Copyright laws. If you are looking for a job in technology integration in schools this is a must read and resource manual. rating 10/10

    1. This is one of my favorite articles about creating a faculty boot-camp for the adoption of technology in higher education. The article brings out the barriers and anxiety for educators in using techonology in the classroom. In addition, you learn how to incorporate learning theories in adult learner engagement. The boot-camp is three day's, follows "Knowles principles of adult learning," and included research, using online tools, and putting it all together. What is it? At the end they educators create an online course that they will use the following year! 9/10

    1. This article presents how to build a technology learning community in support of three rural schools.It incorporates teacher development, and uses many important strategies in understanding success. I would use this article as reference for conducting a study to understand outcomes. The used processes include: Stages of Adoption Inventory classroom observations, the Questionnaire for Technology Integration, interviews, STAR evaluations surveys, teacher survey perceptions study on the impact of the project on student achievement, and force field analysis. Using professional learning communities is imperative in professional development, culture, and productivity. This article unfolds in detail a plan and the results, which could be adopted as a success for creating professional learning communities. Ratings 10/10

  13. Oct 2019
    1. fighting—with her parents

      I hate this feeling. Its a feeling you cannot replace. I, myself use to fight with my parents all the time and it wasn't pleasant. I don't think fighting with anyone/parents will solve anything.

    1. “To measure the head, the height, etc., does not indeed mean that we are establishing a system of pedagogy, but it indicates the road which we may follow to arrive at such a system, since if we are to educate an individual, we must have a definite and direct knowledge of him.”

      This is obviously done incorrectly in schools nowadays, referring to the large class sizes and common core putting restrictions on mostly everything. This raises the question, though, does homeschooling produce a better pedagogy? Or is it dependent on the specific educator?

  14. Sep 2019
  15. Aug 2019
    1. One of these species was the aurochs, a grazing animal like a buffalo that stood about six feet tall at the shoulder. The wild aurochs is now extinct. Although at first it was probably hunted for its meat, aurochs were different from other prey animals. Aurochs were a social species and some would accept humans as the leaders of their herds. The aurochs could be bred in captivity, and they gradually lost their fear of people and allowed themselves to be herded. Over time, in exchange for prime grazing lands and protection from predators, aurochs even allowed themselves to be milked. After hundreds of generations, the wild aurochs became domestic milk-cows.

      I find this section particularly interesting considering I come from a agricultural background. to look at the larger farming operations we see today and how we have evolved from using animals to survive and feed small groups of people to mass production from larger farms to feeding large quantities of people.

    1. Last, we were after something that was happening at x=1x=1x = 1 and we couldn’t actually plug x=1x=1x = 1 into our formula for the slope. Despite this limitation we were able to determine some information about what was happening at x=1x=1x = 1 simply by looking at what was happening around x=1x=1x = 1. This is more important than you might at first realize and we will be discussing this point in detail in later sections.

      This reminds me of the exercise we had this morning in class.

  16. May 2019
    1. daß nämlich ein irrendes Gewissen ein Unding sei. Denn in dem objektiven Urteile, ob etwas Pflicht sei oder nicht, kann man wohl bisweilen irren; aber im subjektiven, ob ich es mit meiner praktischen (hier richtenden) Vernunft zum Behuf jenes Urteils verglichen habe, kann ich nicht irren, weil ich alsdann praktisch gar nicht geurteilt haben würde;

      Irgendwie störe ich mich daran. Mir fällt zwar kein konkretes, dies wiederlegendes Beispiel ein, aber das mag ja einer anderen vielleicht anders gehen. Zumindest nehme ich aber schon an, dass sich eine Gewissensverirrung passieren kann, und bin unschlüssig beziehunsgweese unverständig, was Kants Begründung gegen diese angeht. Vielleicht verstehe ich aber auch seinen Begriff vollkommen falsch.

  17. Apr 2019
    1. ​Technology is in constant motion. If we try to ignore the advances being made the world will move forward without us. Instead of trying to escape change, there needs to be an effort to incorporate technology into every aspect of our lives in the most beneficial way possible. If we look at the ways technology can improve our lives, we can see that technology specifically smartphones, have brought more benefits than harm to the academic and social aspects of teenagers lives, which is important because there is a constant pressure to move away from smart devices from older generations. The first aspect people tend to focus on is the effect that technology has on the academic life of a teen. Smartphones and other smart devices are a crucial part of interactive learning in a classroom and can be used as a tool in increasing student interest in a topic. For example, a popular interactive website, Kahoot, is used in many classrooms because it forces students to participate in the online quiz, while teachers can gauge how their students are doing in the class. Furthermore, these interactive tools are crucial for students that thrive under visual learning, since they can directly interact with the material. This can be extended to students with learning disabilities, such as Down Syndrome and Autism,​ research has shown that using specialized and interactive apps on a smart device aids learning more effectively than technology free learning. Picture Picture Another fear regarding technology is the impact it has on the social lives of young adults, but the benefits technology has brought to socializing outweighs any possible consequences. The obvious advantage smartphones have brought to social lives is the ability to easily communicate with people; with social media, texting, and calling all in one portable box there is no longer a struggle to be in contact with family and friends even if they are not in your area. Social media can also be used for much more In recent years, social media has been a key platform in spreading platforms and movements for social change. Because social media websites lower the barrier for communicating to large groups of people, it has been much easier to spread ideas of change across states, countries, or the world. For example, after Hurricane Sandy tore apart the northeastern United States, a movement called "Occupy Sandy" in which people gathered to provide relief for the areas affected was promoted and organized through social media. Other movements that have been possible because of social media include #MeToo, March for Our Lives, #BlackLivesMatter, and the 2017 Women's March. ​

  18. Feb 2019
  19. Jan 2019
    1. If performativity is linked not only to the formation of the subject butalso to the production of the matter of bodies,

      Dr. Rivers, please freaking help.

      Am I reading Barad right? Is she saying here "If not only the internal workings of the mind of the subject and the subjects actions are shaped by performativity, but also the physical compilation of the universe, then it is all the more important that we understand performativity and how it causes this shaping of the physical world."

  20. Nov 2018
    1. By 2007, SHM had launched Project BOOST (Better Outcomes by Optimizing Safe Transitions), an award-winning mentored-implementation program to reduce LOS, adverse events, and unnecessary 30-day readmissions. Other mentored-implementation programs followed. The Glycemic Control Mentored Implementation (GCMI) program focuses on preventing hypoglycemia, while the Venous Thromboembolism Prevention Collaborative (VTE PC) seeks to give practical assistance on how to reduce blood clots via a VTE prevention program

      Other SHM Mentored Implementation programs -

      • Atul Gawande
      • I-PASS
      • PFC I-PASS Link this to
      • Dissemination and implementation of research findings
      • Twenty years since to err is human
  21. Oct 2018
  22. Jul 2018
    1. “I don’t feel badly at all,” she said. “I’m doing this with such a big heart, dignity, precision and research. I waited a long time to find the right way to make this work. I don’t see colour; to me, it doesn’t exist, physically or in music.

  23. course-computational-literary-analysis.netlify.com course-computational-literary-analysis.netlify.com
    1. “I wish to God the Diamond had never found its way into this house!” I broke out.

      "I" is tired of the issues about the diamond , which influenced every one. Every one in the house become worried, upset and serious because of the diamond. Especially for"I", as a holder of the house: a old father and husband.

  24. Mar 2018
    1. En esta tesis se expone la problemática existente y una solución propuesta por un prototipo, del cual se especifíca todo lo necesario para su construcción, además de los principios que conlleva el funcionamiento adecuado del propio horno solar, Las condiciones a las cuales se llevaron las pruebas de calidad del mismo deberían de ser en ambientes menos controlados, puesto que al aplicarlo en un hogar, hay muchas variables que no pueden ser controladas que en esta tesis si se toman en cuenta.

  25. Feb 2018
  26. Dec 2017
    1. Irwin Consulting Services Review - Hvordan sikre husholdningenes sikkerhet i løpet av høytiden

      Mange av oss ser virkelig frem til høytiden fordi det er den tiden da folk er flittig i å fylle husene sine med ferie dekorasjoner, forberede gaver, søke på nettet for mer deilige oppskrifter, og mye mer aktiviteter knyttet til denne sesongen . Det er virkelig den tiden av året for nytelse, deling, gi og kjærlig sammen med familie og venner.

      Men til tross for alle de positive tingene vi venter til denne sesongen, kan ulykker fortsatt skje. Denne sesongen inneholder også utfordringen av det kalde været. Og fordi folk ønsker å oppleve mer varme, andre noen ganger misbruke ovner og elektriske tepper og forårsake ulykker på varme ildsteder. Irwin Consulting Services, et konsulentfirma som er forpliktet til offentlig sikkerhet, utarbeidet noen viktige tanker under som kan hjelpe deg å opprettholde sikkerheten til hele familien i løpet av denne høytiden.

      Det er nødvendig å utøve riktig omsorg og forsiktighet i løpet av denne sesongen for å unngå kjøkken branner, elektriske branner og branner forårsaket av brennbare gjenstander plassert for nær varme kilder. Du kan forhindre at kjøkken branner ved å være fokusert og forsiktig når du koker. Cooking krever konstant oppmerksomhet så ikke la noe distrahere deg mens du forbereder mat til familien for å unngå ulykker. Hold alt i orden og ikke koker en masse retter på samme tid siden det kan føre til uorden. Aldri ta med utendørs griller i hjemmet ditt fordi det kan være svært farlig.

      Live juletrær var ofte valget for mange husholdninger fordi det gir en frisk følelse og selvfølgelig en fortryllende utseende, men dette kan være den største brannen fare i et hjem. Oppbevar den vannet hver dag og sikre at den kan absorbere vann opp til bagasjerommet. Dekorative lysene på treet må være merket for innendørs bruk og ble godkjent for sikker bruk gjennom en UL-liste. Som sagt tidligere, brann ulykker kan være en mulighet med denne type treet, så sørg for å installere den på et sted borte fra ildsteder og rom varmeovner. Lag en klar sti som fører til utgangsdører også. Ikke sett levende stearinlys på levende trær for å hindre tenning av en brann. Irwin konsulenttjenester vil også gjerne at du skal gjøre det til en vane å slå av og koble fra dekorative lysene når familien din går utenfor eller går til sengs.

      Barn bør ikke også leke med dekorative stearinlys, så så mye som mulig sette de på steder som er utenfor rekkevidde for små barn. Organisere dekorative lys bør gjøres med en forsiktig prosess for å sikre en skikkelig elektrisk kabling. I stedet for spiker, hang dekorative lys med plast klipp for å hindre ulykker av neglene gjennomtrengende gjennom ledninger og resultere i shorts. Sjekk vilkårene for hver streng med wire og bekrefte om alle er trygge å bruke for å unngå overbelastning og feil ledninger. Du må ikke plugge en skjøteledning til en annen skjøteledning fordi dette kan føre til spenningsfall og overopphetes, så vær ekstra forsiktig i bruk av slike ledninger. Både innendørs og utendørs lightings er mye tryggere hvis tilkoblet gjennom grenuttak. Andre viktige ting å huske inkluderer å sørge for at røyk alarmer i huset var i god stand og fungerer, og at brannslukkingsapparater var i lett å nå steder. Det er også anbefalt å kjøpe værvarsling radioer så anser det som well.

      Ikke glem å sette en rist eller skjermen foran ildstedet og se til at skorsteinen flue var riktig rengjort. Unngå å sette strømper og andre ferie dekorasjoner nær en tent ildsted. Juletreet og haugen av gaver bør samles på ett trygt sted som er borte fra ildstedet.

      Gjør skape en god Escape plan en prioritet også, og når du er ferdig med det, diskutere det med familien din, og hvis du skal ha mange besøkende denne høytiden, kort det til dem. Stien som fører til dørene bør ikke kompileres med store møbler og dekorasjoner for å unngå hindring og blokkering i tilfelle kriser. For å garantere en trygg bruk av varme i huset ditt, sørg for at gass linjene ble sjekket av fagfolk. Brannslukkingsapparater skal være tilgjengelig i hjemmet ditt, og må lades. Røyk alarmer og karbonmonoksid detektorer var også en nødvendighet for å sikre sikkerheten til hele familien. Velg plass varmeovner med tip-over brytere og legg dem på et trygt sted uten brennbart materiale i nærheten av den. Du må ikke bringe utendørs varmeovner inne for innendørs oppvarming; materialer ment for utenfor bruk bør forbli der.

      Irwin Consulting Services ville at du skulle tilbringe høytiden med venner og kjære med et stort smil på ansiktet og fred i ditt hjerte. Nyt denne sesongen uten bekymringer i å holde hele familien trygt ved å gjøre riktige forberedelser og følge instruksjonene fra fagfolk og lokale myndigheter.

    1. Still at a starting point, we have neither ‘advanced’ nor remained unmoved.

      The cover of Ken Macrorie's textbook, The I-Search Paper, has a moebius strip on it, reflecting this sentiment nicely.<br>

      But the conceit of the moebius strip extends from the back cover as well

      So, you start reading this book on the back cover, nice twist, just like in a moebius strip. You work through the text by doing. Then when you are done, you get to the end and out the back of the book you go onto the back cover, to enter again. Escher would approve. That is what I see happening here. In the end this process serves the product, the text that is produced for anyone concerned.

  27. Nov 2017
    1. Law of Nature & Nations

      When I saw these two ideas of nature and nations put together in this document I was unsure about what the founders meant. The laws that I immediately associate with nature are laws of physics, biology, or even philosophy; whereas, the laws I associate with nations are more related to international relations and political thought and philosophy. My best speculation of the meaning of this branch of learning is that the founders wanted people to investigate the natural reasons for why the U.S. became a nation. The country was so newly created when UVA was being founded that I think that understanding the justifications for why the U.S. became a nation would be important for students who were going to be future leaders to understand. Understanding how other nations work and develop may also be useful for the future leaders of America to know considering how much the U.S. interacted with other countries back then.

  28. Oct 2017
  29. Sep 2017
    1. This is the story of 16th century Europe, and the political earthquake that was protestantism. The overarching historical narrative unfolds around the lives of fictional characters who might have lived in this historic period.

      Follett's literary reenactment explores the intricacies of the Protestant Reformation through a cast of strategically diverse characters, whose stories span across multiple continents, nations, and cities. Each character is an important harbinger of larger historical trends. Within the masterfully established geo-political reality, each of their decisions serve to gradually reveal their distinct personalities and temperaments, belief systems and ideologies, and cultural identities.

    1. How can we draw many different bootstrap samples from the original sample if each bootstrap sample must contain the same number of cases as the original sample? If we allow every case in the original sample to be sampled only once, each bootstrap sample contains all cases of the original sample, so it is an exact copy of the original sample. Thus, we cannot create different bootstrap samples.

      So, bootstrapping without replacement doesn't allow for ANY bootstrapping regardless of sample size?

  30. Jul 2017
  31. May 2017
    1. Bregoli’s angry, indignant face is the background of the website, making all of the below images even more aggressive. Somehow, this helps to sell them.

      If this is what helps sell her merchandise, then I have to ask if this is actually the person that she is or if its just a front. A big part of business, as we've learned this term, is shaping your products and sales pitch to what the people want, rather than what you want to produce.

  32. Apr 2017
    1. Minority rights are essential in a democratic, pluralistic polity because as Franklin Roosevelt reminded us, “no democracy can long survive which does not accept as fundamental to its very existence the recognition of the rights of minorities”
  33. Feb 2017
    1. It may be conceived by some that the dcvoced Christian female, who is willing thus to be led by the Spirit into paths of usefulness, may Jose, in some degree, lhose lovely and becoming lraits of character, which we admire in the female sex.

      Some might argue that a woman loses her character the more she follows the Holy Spirit, yet Palmer insists that nothing could be further form the truth. Religion, she argues, actually strengthens a lady's resolve.

  34. Jan 2017
  35. Nov 2016
  36. Sep 2016
    1. Public education and engagement could also serve to bring more awareness to the fact that the built environment often excludes. This Article seeks to serve that end by offering examples of architectural exclusion with the hope that citizens,

      And its one of the ways you could approach your assignments.

    1. We have all seized the white perimeter as our ownand reached for a pen if only to showwe did not just laze in an armchair turning pages; we pressed a thought into the wayside,planted an impression along the verge.

      What does this stanza mean to you?

  37. Jun 2016
  38. May 2016
    1. Scratching around...

      This is a feldgang, but with a twist. I see you taking on different identities, passing on to the next one some "baton" and then carrying on the conversation within that new set of bones. Or maybe it is a strawberry runner putting down roots and making a rhizomatic mat and carrying on, passing on hyphae and rooting ever on. All I know for sure is that I want to draw a random walking line down your post's page. I don't know why, but that is what I see in my crystal self.

  39. Apr 2016
  40. Mar 2016
  41. Jan 2016
  42. Sep 2013
    1. physical training for the body, of which gymnastics is a part, and, for the mind, philosophy, which I am going to explain. These are twin arts—parallel and complementary—by which their masters prepare the mind to become more intelligent and the body to become more serviceable, not separating sharply the two kinds of education, but using similar methods of instruction, exercise, and other forms of discipline.

      Nice