5,079 Matching Annotations
  1. Sep 2021
    1. You exhaust me with your foolishness and reward my efforts with nothing but pain, do you understand me?"

      does she mean im sick of you not understanding what i mean but understand what i say ?

    1. The classic SPA example is a to-do list. But, you know what? I don't like to-do lists. They make me think about all the things I have to do, many of which I don't want to do.So why don't we make a To-Don't List app? That way we can list all the things we're not going to do. Ever.
    1. Code that is needed to create the output and the output itself is hard to read because of all the workarounds we have to use, especially around shadowed variables and control flow
    1. Notice that the plugin is placed in the resolve.plugins section of the configuration. tsconfig-paths-webpack-plugin is a resolve plugin and should only be placed in this part of the configuration. Don't confuse this with the plugins array at the root of the webpack configuration object.
    1. Let's not get over-excited. Actually, we're only part-way there; you can compile this code with the TypeScript compiler.... But is that enough?I bundle my TypeScript with ts-loader and webpack. If I try and use my new exciting import statement above with my build system then disappointment is in my future. webpack will be all like "import whuuuuuuuut?"You see, webpack doesn't know what we told the TypeScript compiler in the tsconfig.json.
    1. Update API usage of the view helpers by changing javascript_packs_with_chunks_tag and stylesheet_packs_with_chunks_tag to javascript_pack_tag and stylesheet_pack_tag. Ensure that your layouts and views will only have at most one call to javascript_pack_tag or stylesheet_pack_tag. You can now pass multiple bundles to these view helper methods.

      Good move. Rather than having 2 different methods, and requiring people to "go out of their way" to "opt in" to using chunks by using the longer-named javascript_packs_with_chunks_tag, they changed it to just use chunks by default, out of the box.

      Now they don't need 2 similar but separate methods that do nearly the same, which makes things simpler and easier to understand (no longer have to stop and ask oneself, which one should I use? what's the difference?).

      You can't get it "wrong" now because there's only one option.

      And by switching that method to use the shorter name, it makes it clearer that that is the usual/common/recommended way to go.

    2. Webpacker used to configure Webpack indirectly, which lead to a complicated secondary configuration process. This was done in order to provide default configurations for the most popular frameworks, but ended up creating more complexity than it cured. So now Webpacker delegates all configuration directly to Webpack's default configuration setup.

      more trouble than it's worth

      • creating more complexity than it cured
    1. liberty of conscience

      "Liberty of conscience" is a phrase Roger Williams uses in a religious context to denote the freedom for one to follow his or her religious or ethical beliefs. It is an idea that refers to conscious-based thought and individualism. Each person has the right to their own conscience. It is rooted in the idea that all people are created equal and that no culture is better than the other.

      This idea is strongly tied to: freedom from coercion of conscience (own thoughts and ideas), equality of rights, respect and toleration. It is a fundamental element of what has come to be the "American idea of religious liberty". Williams spoke of liberty of conscience in reference to a religious sense. This concept of individualism and free belief was later extrapolated in a general sense. He believed that government involvement ended when it came to divine beliefs.

      Citation: Eberle, Edward J. "Roger Williams on Liberty of Conscience." Roger Williams University Law Review: vol 10:, iss: 2, article 2, pp. 288-311. http://docs.rwu.edu/rwu_LR/vol10/iss2/2. Accessed 8 Sept. 2021.

    1. Jesus Christ developed in all areas of His life—spiritually (favor with God), socially (favor with man), physically (stature), and intellectually (wisdom)—and so can you!

      headings to tag / organize information under generally. Refining / honing tags with further descriptors would be ideal.

      i.e.: Spiritual / Why i.e.: INTELLECTUAL / MEDICINE / PRACTICE / INTEGUMENTARY

    1. Quora+ is a subscription to the best of Quora.Access great writing, straight-from-the-source knowledge, and stories you can’t find anywhere else while supporting creators who matter to you.

      Another example of a service that tries to entice users with a free service (and writers with a financial incentive) and then once they achieve enough popularity, they make some of "their" content "premium".

      (YouTube Premium, ...)

      This is why we should distrust and avoid using "free" services.

    1. The question is similar but its in a Rails context. The solutions would answer my question, but I'm almost certain that he could probably leverage Arel to solve his problem. The question I posted was designed purely as a Ruby question so that it was easier to search for. You might want to suggest an edit of the title of his question because it didn't show up when I searched for a solution to my problem.
    1. The number of TH-immunoreactive (TH-IR) neurons decreased with long-day exposure and increased with short-day exposure in relation to control

      A decreased amount of TH-IR neurons means that less dopamine is being produced; this was observed when the rats were given long-day exposure (19 hours of light, 5 hours of darkness). Short-day exposure (5 hours of light, 19 hours of darkness) resulted in the number of TH-IR neurons increasing, a sign of greater dopamine production. These results were all relative to the control group, rats that experienced a balanced-day with 12 hours of light and 12 hours of darkness.

    2. Genetic programs establish initial expression patterns of neurotransmitters in different classes of neurons (1–3), and activity-dependent neurotransmitter respecification modifies them during development, either adding or switching transmitters (4–9). It is unknown, however, whether sensory stimuli promote transmitter switching in addition to other neuroplastic changes (10) in the adult brain.

      It is known that the young developing brain is able to add or switch the transmitters that their neurons express. The question guiding this research is whether sensory stimuli can cause the already mature (adult) brain to experience changes in the types of transmitters that are produced by their neurons.

    1. Three days before Labor Day, on Friday, September 2, 1921, the U.S. Army intervened on the side of coal companies against striking coal miners, marking the end of the Battle of Blair Mountain in southern West Virginia. The battle was the climax of two decades of low-intensity warfare across the coalfields of Appalachia, as the West Virginia miners sought to unionize and mining companies used violent tactics to undermine their efforts. The struggle turned deadly.
    1. ☞(excerpts) Beal, Peter. Dictionary of English Manuscript Terminology: 1450 to 2000.Oxford, GB: OUP Oxford, 2007. ProQuest ebrary. Web. 19 December 2016.☞Lesser, Zachary and Peter Stallybrass. “The First Literary Hamlet and the Commonplacing of Professional Plays.” Shakespeare Quarterly, (2008), 371–420.☞Smyth, Adam. “Commonplace Book Culture: A List of Sixteen Traits.” Women and Writing, c.1340-c.1650: The Domestication of Print Culture. Manuscript Culture in the British Isles. Eds. Lawrence-Mathers, A. and Hardman, P. Rochester, U.S.: Boydell and Brewer, 90-110.☞Summers, David. “—the proverb is something musty: The Commonplace and Epistemic Crisis in Hamlet.”Hamlet Studies 20.1-2(1998): 9-34.

      sources to add to my reading list, if not already there

  2. Aug 2021
    1. All answers here which mention scrollHeight/scrollWidth should be adjusted a bit to take body margins into account. Browsers apply default nonzero margins for documents' body element (and it's also applicable to content loaded into frames). The working solution I found is to add this: parseInt(window.getComputedStyle(this.contentDocument.body).margin.
    1. I always had to set the height of them literally almost 50% taller than the content itself to accommodate for the innards growing when the form was submitted with errors (the error messaging expanded the height). If I didn’t, the submit button would get cut off making the form un-submittable.
    1. With JavaScript, you can actually calculate the width of the scrollbar and whether it’s visible by comparing two properties—window.innerWidth and document.body.clientWidth. If these are equal, the scrollbar isn’t visible. If these are different, we can subtract the body width from the window width to get the width of the scrollbar:const scrollbarWidth = window.innerWidth - document.body.clientWidthWe’ll want to perform this both on page load and on resize, in case someone resizes the window vertically and changes the overflow. Then, once we have the scrollbar width, we can assign it as a CSS variable:document.body.setProperty("--scrollbarWidth", `${scrollbarWidth}px`)

      missing feature: vw/vh can't be used "directly" because doesn't account for scrollbars

    1. Always use the word ‘Africa’ or ‘Darkness’ or ‘Safari’ in your title.

      I love the style in which this is written. While it appears to be a "how-to" guide, the author is doing nothing more than addressing the stereotypes that surround Africa. Turning this piece into a " how NOT to " guide.

    1. For several examples of how commonplacing gave rise to filing systems during the sixteenth and seventeenth centuries,see Malcolm, ‘Thomas Harrison and his “Ark of Studies”’.
    2. The impactof such practices upon eighteenth-century visual and material culture is recounted in te Heesen, The World in a Box.

      This reference appears to show some of the historical link between the method of loci in rhetoric with that of commonplacing ideas within books. The fact that the word box may suggest some relational link between commonplacing and zettelkasten.

    3. West, Theatres and Encyclopaedias, ch. 2; Garberson ‘Libraries, Memory and the Spaceof Knowledge’. For a multicultural introduction to the architectural imagery of early modern memory practices, seeSpence, The Memory Palace of Matteo Ricci.
    4. In recent decades there have been a number of stud-ies that have shown how humanist approaches to commonplacing not only evolved in tandemwith attempts to coherently arrange naturaliain studioli, wunderkammernand museums, butalso facilitated the conceptual development of natural history. Key works that led up to this rein-terpretation were Walter Ong’s work on Ramus, Frances Yates’s history of the art of memory,Tony Grafton’s defence of humanistic textual practices and, crucially, Paolo Rossi’s argumentthat Francis Bacon used topical logic to organize his lists and tables.7Once the topical box wasopened, a number of seminal studies on commonplacing natural knowledge followed. Keyentries in this canon are works written by Ann Blair, Ann Moss, Jonathan Spence and HowardHotson.8

      Lots of references to add or read here.

    1. Media and the Mind: Art, Science and Notebooks as Paper Machines, 1700-1830 (Chicago: University of Chicago Press, 2022), 550 pp + 60 figures.

      I can't wait to read Media and the Mind: Art, Science and Notebooks as Paper Machines, 1700-1830 (Chicago: University of Chicago Press, 2022)!

      I see some bits on annotation hiding in here that may be of interest to @RemiKalir and @anterobot.

      If you need some additional eyeballs on it prior to publication, I'm happy to mark it up in exchange for the early look.

    1. Now consider we want to handle numbers in our known value set: const KNOWN_VALUES = Object.freeze(['a', 'b', 'c', 1, 2, 3]) function isKnownValue(input?: string | number) { return typeof(input) === 'string' && KNOWN_VALUES.includes(input) } Uh oh! This TypeScript compiles without errors, but it's not correct. Where as our original "naive" approach would have worked just fine. Why is that? Where is the breakdown here? It's because TypeScript's type system got in the way of the developer's initial intent. It caused us to change our code from what we intended to what it allowed. It was never the developer's intention to check that input was a string and a known value; the developer simply wanted to check whether input was a known value - but wasn't permitted to do so.
    1. In the vast majority of cases when I'm using prettier-ignore I'm only really looking to prevent it from breaking my code into new lines, whilst keeping its other transformations such as switching quotes and adding space between brackets. When ignoring single lines, fixing these formatting problems by hand is very manageable. With the ability to have Prettier ignore entire blocks of code I think the ability to specify what you want it to ignore is essential.
    2. This should be basic functionality.
    1. The Simplified Spelling Board of the early 1900s in the United States made gauge one of its targets in the early 1920s, urging the replacing of au with a to yield gage. From Simplified Spelling Board, Handbook of Simplified Spelling (1920): Principles Adopted Its [the Board's] recommendations, accordingly, have been based on the following principles : 1) When current usage offers a choice of spellings, to adopt the shortest and simplest. EXAMPLES : blest, not blessed ; catalog, not catalogue; center, not centre; check, not cheque or checque; gage, not gauge; gram, not gramme; honor, not honour; license, not licence; maneuver, not manoeuvre; mold, not mould; plow, not plough; quartet, not quartette; rime, not rhyme; tho, not though; traveler, not traveller.
    1. Zoom told its users that their video calls were end-to-end encrypted when actually they were protected by TLS encryption. Zoom generated and stored the keys to its users’ encrypted information on its servers rather than on its users’ devices, meaning anyone with access to those servers could monitor the unencrypted video and audio content of Zoom meetings. These servers are located around the world, often in countries where companies can be forced to share user data with law enforcement organizations. What’s worse is that, according to the most recent lawsuit, Zoom’s response made it clear that it “knew that it did not use the industry-accepted definition of E2E encryption and had made a conscious decision to use the term ‘end-to-end’ anyway”.
    1. How to Build a SaaS Startup in 10 Smart StepsAlina NechvolodE-Commerce & SaaS StrategistSaaSStartupHomeBlogEntrepreneurshipHow to Build a SaaS Startup in 10 Smart StepsJul 30, 202018 min readSaaS solutions are noted for their flexibility. This quality serves as a key reason why 37% of businesses switch to cloud-based systems. Given their growing popularity, the idea of launching a company offering SaaS products seems very lucrative. So, how to build a SaaS startup? In this article, we will answer this question, and guide you through the main stages of starting a SaaS business. You will learn to make market research and write a lean plan. Also, we will discuss the most suitable pricing models and effective marketing strategies. Finally, you will know how to track the progress of your startup.

      SaaS solutions are noted for their flexibility. This quality serves as a key reason why 37% of businesses switch to cloud-based systems. Given their growing popularity, the idea of launching a company offering SaaS products seems very lucrative.

      So, how to build a SaaS startup? In this article, we will answer this question, and guide you through the main stages of starting a SaaS business.

      You will learn to make market research and write a lean plan. Also, we will discuss the most suitable pricing models and effective marketing strategies.

      Finally, you will know how to track the progress of your startup.

    1. Due to the paucity of research and significant heterogeneity in studies, definitive conclusions about the effects of these micronutrients on HRV cannot be made at this time. However, there is accumulating evidence suggesting deficiencies in vitamins D and B-12 are associated with reduced HRV, and zinc supplementation during pregnancy can have positive effects on HRV in offspring up until the age of 5 y.

      Odd they don't mention vitamin E or other antioxidants. They do cite that placebo-controlled vitamin E study in diabetics. I ought to see what other important information they've left out of the abstract.

    1. How to Make a React Progressive Web Application (PWA)Eugene VolkovFrontend DeveloperKate KikidzhanCloud & SaaS Product ResearcherReactJavaScriptPWAHomeBlogDevelopmentHow to Make a React Progressive Web Application (PWA)Oct 7, 202021 min readThe early bird catches the worm. But the situation was not so favourable back in 2007 when Steve Jobs proposed the idea of web applications to be the model for iPhone Apps. Back then, the tech community was not yet ready to bring a huge interest in web apps. But since 2015, tech giants like Google and Microsoft have been preparing the tech ground for progressive web apps (or simply – PWAs). And now, PWA became a must-have technology for both giant corporations and small startups. Twitter, Starbucks, Google, and Aliexpress use progressive web apps to boost their online presence. At Codica, we have been helping our customers to develop their businesses by building robust PWA for our customers since 2015. That is why we have created this comprehensive guide on how to create a PWA with React. Also, you will see the most prominent progressive web app examples.

      The early bird catches the worm. But the situation was not so favourable back in 2007 when Steve Jobs proposed the idea of web applications to be the model for iPhone Apps. Back then, the tech community was not yet ready to bring a huge interest in web apps.

      But since 2015, tech giants like Google and Microsoft have been preparing the tech ground for progressive web apps (or simply – PWAs). And now, PWA became a must-have technology for both giant corporations and small startups. Twitter, Starbucks, Google, and Aliexpress use progressive web apps to boost their online presence.

      At Codica, we have been helping our customers to develop their businesses by building robust PWA for our customers since 2015. That is why we have created this comprehensive guide on how to create a PWA with React. Also, you will see the most prominent progressive web app examples.

    1. 7 Top Strategies To Attract Sellers to Your Peer to Peer MarketplaceDaniil TorkutDeveloper AdvocateMarketplaceHomeBlogEntrepreneurship7 Top Strategies To Attract Sellers to Your Peer to Peer MarketplaceJun 4, 20208 min readUser acquisition is one of the most important aspects to make your marketplace website successful. When you attract sellers and buyers to your platform, you start making a profit and improve your market presence. Our previous article covered the topic of attracting buyers for a peer to peer marketplace. We have considered 4 simple techniques that will help you solve the chicken and egg problem even before you launch your marketplace. These are a referral system, landing page, free offers, and constraints that can help you attract early buyers. Today we want to discuss the second important aspect - acquisition of sellers. We prepared 7 quick ways to attract vendors to your peer to peer marketplace platform. This detailed guide will help you make your e-commerce website profitable and successful.

      User acquisition is one of the most important aspects to make your marketplace website successful. When you attract sellers and buyers to your platform, you start making a profit and improve your market presence.

      We prepared 7 quick ways to attract vendors to your peer to peer marketplace platform.

    1. How to Calculate the Cost to Build a SaaS App in 2021Dmitry ChekalinChief Executive OfficerAlina NechvolodE-Commerce & SaaS StrategistSaaSHomeBlogEntrepreneurshipHow to Calculate the Cost to Build a SaaS App in 2021Jan 6, 202114 min readHow much will it cost to build a SaaS app? If you decided to follow the latest trends and invest in SaaS development, this question is relevant more than ever. This blog post is written to help you clear up this matter. Here, we will cover in detail the main factors that define the final cost of building a SaaS product. They include the project scope and timeline, API integration, and the required functionality. Also, you will learn how the total cost of a completed software-as-a-service product changes depending on the chosen SaaS development service provider.

      How much will it cost to build a SaaS app? If you decided to follow the latest trends and invest in SaaS development, this question is relevant more than ever.

      This blog post is written to help you clear up this matter. Here, we will cover in detail the main factors that define the final cost of building a SaaS product. They include the project scope and timeline, API integration, and the required functionality.

      Also, you will learn how the total cost of a completed software-as-a-service product changes depending on the chosen SaaS development service provider.

    1. I'm going to need some significant time delving into and mining this treasure trove of references.

    Tags

    Annotators

    1. Using Boolean Search on LinkedInLast updated: July 6, 2018You can run a Boolean search on LinkedIn by combining keywords with operators like AND, NOT, and OR during your search.Here are some ways to use Boolean logic and construct your searches: Quoted searches: For an exact phrase, enclose the phrase in quotation marks. For example, type "product manager". You can also use quotation marks if you want to find someone with a multi-word title. LinkedIn search only supports standard, straight quotation marks ("). Other software or websites may use special symbols that our system does not recognize. Curly quotation marks (“), also known as smart quotes or typographer's quotes, aren't supported. In order to optimize overall site performance, stop words such as "by", "in", "with", etc. aren't used. NOT searches: Type the word NOT (capital letters) immediately before a search term to exclude it from your search results. This typically limits your search results. For example, "programmer NOT manager". OR searches: Type the word OR (capital letters) to see results that include one or more items in a list. This typically broadens your search results. For example, "sales OR marketing OR advertising”. AND searches: AND searches: Type the word AND (capital letters) to see results that include all items in a list. This typically limits your search results. For example, "accountant AND finance AND CPA".. Note: You don't need to use AND. If your search has two or more terms, you'll automatically see results that include all of them. Parenthetical searches - To do a complex search, you can combine terms using parentheses. For example, to find people who have "VP" in their profiles, but exclude "assistant to VP" or SVPs, type VP NOT (assistant OR SVP). When handling searches, the overall order to precedence is: Quotes [""] Parentheses [()] NOT AND OR Important: The + and - operators are not officially supported by LinkedIn. Using AND in place of + and NOT in place of - makes a query much easier to read and guarantees that we'll handle the search correctly. When using NOT, AND, or OR operators, you must type them in uppercase letters. We don't support wildcard "*" searches. Boolean search will work in the keyword field in Recruiter and Linkedin.com, and will work in the Company, title, and keyword field in Sales Navigator.

      Search operators on LinkedIn

    1. U.S. Senate Subcommittee on Communications, Technology, Innovation, and the Internet, "Optimizing for Engagement: Understanding the Use of Persuasive Technology on Internet Platforms," 25 June 2019, www.commerce.senate.gov/2019/6/optimizing-for-engagement-understanding-the-use-of-persuasive-technology-on-internet-platforms.

      Perhaps we need plurality in the areas for which social data are aggregated?

      What if we didn't optimize for engagement, but optimized for privacy, security, or other axes in the space?

    2. Francis Fukuyama et al., Middleware for Dominant Digital Platforms: A Technological Solution to a Threat to Democracy, Stanford Cyber Policy Center, 3, https://fsi-live.s3.us-west-1.amazonaws.com/s3fs-public/cpc-middleware_ff_v2.pdf.
  3. Jul 2021
    1. <small><cite class='h-cite via'> <span class='p-author h-card'>u/FluentFelicity </span> in (2) I found a gem : Zettelkasten (<time class='dt-published'>07/29/2021 22:10:56</time>)</cite></small>

    1. Finally, Real America has a strong nationalist character. Its attitude toward the rest of the world is isolationist, hostile to humanitarianism and international engagement, but ready to respond aggressively to any incursion against national interests.

      Humanitarianism and international engagement are definitely important, but their value is often made invisible to "Real America" or "middle America".

      How can this value be made more apparent? How could we account for it to make it easier to see?

      The issue is compounded when large corporations receive massive bailouts as it's an additional cost weighing down the system. Would humanitarianism and international engagement be easier to uphold if we left off corporate costs? Do most of the value of humanitarianism and international engagement redound to corporations as an additional value primarily to them rather than everyday people? Is their perceived problem that they're another method of privatizing profits to major corporations and elites and socializing the losses to the average person?

    1. Diels, H. and W. Kranz, Die Fragmente der Vorsokratiker. Zürich/Hildesheim 1964 The standard collection of the texts of and the doxography on Anaximander and the other presocratics.
  4. datatracker.ietf.org datatracker.ietf.org
    1. The WebSocket Protocol is designed on the principle that there should be minimal framing (the only framing that exists is to make the protocol frame-based instead of stream-based and to support a distinction between Unicode text and binary frames). It is expected that metadata would be layered on top of WebSocket by the application Fette & Melnikov Standards Track [Page 9] RFC 6455 The WebSocket Protocol December 2011 layer, in the same way that metadata is layered on top of TCP by the application layer (e.g., HTTP). Conceptually, WebSocket is really just a layer on top of TCP that does the following: o adds a web origin-based security model for browsers o adds an addressing and protocol naming mechanism to support multiple services on one port and multiple host names on one IP address o layers a framing mechanism on top of TCP to get back to the IP packet mechanism that TCP is built on, but without length limits o includes an additional closing handshake in-band that is designed to work in the presence of proxies and other intermediaries Other than that, WebSocket adds nothing. Basically it is intended to be as close to just exposing raw TCP to script as possible given the constraints of the Web. It's also designed in such a way that its servers can share a port with HTTP servers, by having its handshake be a valid HTTP Upgrade request. One could conceptually use other protocols to establish client-server messaging, but the intent of WebSockets is to provide a relatively simple protocol that can coexist with HTTP and deployed HTTP infrastructure (such as proxies) and that is as close to TCP as is safe for use with such infrastructure given security considerations, with targeted additions to simplify usage and keep simple things simple (such as the addition of message semantics).
    2. When an endpoint is to interpret a byte stream as UTF-8 but finds that the byte stream is not, in fact, a valid UTF-8 stream, that endpoint MUST _Fail the WebSocket Connection_. This rule applies both during the opening handshake and during subsequent data exchange.
    1. <small><cite class='h-cite via'> <span class='p-author h-card'>John Pavlus </span> in Melanie Mitchell Trains AI to Think With Analogies | Quanta Magazine (<time class='dt-published'>07/24/2021 17:19:52</time>)</cite></small>

    1. Crenshaw and her classmates asked 12 scholars of color to come to campus and lead discussions about Bell’s book Race, Racism, and American Law. With that, critical race theory began in earnest.
    1. was due to a form that was submitted (ALWAYS SET THAT TYPE-PROPERTY ON YOUR BUTTONS!) after my onclick-event fired, but before my request had any chance to be completed.
    1. Blogging about your work hits both of those marks. It also means that you have to translate your work from academese to language that non-academics will understand (i.e. jargon) and also foreground the relevance of your work. You have to tell people why your work is important and what it adds to the world.

      This is such an important point. Donald Trump did such an excellent job speaking at a level a lay person could understand when downplaying the seriousness of the Covid-19 virus thus undermining the scientific and medical community voices, that many Americans are refusing to vaccinate. This puts the world at risk for future variants that might be much worse than the ones we have now. More academics simplifying knowledge will help stem the tide of fake news, political propaganda and truly harmful misinformation.

    1. John Bowers, Elaine Sedenberg, and I have described how that might work, suggesting that libraries can again serve as semi-closed archives of both public and private censorial actions online. We can build what the Germans used to call a giftschrank, a “poison cabinet” containing dangerous works that nonetheless should be preserved and accessible in certain circumstances. (Art imitates life: There is a “restricted section” in Harry Potter’s universe, and an aptly named “poison room” in the television adaptation of The Magicians.)

      I love this idea of a poison cabinet or giftschrank.

      How might this work in an oral society? How would it be designed?

    1. The Swedish 18th-century naturalist Carolus (Carl) Linnaeus is habitually credited with laying the foundations of modern taxonomy through the invention of binominal nomenclature. However, another innovation of Linnaeus' has largely gone unnoticed. He seems to have been one of the first botanists to leave his herbarium unbound, keeping the sheets of dried plants separate and stacking them in a purpose built-cabinet. Understanding the significance of this seemingly mundane and simple invention opens a window onto the profound changes that natural history underwent in the 18th century.

    1. <small><cite class='h-cite via'> <span class='p-author h-card'>Alan Jacobs</span> in control and surrender, architecture and gardening – Snakes and Ladders (<time class='dt-published'>07/01/2021 09:42:40</time>)</cite></small>

    1. The relationship between Phillips — one of whose most famous works is A Humument, an ongoing-for-decades collage/manipulation/adaptation of a Victorian book — and Eno is a fascinating one in the history of aleatory or, as I prefer, emergent art.

      Humument sounds interesting, particularly the descriptions of collage/manipulation

      aleatory is a great word that one sees infrequently and all too randomly

    1. <small><cite class='h-cite via'> <span class='p-author h-card'>Alan Jacobs</span> in July Check-In · Buttondown (<time class='dt-published'>07/01/2021 09:19:13</time>)</cite></small>

      Idea of John Paul II's encyclical being a form of blogging in a different era. They're all essays in form, it's just about distribution...

  5. Jun 2021
    1. How to work hard with clearly defined, externally imposed goals?

      1. learn not to lie to yourself (i.e. avoid the truth) (e.g. procrastinate is a form of refusing to acknowledge the deadline)
      2. not to get distracted
      3. not to give up when things go wrong
    1. Apologies for digging up a closed thread, but it already contains some monorepo examples so feels like the best place to do it.
    1. npm install <folder>: Install the package in the directory as a symlink in the current project. Its dependencies will be installed before it's linked. If <folder> sits inside the root of your project, its dependencies may be hoisted to the top-level node_modules as they would for other types of dependencies.
    1. Giving peers permission to engage in dialogue about race and holding a lofty expectation that they will stay engaged in these conversations throughout the semester or year is the first of the four agreements for courageous conversation. While initially, some participants may be eager to enter into these conversations, our experience indicates that the more personal and thus risky these topics get, the more difficult it is for participants to stay committed and engaged." Singleton and Hays

    2. "In Colormute, Pollock(2004) makes specific suggestions for addressing the fear of talking about race: “In all conversations about race, I think, educators should be prepared to do three things:ask provocative questions, navigate predictable debates,and talkmore about talking”(p. 221, italics in original)"

    3. "Music education students enter universities from diverse backgrounds that include musical experiences in “subaltern” musical practices (rock bands, music theatre, hip hop, and other genres). After four years or so in the institutional environment, we send them out to the world somehow convinced that what they ought to be teaching is the Western canon."

    4. "Although in the United States it is common to use the term multiculturalism to refer to both liberal forms of multiculturalism and to describe critical multicultural pedagogies, in Canada, Great Britain, Australia, and other areas,anti-racism refers to those enactments of multiculturalism grounded in critical theory and pedagogy. The term anti-racism makes a greater distinction, in my opinion, between the liberal and critical paradigms of multiculturalism, and is one of the reasons I find the anti-racism literature useful for analyzing multiculturalism in music education."

    5. "Many North American music education programs exclude in vast numbers students who do not embody Euroamerican ideals. One way to begin making music education programs more socially just is to make them more inclusive. For that to happen, we need to develop programs that actively take the standpoint of the least advantaged, and work toward a common good that seeks to undermine hierarchies of advantage and disadvantage. And that, inturn, requires the ability to discuss race directly and meaningfully. Such discussions afford valuable opportunities to confront and evaluate the practical consequences of our actions as music educators. It is only through such conversations, Connell argues, that we come to understand “the real relationships and processes that generate advantage and disadvantage”(p. 125). Unfortunately, these are also conversations many white educators find uncomfortable and prefer to avoid."

    1. Different ways to prepend a line: (echo 'line to prepend';cat file)|sponge file sed -i '1iline to prepend' file # GNU sed -i '' $'1i\\\nline to prepend\n' file # BSD printf %s\\n 0a 'line to prepend' . w|ed -s file perl -pi -e 'print"line to prepend\n"if$.==1' file
    1. Oversharing. Crying, disclosing intimate details, and telling long (unrelated and/or unsolicited) stories about one’s personal life may indicate the lack of an essential social work skill: personal boundaries.

      Testing out the annotate feature. Student 1 will highlight sections according to the prompts, as shown HERE.

      For example: "This is me during interviews. I say too much and veer off topic."

    1. The first argument to shared_context (the shared group name) is superfluous. It feels a bit like "what's this argument for again?" (Note that you could still use it with include_context to include the group manually, but it's a bit odd to mix-and-match the approaches).
    1. <small><cite class='h-cite via'> <span class='p-author h-card'>Art Kavanagh </span> in note (<time class='dt-published'>06/16/2021 06:24:59</time>)</cite></small>

    1. Whether you agree or not, to me there's nothing in this world that is entirely apolitical - when there are people there is politics. You don't have to agree with my views, nor do I expect you to. Diversity and disagreement is what drives mankind forward.
    2. There are many projects that does not use the master branch as default. For example, Next.js uses the canary branch, the npm CLI and many more other projects uses stuff like prod, production, dev, develop, release, beta, head.
    3. In the context of git, the word "master" is not used in the same way as "master/slave". I've never known about branches referred to as "slaves" or anything similar.
    1. We should think about the number of simultaneous connections (peak and average) and the message rate/payload size. I think, the threshold to start thinking about AnyCable (instead of just Action Cable) is somewhere between 500 and 1000 connections on average or 5k-10k during peak hours.
      • number of simultaneous connections (peak and average)

      • the message rate/payload size.

    1. Thus, by adding system tests, we increase the maintenance costs for development and CI environments and introduce potential points of failures or instability: due to the complex setup, flakiness is the most common problem with end-to-end testing. And most of this flakiness comes from communication with a browser.
    1. This is why for a recent Angular+Rails project we chose to use a testing stack from the backend technology’s ecosystem for e2e testing.
    2. There are times to stretch individually and as a team, but there are also times to take advantage of what you already know.
    3. When it came to testing the whole product, end-to-end, owning both sides gave us not only more options to consider, but also more tools to choose from.
    4. This meant that we owned both sides of the product implementation. For unit testing on the frontend, we stayed with Angular’s suggestion of Jasmine. For unit testing on the backend, we went with rspec-rails. These worked well since unit tests don’t need to cross technology boundaries.
    5. We used testing tools that were in the same ecosystem as our backend technology stack for primrily three reasons: We owned both ends of the stack Team experience Interacting with the database