82 Matching Annotations
  1. Mar 2024
    1. The problem is that HTML can now do so much, that any attempts to create a consumer-focused app to edit it soon get unfocused and unusable.
    1. 05:25 Clear goals are a prerequisite for the flow state. They free up cognitive load, which, in turn, makes entering flow easier

  2. Feb 2024
    1. To be clear, funders and funded organizations should emphatically not reflexively believe that existing communications and communications channels are addressing these issues – one of the findings of our previous national high-lights report (available via the link on the final page of this report) was that funded organizations regularly communicating with funders about evaluation results were equally likely to feel that funders were driving the evaluation process and not making consistent use of findings.
  3. Nov 2023
  4. Oct 2023
  5. Aug 2023
    1. I ran into the same problem and never really found a good answer via the test objects. The only solution I saw was to actually update the session via a controller. I defined a new action in one of my controllers from within test_helper (so the action does not exist when actually runnning the application). I also had to create an entry in routes. Maybe there’s a better way to update routes while testing. So from my integration test I can do the following and verfiy: assert(session[:fake].nil?, “starts empty”) v = ‘Yuck’ get ‘/user_session’, :fake => v assert_equal(v, session[:fake], “value was set”)
  6. May 2023
    1. The video shows the productivity books which Sheldon used to help design his system including 99u's Manage Your Day-To-Day, Unsubscribe by Jocelyn K. Glei, The One Thing by Gary Keller, Getting Things Done by David Allen, Deep Work by Cal Newport, and Atomic Habits by James Clear.

  7. Mar 2023
  8. Nov 2022
  9. Oct 2022
    1. protected static function resolveFacadeInstance($name)

      This page has a neat effect, first apparent with this example, where a blur effect is used on most of the text in the code block, except for lines 11–13 which are shown in sharp focus. (You can mouse over the code block to eliminate the blur effect.)

      .torchlight.has-focus-lines .line:not(.line-focus) {
              transition: filter 0.35s, opacity 0.35s;
              filter: blur(.095rem);
              opacity: .65;
      }
      

      Each line is dumped into a div and the line-focus class set on those which are supposed to be unblurred.

      (For ordinary code blocks without any blur/focus effect, the has-focus-class line is simply not used.)

  10. Jul 2022
    1. It is terrible to seehow a single unclear idea, a single formula without meaning, lurking in a young man's head, willsometimes act like an obstruction of inert matter in an artery, hindering the nutrition of the brain,and condemning its victim to pine away in the fullness of his intellectual vigor and in the midst ofintellectual plenty.

    Tags

    Annotators

    1. when we die we go through eight stages according to the buddhist understanding and each of those stages the first four the elements the sort of solidity if you will i we know they're 01:16:07 not solid but from a conventional perspective the solidity elements the liquidity elements the thermodynamic elements the movement the kinetic elements those all dissolve as we die in 01:16:19 the first four and when that fourth one happens there's no more circulation of blood or of air so we don't breathe we have no circulatory you know blood pressure so we're declared clinically dead but 01:16:30 there's four more stages we go through and those are when the mind becomes successively subtler and those are when we get into the non-dual minds that are the most subtle minds and the last 01:16:43 eighth stage it's called worser in tibetan and we translate that as luminosity or clear light it's not light it's not you know but it's the most utter clear clear mind 01:16:57 and that mind if it goes on if we don't die if we meditate on that luminosity and sustain it through our meditation infinitely we can become a buddha and that's why the buddha is 01:17:09 sometimes called a buddhism an enlightened buddha is a deathless state because you don't actually die so those would be the non-conceptual and non-dual minds and just for completeness 01:17:23 those last four minds are called these are technical terms so it won't make much it won't have much give you much understanding white appearance red increase black near attainment and then this worst air this 01:17:35 luminosity so that's kind of the the the road map if you will for for mine and it's not the brain now on the gross level of thinking in our sensory minds there's a very close 01:17:48 connection with you know meant with the brain okay but when you die the brain is supposed to be dead and you're still alive okay and so these more subtle minds 01:18:01 are not related actually to the brain so we could really say that mind is experience it's awareness it's knowing not knowing something but 01:18:12 the act of knowing so the qualities of mind the most important qualities are awareness and clarity so that gives you just some rough idea of the buddhist understanding of mind or consciousness

      Barry gives an explanation of the different levels of mind as the body undergoes death, and particularly, the last 4 of 8 progressively subtler states of mind that are nondual, and therefore, not considered as part of the brain.

  11. bafybeibbaxootewsjtggkv7vpuu5yluatzsk6l7x5yzmko6rivxzh6qna4.ipfs.dweb.link bafybeibbaxootewsjtggkv7vpuu5yluatzsk6l7x5yzmko6rivxzh6qna4.ipfs.dweb.link
    1. The formulation of goals seems the most obvious requirement for focus and commitment: the goalfunctions like a target or “attractor” for the course of action, determining the direction for all futureactivity (Heylighen, 2012a). It is this directing influence that precludes the hesitation that wouldotherwise be elicited by an overload of choices. For example, for a rock climber trying to reach thetop, the direction is clear: up! On the other hand, for a tourist sauntering through a strange citywithout specific destination, every crossroads presents a dilemma: left, right, or straight on?

      clear goals help guide user into specific direction. Too many choices (unclear goal) creates delays in actions.

  12. Jun 2022
    1. James Clear, who writes about habits and decision-making also discusses this. In his book, “Atomic Habits,” he writes about habits in four stages: cues, cravings, responses and rewards.
  13. May 2022
    1. "I didn't fully understand it at the time, but throughout my time as a freshman at Boston College I've realized that I have the power to alter myself for the better and broaden my perspective on life. For most of my high school experience, I was holding to antiquated thoughts that had an impact on the majority of my daily interactions. Throughout my life, growing up as a single child has affected the way am in social interactions. This was evident in high school class discussions, as I did not yet have the confidence to be talkative and participate even up until the spring term of my senior year."

  14. Jan 2022
    1. There's a problem with 401 Unauthorized, the HTTP status code for authentication errors. And that’s just it: it’s for authentication, not authorization. Receiving a 401 response is the server telling you, “you aren’t authenticated–either not authenticated at all or authenticated incorrectly–but please reauthenticate and try again.” To help you out, it will always include a WWW-Authenticate header that describes how to authenticate.
    2. So, for authorization I use the 403 Forbidden response. It’s permanent, it’s tied to my application logic, and it’s a more concrete response than a 401. Receiving a 403 response is the server telling you, “I’m sorry. I know who you are–I believe who you say you are–but you just don’t have permission to access this resource. Maybe if you ask the system administrator nicely, you’ll get permission. But please don’t bother me again until your predicament changes.”
  15. Nov 2021
    1. When context keeps the meaning clear. What the authors talking about. He’s having a clear message. So people understand what is going on. But sometimes the message can be unclear. And people can take it the wrong way. Communication is complicated especially when you are talking to somebody through text. I think it is easier to talk to somebody face-to-face or on the phone or in a zoom meeting. That is a clear message to me. The messages that I can’t translate. Or mostly text, but sometimes to understand what is going on I would have to ask them multiple questions to get the clear answer.Context of everything and we take it for granted.

    1. These beliefs are the theory, if they can be given so glorified a name, that tradition works, that most innovation, especially rapid innovation, is dangerous, that human nature is consequential. Simple as that. But in our culture it takes a lot of thought to get to that point

      This is probably the most charitable interpretation of conservatism. It's the one I wish people would argue against, because I believe it would (naively) "elevate" the discourse.

  16. Oct 2021
  17. Jul 2021
    1. CLEAR Happiness Overview

      Standard Enrollment For each new member you enroll in our standard payment plan (14-day trial, renews at $179 annually), you will earn $13 CH

      Partnership Enrollment Any new member you enroll for preferred pricing through Delta SkyMiles, United Mileage Plus OR Military/Government you earn $9 CH!

      Family CLEAR members can add up to 3 family members to their account, for which you will earn $6 CH per family member added during the initial enrollment. (This means you can earn up to $31 CH per enrollment: 1 Standard + 3 Family members!)

      Bio-Completes Believe it or not, you even earn $1 CLEAR Happiness for completing enrollments for members who pre-registered online!

    2. People who are successful at CLEAR..

      Live our Values They are more than words, our values maintain our culture!

      Practice radical candor Trusting each other enough to give direct, honest feedback.

      Apply charitable assumption Believing the best in each other

      Get it done It's about effort over hours—we expect everyone to play their part

      Believe feedback is a gift You’ll get a ton of real-time feedback while you’re working here, and we get together quarterly to both look back and set goals

    3. Your Role

      Security

      A primary job function of CLEAR ambassadors is operating the CLEAR lane, which means verifying members' identities and escorting them to physical screening according to security protocol.

      Service

      You are our brand! Our exceptional customer service is what sets us apart from other security companies and transforms our members' experience!

      Sales

      It is your job to share the CLEAR story with every traveler, every day in a way that contributes to CLEAR's best-in class reputation. For each new member you enroll, you will earn commission through our sales incentive program, CLEAR Happiness.

    4. Members who enroll for FREE at stadiums have access to CLEAR lanes at any of our Sports & Entertainment locations.

      Those members have the option of adding a payment method and upgrading to a Plus membership to use CLEAR at the airport as well.

    5. CLEAR Membership Prices

      Standard Pricing

      $179 per year (billed annually) offered with a 14-day free trial. The member receives their first charge at the end of the trial.

      Airline Partnership Pricing

      Delta Delta Diamond, Medallion, 360 - Free Gold, Silver, & Platinum - $109 Delta SkyMiles - $119

      United United Premier 1k & Global Services Gold, Silver, Platinum, & Premier - $109 United MileagePlus - $119

      Military/Government Discount Military & Government for 12 Months of CLEAR - $99

      CH Code MILITARYCH GOVERNMENTCH

      Family Plan

      Members can get even more value by adding adult family & friends to their account.

      $60 per family member Each primary account can have up to 3 active family members added

    6. IMPORTANT:

      The specific rate depending on the member's frequent flyer status will automatically be applied at the time of enrollment.

      Members enrolling with an airline partnership or Military/government discount do not receive a trial and are charged at the time of enrollment.

    7. Welcome Email

      Every new member receives all the information they need as soon as they enroll! The Welcome email contains information about our locations, as well as instructions to login to their online account at my.clearme.com to manage their membership.

    8. Customer Touch Points

      Appearance: The way our lanes and team members look is important to our brand and the way we're perceived by our customers. If someone snapped a photo of your lane in this moment, how would everything look? Perfectly in order or needs more organizing?

      Engagement: When engaging with the public, it's important that we always do so in a way that shows our members our obsession with their experience.

      Enrollment: This is super important! The way a member is enrolled sets the tone for every experience they will have with CLEAR, and is our opportunity to inform them about all the different ways they can use their membership.

      First Time Use: Customers can decide whether they'd like to continue doing business with us based off of just one experience, so let's make it a positive one!

      Security Simplified: Our ongoing touch point with our customers means delivering on our mission of making their experience simpler, smarter, and more secure.

    9. Remember:

      Everyone is a potential CLEAR member!

    10. Priority Lanes - Associated with frequent flyer status or in some cases through purchasing directly with an airline

      Cost: Depends on the airline

    11. Global Entry - Provides expedited access through customs upon entering the US. Includes PreCheck eligibility.

      Cost: $100 for 5 years (includes PreCheck)

    12. CLEAR - offers speed and predictability that travelers can count on regardless of what airline they are flying or status they have.

      Cost: 14 day trial then $179 per year; $60 to add a family member

    13. TSA PreCheck - expedited physical screening at TSA checkpoints (keep shoes, coat, belt on)

      Cost: $85 for 5 years

    14. Sports & Entertainment Partners

      MLB NHL NBA Ticketmaster Union Square Hospitality

    15. Major partners

      Our Locations TSA TSA PreCheck Delta Airlines United Airlines

    16. Market Director

      Some locations are also under the direction of a Market Director, who oversees all CLEAR operations within the market.

    17. Assistant General Managers/General Managers

      General Managers act as local business owners at each station. CLEAR Managers are ultimately responsible for delivering an excellent customer experience, developing a high performing team, and driving an unwavering commitment to security at each station.

    18. Managers

      CLEAR Managers assist the General Managers (GM) in operating as business owners at our airport locations and play an essential role in revolutionizing the travel experience through assuring the flawless execution of CLEAR operations in security, service, and sales.

    19. Senior Ambassadors

      Senior Ambassadors have elevated responsibilities in the operation such as troubleshooting technology issues, mentoring new employees, and more, all while still providing fantastic service to our members and growing our membership base through sales.

    20. Ambassadors

      An Ambassador is a person who acts as a representative or promoter of a specified activity.

      You are our brand! Your first impression sets the tone for every member’s experience with CLEAR. Your mantra is security, service, and sales.

      We will do everything to support your success from making sure you look your best to fine-tuning our technology.

    21. Our Leaders:

      Caryn Seidman-Becker CEO Co-Founder of CLEAR

      Ken Cornick President Co-Founder of CLEAR

      Kasra Moshkani EVP, Operations

      Craig Hazenfield EVP, People & Performance

      Jimmy Hahn VP Ops, Member & Employee Experience

      Matt Levine Chief Privacy Officer, General Counsel

    22. 3 Strategic Priorities to drive growth and build our company:

      BUILD FRICTIONLESS CUSTOMER EXPERIENCES

      CREATE NETWORK EFFECTS FOR CLEAR MEMBERSHIP

      EMBED SECURITY AND PRIVACY INTO EVERYTHING WE DO

    23. Clear's Values

      -Obsessed with the Customer Experience -Own it -Speak up -Bias for Action -Embrace Change -Be Indefatigable -Great people

    24. Our Values

      Our values guide the decisions we make every day. At CLEAR we are indefatigable. We believe that nothing is insurmountable. We believe in tireless persistence. We view each “no,” as one step closer to “yes.” We are gritty, relentless, and scrappy - and we win.

      Caryn Seidman-Becker

    25. Our Mission:

      CLEAR makes it simple to be you by using biometrics to build a connected world that's smarter and more secure.

  18. Jun 2021
    1. We were not strictly blackbox testing our application. We wanted to simulate a user walking thru specific scenarios in the app which required that we have corresponding data in the database. This helps ensure integration between the frontend and backend was wired up successfully and would give us a foundation for testing critical user flows.
    1. White-box testing (also known as clear box testing, glass box testing, transparent box testing, and structural testing) is a method of software testing that tests internal structures or workings of an application, as opposed to its functionality (i.e. black-box testing)
  19. May 2021
    1. --tag-rename '':'my-module-' (the single quotes are unnecessary, but make it clearer to a human that we are replacing the empty string as a prefix with my-module-)
  20. Apr 2021
    1. Explicit affordances are obvious, perceptual features of an item that clue you in on how it is to be used. With explicit affordances, physical appearance and any accompanying language or text inform the user of how an object is to be used.
  21. Mar 2021
    1. I like this approach more because I can scan the code that renders the Box component and easily spot that it takes two children. If the Box took any props, they'd be within the opening <Box> tag, and they would be distinct from any children props.
  22. Feb 2021
  23. Jan 2021
  24. Dec 2020
    1. Don’t write to sound smart. Write to be useful. If you’re useful over a long time period, you will end up looking smart anyway.— James Clear
  25. Oct 2020
    1. Clear writing starts with clear thinking:What am I really trying to say?What is the key point I need to make?How can I make that key point easy to understand?We'll explore two tools for increasing clarity: Simple sentencesExamples and counterexamples
    1. One of the significant differences between the two is that a call to a partially applied function returns the result right away, not another function down the currying chain; this distinction can be illustrated clearly for functions whose arity is greater than two.
  26. Aug 2020
    1. As a result, I end up quoting multiple people, sometimes quoting several people back-to-back, before even writing my reply. In those instances it feels like I'm not properly citing those individuals. I feel like it might seem I'm not providing new readers appropriate context for a given quote. It might also be implied that separate quotes are from the same person, leading to mis-attribution.
  27. Jun 2020
  28. May 2020
    1. Like all other consent under the GDPR, consenting to cookies needs to be a clear affirmative action. An example is clicking through an opt-in box or choosing settings from the menu. Pay attention to not have pre-ticked boxes on the consent form!
    1. The GDPR requires consent to be opt-in. It defines consent as “freely given, specific, informed and unambiguous” given by a “clear affirmative action.” It is not acceptable to assign consent through the data subject’s silence or by supplying “pre-ticked boxes.”
  29. Apr 2020
    1. In patients with clear indications for operation, essential radiographs should be taken, and the patient should be transported to the OR immediately. Such patients include those with blunt trauma and massive hemothorax, those with penetrating trauma and an initial chest tube output of >1 L, and those with abdominal trauma and ultrasound evidence of extensive hemoperitoneum.
  30. Mar 2020
    1. One of the main threads of the GDPR is providing clear and transparent information to individuals about data collected, how it is processed, and the lawful basis for this processing.
  31. May 2019
    1. This is spot on. An idea on its own does nothing. Execution and actually doing the hard work are the most important thing in any creative endeavour.

      This blog is very good, high signal and low noise. The dense version of this idea that has stuck with me is that the thing we're aiming for (productivity, make-world-better-stuff, doing good) is a multiplicative-product of both hustle (physical work, pressing buttons, saying words that other people hear) and the thinking part. That is, long term goal completion is hustle (doing stuff) * thought (knowing what to do)

      I may technically disagree with the "most important thing" part, but it needs some sort of strong emphasis. Hustle modifies ideas in a times-ish (multiplying) way, so if you've got zero hustle, you don't really have anything

      One way to do world-bettering is to just have enough hustle to outsource the hustle (get other people to act on your ideas), or alternately if you have tons of hustle, then you can take good ideas which aren't going anywhere.

      Knowing the difference between bad and good ideas is one of the core problems with the super-connected society/net we're in. The solution to the problem is too large for this margin.

  32. Dec 2017
    1. The IRB helps to make sure that the risks of the proposed research are minimized, the benefits outweigh the risks, the research is carried out in a fair manner, and the informed consent procedure is adequate.

      Clear and concise explanation of exactly what IRBs do.

  33. Apr 2017