22 Matching Annotations
  1. May 2025
    1. for - natural language acquisition - Automatic Language Growth - ALG - youtube - interview - David Long - Automatic Language Growth - from - youtube - The Language School that Teaches Adults like Babies - https://hyp.is/Ls_IbCpbEfCEqEfjBlJ8hw/www.youtube.com/watch?v=984rkMbvp-w

      summary - The key takeaway is that even as adults, we have retained our innate language learning skill which requires simply treating a new language as a new, novel experience that we can apprehend naturally simply by experiencing it like the way we did when we were exposed to our first, native language - We didn't know what a "language" was theoretically when we were infants, but we simply fell into the experience and played with the experiences and our primary caretakers guided us - We didn't know grammar and rules of language, we just learned innately

  2. Nov 2024
    1. We concluded in our IceMelt paper,14 based on observed rates of ice shelf melting, that the world is nearing shutdownof the Atlantic Overturning Meridional Circulation (AMOC) and shutdown of deepwaterformation near Antarctica (which we term SMOC for its analogy to the Northern Hemisphereprocess), if the rate of ice melt continues to grow.

      for - question - climate crisis - AMOC - does Jim Hansen consider shutdown of AMOC irreversible?

  3. Aug 2024
    1. human beings don't do that we understand that the chair is not a specifically shaped object but something you consider and once you understood that concept that principle you see chairs everywhere you can create completely new chairs

      for - comparison - human vs artificial intelligence

      question - comparison - human vs artificial intelligence - Can't an AI also consider things we sit on to then generalize their classifcation algorithm?

  4. Jul 2024
    1. I sort of take the easy way out and say well I know Earth history so maybe I'm 00:32:53 helping people by uh understanding the science of this stuff

      for - educator - polycrisis - individual action - levers - climate and earth history specialists help with education

      educator - earth climate history specialist can help with education about the past to help understand what we face in the present

      climate education - low impact due to - ignoring perspectival knowing - and salience landscapes - It may help to look at the problem of education through the lens of Michael Levin's multi-scale competency architecture - https://hyp.is/FFxzRL2nEe6ghzeLcJGM7A/www.ncbi.nlm.nih.gov/pmc/articles/PMC10167196/ - Applied to cognitive and cultural evolution within the lifetime of a single individual (human) - The salience landscape of an individual can vary depending on their educational and cultural background - There are multiple categories of concepts, each with their own degree of salience: - immediate phenomenological experience - high salience - second hand, linguistically communicated experience - moderate and dependent on source - scientific reported phenomena - moderate, high or low, dependent on source and cultural / educational background - second hand, linguistically communicated experience - low, moderate or high, dependent on source and cultural / educational background - A key observation is that humans are evolved to detect specific environmental cue but miss many others - The rate of cultural evolution is so rapid that our biologically adapted processes cannot adapt quickly enough to the rapid cultural changes, resulting in the experience of "hyperobjects" - https://jonudell.info/h/facet/?max=100&expanded=true&user=stopresetgo&exactTagSearch=true&any=+hyperobject - education that is done haphazardly and in an adhoc manner will fail to discriminate between this large variety of salience landscape, with the overall impact of low educational impact

  5. Jan 2023
  6. Jan 2022
  7. Feb 2021
    1. To give a little more context, structures like this often come up in my work when dealing with NoSQL datastores, especially ones that rely heavily on JSON, like Firebase, where a records unique ID isn't part of the record itself, just a key that points to it. I think most Ruby/Rails projects tend towards use cases where these sort of datastores aren't appropriate/necessary, so it makes sense that this wouldn't come up as quickly as other structures.
  8. Jan 2021
    1. The trouble with leaving the verb off is that if a user experiencing low or no vision is browsing with the aid of a screen reader, they may not be able to determine what the noun is for. Screen readers can scrape the current page and create lists by content type (headings, links, buttons, etc.) for easer navigation. Static text that is placed in visual proximity to the download links will not come along for the ride if accessed via this method. While it might seem redundant to show the word “download” over and over again, including it can go a long way to providing context for users navigating without visual aids, or who have zoomed the page’s content to the point where the layout may not communicate the visual relationship.
    2. One lesser-appreciated user-behaviour is when a user would like to choose an alternative download location. On a download link, your user can right-click -> “save link as…” and place the download directly into a folder of their choice. Handy if you want something to go directly to removable media, for example. On a download button, there’s no such option.
  9. Nov 2020
    1. Traditional online funnels — more often than not — require you to have a separate:Content management system (ex. WordPress, Joomla)Web host (ex. SiteGround, Bluehost)Page builder (ex. Elementor, Beaver)Email autoresponder (ex. MailChimp, Aweber, GetResponse)Order formShopping cartWeb analyticsOther marketing tools
  10. Oct 2020
  11. Sep 2020
    1. Svelte will not offer a generic way to support style customizing via contextual class overrides (as we'd do it in plain HTML). Instead we'll invent something new that is entirely different. If a child component is provided and does not anticipate some contextual usage scenario (style wise) you'd need to copy it or hack around that via :global hacks.
    2. Explicit interfaces are preferable, even if it places greater demand on library authors to design both their components and their style interfaces with these things in mind.
    1. The point of the feature is to not rely on the third-party author of the child component to add a prop for every action under the sun. Rather, they could just mark a recipient for actions on the component (assuming there is a viable target element), and then consumers of the library could extend the component using whatever actions they desire.