51 Matching Annotations
  1. Feb 2024
  2. Dec 2023
    1. we are certainly special I mean 00:02:57 no other animal rich the moon or know how to build atom bombs so we are definitely quite different from chimpanzees and elephants and and all the rest of the animals but we are still 00:03:09 animals you know many of our most basic emotions much of our society is still run on Stone Age code
      • for: stone age code, similar to - Ronald Wright - computer metaphor, evolutionary psychology - examples, evolutionary paradox of modernity, evolution - last mile link, major evolutionary transition - full spectrum in modern humans, example - MET - full spectrum embedded in modern humans

      • comment

      • insights

        • evolutionary paradox of modernity
          • modern humans , like all the living species we share the world with, are the last mile link of the evolution of life we've made it to the present, so all species of the present are, in an evolutionary sense, winners of their respective evolutionary game
          • this means that all our present behaviors contain the full spectrum of the evolutionary history of 4 billion years of life
          • the modern human embodies all major evolutionary transitions of the past
          • so our behavior, at all levels of our being is a complex and heterogenous mixture of evolutionary adaptations from different time periods of the 4 billion years that life has taken to evolve.
          • Some behaviors may have originated billions of years ago, and others hundred thousand years ago.
      • Examples: humans embody full spectrum of METs in our evolutionary past

        • fight and flight response
          • early hominids on African Savannah hundreds of thousands to millions of years ago when hominids were predated upon by wild predators
        • cancer
          • normative intercell communication breaks down and reverts to individual cell behavior from billions of years ago
            • see Michael Levin's research on how to make metastatic cancer cells return to normative collective, cooperative behavior
        • children afraid to sleep in the dark
          • evolutionary adaptation against dangerous animals that might have hid in the dark - dangerous insiects, snakes, etc, which in the past may have resulted in human fatalities
        • obesity
          • hunter gatherer hominid attraction to rich sources of fruit. Eating as much of it as we can and maybe harvesting as much as we can and carrying that with us.
            • like squirrels storing away for the winter.
  3. Oct 2023
  4. Sep 2023
    1. the Bodhisattva vow can be seen as a method for control that is in alignment with, and informed by, the understanding that singular and enduring control agents do not actually exist. To see that, it is useful to consider what it might be like to have the freedom to control what thought one had next.
      • for: quote, quote - Michael Levin, quote - self as control agent, self - control agent, example, example - control agent - imperfection, spontaneous thought, spontaneous action, creativity - spontaneity
      • quote: Michael Levin

        • the Bodhisattva vow can be seen as a method for control that is in alignment with, and informed by, the understanding that singular and enduring control agents do not actually exist.
      • comment

        • adjacency between
          • nondual awareness
          • self-construct
          • self is illusion
          • singular, solid, enduring control agent
        • adjacency statement
          • nondual awareness is the deep insight that there is no solid, singular, enduring control agent.
          • creativity is unpredictable and spontaneous and would not be possible if there were perfect control
      • example - control agent - imperfection: start - the unpredictability of the realtime emergence of our next exact thought or action is a good example of this
      • example - control agent - imperfection: end

      • triggered insight: not only are thoughts and actions random, but dreams as well

        • I dreamt the night after this about something related to this paper (cannot remember what it is now!)
        • Obviously, I had no clue the idea in this paper would end up exactly as it did in next night's dream!
  5. Aug 2023
    1. Hire Full Stack Developers for Bespoke Needs Fulfilling An End-to-End Solution Delivery.We facilitate a dedicated team of experts who build solutions assuring clients with not just high ROI, but even sustainable and disruptive tech impact. Our full stack developers go through a strong evaluation process to be client-ready and have specialization in specific domain and industries. Our developers give a time zone advantage as we work across overlapping time zones, no matter where the client is based. HIRE NOWPrevious Hire Ecommerce DevelopersBuild and deploy fully functional, customized shops and multi-store ops. HIRE NOW Hire Mobile App DevelopersRapidly develop native iOS & Android, or cross-platform mobile apps. HIRE NOW Hire JavaScript DevelopersFor masterfully scripted, multi-platform responsive Web services. HIRE NOW Hire Web Application DevelopersLaunch Progressive Web Apps with flawless backend-frontend engineering. HIRE NOW Hire Ecommerce DevelopersBuild and deploy fully functional, customized shops and multi-store ops. HIRE NOW Hire Mobile App DevelopersRapidly develop native iOS & Android, or cross-platform mobile apps. HIRE NOW

      HireFullStackDeveloperIndia is your partners in web and mobile app development solutions. Our streamlined hiring process, adaptable engagement models, and talented experts ensure the perfect fit for your projects. Transform your digital concepts into reality with ease and excellence. Whether it's front-end UI/UX, back-end functionality, or full-stack prowess, we've got you covered. Experience the synergy of skilled professionals driving your digital aspirations forward. For a cost-effective and skilled solution, explore the opportunity to hire full stack developers India.

  6. Jul 2023
    1. ```js // Log the full user-agent data navigator .userAgentData.getHighEntropyValues( ["architecture", "model", "bitness", "platformVersion", "fullVersionList"]) .then(ua => { console.log(ua) });

      // output { "architecture":"x86", "bitness":"64", "brands":[ { "brand":" Not A;Brand", "version":"99" }, { "brand":"Chromium", "version":"98" }, { "brand":"Google Chrome", "version":"98" } ], "fullVersionList":[ { "brand":" Not A;Brand", "version":"99.0.0.0" }, { "brand":"Chromium", "version":"98.0.4738.0" }, { "brand":"Google Chrome", "version":"98.0.4738.0" } ], "mobile":false, "model":"", "platformVersion":"12.0.1" } ```

    1. ```idl dictionary NavigatorUABrandVersion { DOMString brand; DOMString version; };

      dictionary UADataValues { DOMString architecture; DOMString bitness; sequence<NavigatorUABrandVersion> brands; DOMString formFactor; sequence<NavigatorUABrandVersion> fullVersionList; DOMString model; boolean mobile; DOMString platform; DOMString platformVersion; DOMString uaFullVersion; // deprecated in favor of fullVersionList boolean wow64; };

      dictionary UALowEntropyJSON { sequence<NavigatorUABrandVersion> brands; boolean mobile; DOMString platform; };

      [Exposed=(Window,Worker)] interface NavigatorUAData { readonly attribute FrozenArray<NavigatorUABrandVersion> brands; readonly attribute boolean mobile; readonly attribute DOMString platform; Promise<UADataValues> getHighEntropyValues (sequence<DOMString> hints ); UALowEntropyJSON toJSON (); };

      interface mixin NavigatorUA { [SecureContext] readonly attribute NavigatorUAData userAgentData ; };

      Navigator includes NavigatorUA; WorkerNavigator includes NavigatorUA; ```

  7. Mar 2023
  8. Nov 2022
    1. There are two situations where an init-like process would be helpful for the container.
    2. highly recommended that the resulting image be just one concern per container; predominantly this means just one process per container, so there is no need for a full init system

      container images: whether to use full init process: implied here: don't need to if only using for single process (which doesn't fork, etc.)

  9. Oct 2022
    1. The problem is that the caller may write yield instead of block.call. The code I have given is possible caller's code. Extended method definition in my library can be simplified to my code above. Client provides block passed to define_method (body of a method), so he/she can write there anything. Especially yield. I can write in documentation that yield simply does not work, but I am trying to avoid that, and make my library 100% compatible with Ruby (alow to use any language syntax, not only a subset).

      An understandable concern/desire: compatibility

      Added new tag for this: allowing full syntax to be used, not just subset

    1. Hire The Best Full Stack Developers

      Are you looking to hire the best full stack developers to make your dream website into reality? I am Harwinder singh full stack web developer who can build a website from scratch, specializing in the development of custom websites and web applications in JavaScript, React.js, Next.js, Node.js.

  10. Jun 2022
  11. Mar 2022
    1. L’imitation et l’influence du jeu interactif sont bien mises en évidence dans une étude de Orit Hetzroni et Juman Tannous, de la Faculté des Sciences de l’éducation de l’Université de Haifa (Israël)

      ==>l’échantillon de l’étude est est extrêmement limité, l’étude n’est pas répliqué et elle ne permet pas de retirer de résultats concluants

  12. Jan 2022
    1. The mansion sits on the same land where Sharon Tate and four others were murdered by the Manson family in the summer of 1969.Back then, the property’s address was 10050 Cielo Dr., but in 1994, real estate investor Alvin Weintraub demolished the house and changed the address to 10066 Cielo Dr. in an attempt to separate the estate from its dark past.
    1. Edouard Mathieu. (2022, January 17). Update: Switzerland now reports deaths by booster status. Compared to unvaccinated people, the COVID mortality rate is: • 9x lower after full vaccination • 48x lower after a booster [From our post with @maxcroser on death rates by vaccination status: Http://ourworldindata.org/covid-deaths-by-vaccination] https://t.co/ozWueyHO2k [Tweet]. @redouad. https://twitter.com/redouad/status/1482991873190936576

    1. Point being (again), definitions seem to differ, and what you call "full stack" is what I call "batteries-included framework". Full stack simply means (for me) that it gives you a way of building frontend and backend code, but implies nothing about what functionality is included in either part.
  13. Dec 2021
  14. Oct 2021
  15. Sep 2021
  16. Aug 2021
  17. May 2021
  18. Feb 2021
  19. Jan 2021
    1. Great, I can use vw to scale text so it doesn't look puny on a desktop! Perfect... Oh. Huh, now the text is too small to read when viewed on a phone. Okay, well I can just use "max(x,y)" to make sure it doesn't get shrunk beyond a minimum size. Perfect... Oh. Hmm. Looks like "max" isn't supported properly by Chrome. Okay, well guess I'll just use "px" again.
  20. Nov 2020
  21. Oct 2020
  22. Sep 2020
  23. Aug 2020
  24. Jul 2020
    1. Matamala-Gomez. M., Brivio E., Chirico. A., Malighetti. C., Realdon. O., Serino. S., Dakanalis. A., Corno. G., Polli. N., Cacciatore. C., Riva. Giuseppe., Mantovani. F (2020) User Experience and usability of a new virtual reality set-up to treat eating disorders: a pilot study. PsyArXiv Preprints. Retrieved from: https://psyarxiv.com/b38ym/

  25. Jun 2020
  26. May 2020
    1. You might try this extension: https://github.com/andreicristianpetcu/google_translate_this It does the same thing in the same way as Page Translator and likely will be blocked by Mozilla, but this is a cat and mouse game worth playing if you rely on full-page in-line language translation.
  27. Jan 2020
    1. OCTOPUS, a light-weight, cost-effective, and robust method for full-plasmid sequence verification using next-generation sequencing
  28. Feb 2019
    1. tothevolum

      The list seems to cater to taste (cf. Hume) and to variety. After visiting the newly built agora, there will be "some time of Refreshment" before moving on to legislative matters and affairs of the court; then we "may Rest [our] Selves" before hearing charitable orations, and so on. If one cares to hear something in particular, one may do so or take alternative pleasures ("if you regard not what Women say", "if you like not their Pastime").

      The selections seem a carefully chosen buffet or perhaps a finely planned 10 (or whatever number)-course meal, with each element serving to compliment but also counter-point those that come before and after.

      In seeing these particular examples of orations, perhaps we shall take away a sense of the general?

  29. Oct 2018
  30. Oct 2017
  31. Sep 2017
    1. Full Spectrum Influence Operations: Clint Watts is an expert in state-sponsored social media influence operations, and his testimony to the Senate Armed Services committee is riveting. We're vulnerable to state-sponsored attacks, he says, because we are too narrowly technological in our solutions. The Russians put together distributed and agile cross-functional networks of technologists, writers, trolls, and analysts. Americans tend to conceptualize the problem as technical, and don't understand the synergies between multiple legitimate and illegitimate entities. The Russians buy talent. Americans buy AI.  The Russians also take an ecosystem approach to the problem. "Full Spectrum Influence Operations" coordinate the actions of illegitimate actors (hackers who steal documents) with borderline actors (controllers of bot networks and paid trolls) with legitimate actors (news agencies). They identify and an infiltrate networks of "useful idiots" who are hungry for the disinformation and stolen documents they can supply, which serves their immediate ends. This full spectrum approach launders foreign disinformation into seemingly legitimate U.S. based news almost immediately. It's not the bots and the Gmail hacks that are the impressive piece -- it's the way in which the entire system is expertly leveraged to create legitimacy.
  32. Dec 2014
    1. astonished at how difficult they were to interpret.

      similar to a telephone interview--transcripts are valuable to the visually impaired but they represent a throttling of the gestalt, the whole of voice and vision that make up the full monty that is F2F conversation.