487 Matching Annotations
  1. May 2021
    1. Hey, I'm a PhD in [field] and do [whatever] professionally. Before calling you, I've narrowed down the problem to [something on their end], so that's what needs to be addressed. If I could speak to an engineer about [specific problem], that'd be great; but if we've gotta walk through the script, let's just knock it out quickly. If they end up requiring the script, then the best way to use your expertise is to run through it quickly. Keep the chit-chat to a minimum and just do the stuff efficiently. If they start describing how to perform some step, you might interrupt them with, "Got it, just a sec.", then let them know once you're ready for the next step.
    2. However, what speaks against just straight up telling them that you're working as [Insert title of your position] and you know what you're talking about?
    3. In one of my internship, I got to befriend a level 2 tech support, so learned a couple thing of how it worked (in that company). Level 1 was out-sourced, and they had a script to go from, regularly updated. From statistics, this took care of 90% of issues. Level 2 was a double handful of tech people, they had basic troubleshooting tools and knowledge and would solve 90% of the remaining issues. Level 3 was the engineering department (where I was), and as a result of level 1 and 2 efficiency less than 1% of issues ever got escalated. The process worked!
    4. OP is referring to letting people know they can speak like proper adults when talking about technical terms, without going through the usual nanny-like discourse that tech support has to provide to non-techies. For instance, it happened to me with Amazon support. The speaker told me exactly where to touch in order to clear the cache of the Android Amazon App Store. Given that I work as an app developer the guy could have just said "please clear the cache". No need to go through "tap here, then here, now you should see this, tap that"...
    5. I have tried different tactics of showing the tech support that I am proficient in their field of work (I work as a web developer). Specifically: using accurate terms and technologies to show my knowledge of them and telling the support that I am the "administrator" of the website in question.
    6. How to let tech support subtly know that I am proficient without showing off?
    7. Unfortunately the tech support people you are speaking to are probably as frustrated as you are at having to go through the basic stuff with you.
    8. Large companies especially deal with the massive volume of tech support calls they receive by employing some staff on lower pay as a "buffer," dealing with simple or "known" issues so that they don't need to employ as many higher paid "second line" support staff.
    9. Very often the first people you get through to on tech support lines are reading from a script.
    1. Here’s a really neat editor for those from Mads Stoumann (which works for circles and ellipses as well):
    2. /* referencing path from an inline SVG */ clip-path: url(#c1);

      first sighting: referencing image by ID in CSS

    1. They don't look like advertisements. The second the recipient interprets your email as an ad, promotion, or sales pitch—and it does take just a second—its chances of being read or acted upon plummet towards zero. A plain email leads people to start reading it before jumping to conclusions.

      forces you to read before deciding

  2. Apr 2021
    1. one of the oldest problems was the use of Command-line interactive programs in UNIX shell-scripts

      first sighting of this article

    1. We also include a large number of detailed picture examples, often with 3D renders, that help you understand the context of the rules. For these reason, we generally don't start laying out the final rulebook until production art is complete. Writing and laying out a 20 page rule book like this generally takes about 3 months from start to finish, usually requiring a complete rewrite or two, and involves dozens of editors.
    1. fill_in('Foo', with: 'bar', fill_options: { clear: :backspace })

      first sighting: fill_options: { clear: :backspace })

      first sighting: fill_options as an option at all (for fill_in only, I presume)

      I wonder they added at all as a response to this:

      See also: https://hyp.is/ZcXVJJMyEeucgmPXYFP9yg/github.com/teamcapybara/capybara/issues/203

      (which key should have been pressed, backspace, space?)

  3. Mar 2021
    1. reduce(root){@1[@2]||={}}

      first sighting: Ruby 3's new @1 shorthand

    2. data = {}.extend XKeys::Auto # Vs ::Hash, uses arrays for int keys data[:users, 0, :name] # nil data[:users, 0, :name, :raise => true] # KeyError data[:users, :[], :name] = 'Matz' # :[] is next index, 0 in this case # {:users=>[{:name=>"Matz"}]} pick = [:users, 0, :name] data[*pick] # Matz data[:users, 0, :accesses, :else => 0] += 1 # {:users=>[{:name=>"Matz", :accesses=>1}]}
    1. ow you have the extension up and running. It's time to start annotating some documents.

      bitches be cray cray for gods sake that took forever

    1. My preference here is biased by the fact that I spend everyday at work building web components, so Svelte's approach feels very familiar to slots in web components.

      first sighting: That <template>/<slot> is part of HTML standard and the reason Svelte uses similar/same syntax is probably because it was trying to make it match / based on that syntax (as they did with other areas of the syntax, some of it even JS/JSX-like, but more leaning towards HTML-like) so that it's familiar and consistent across platforms.

    1. Fibar bi jàngal na taawan bu góor ni ñuy dagge reeni aloom.

      Le guérisseur a appris à son fils aîné comment on coupe les racines du Diospyros.

      fibar -- (fibar bi? the healer? as in feebar / fièvre / fever? -- used as a general term for sickness).

      bi -- the (indicates nearness).

      jàngal v. -- to teach (something to someone), to learn (something from someone) -- compare with jàng (as in janga wolof) and jàngale.

      na -- pr. circ. way, defined, distant. How? 'Or' What. function indicator. As.

      taaw+an (taaw) bi -- first child, eldest. (taawan -- his eldest).

      bu -- the (indicates relativeness).

      góor gi -- man; male.

      ni -- pr. circ. way, defined, distant. How? 'Or' What. function indicator. As.

      ñuy -- they (?).

      dagg+e (dagg) v. -- cut; to cut.

      reen+i (reen) bi -- root, taproot, support.

      aloom gi -- Diospyros mespiliformis, EBENACEA (tree).

      https://www.youtube.com/watch?v=BryN2nVE3jY

    1. Fires an invalid event at the element

      First time I've seen/heard it said that an event is fired at some target. But it sure makes sense, since it matches how "fire" is used in other senses (like shooting a gun).

    1. var md = require('markdown-it')('commonmark');

      first sighting: require(...)(...)

      How would that work with import? Not as fluidly but...

      import markdownIt from 'markdown-it'
      let md = markdownIt('commonmark')
      
    1. Shogi is a classic game. I know many people who want to play Shogi, but the Kanji on the pieces makes it too hard to master. I have designed this Shogi with icons so anybody can learn it easily.
  4. Feb 2021
    1. URI::MailTo::EMAIL_REGEXP

      First time I've seen someone create a validator by simply matching against URI::MailTo::EMAIL_REGEXP from std lib. More often you see people copying and pasting some really long regex that they don't understand and is probably not loose enough. It's much better, though, to simply reuse a standard one from a library — by reference, rather than copying and pasting!!

    1. Pastor-Barriuso, R., Pérez-Gómez, B., Hernán, M. A., Pérez-Olmeda, M., Yotti, R., Oteo-Iglesias, J., Sanmartín, J. L., León-Gómez, I., Fernández-García, A., Fernández-Navarro, P., Cruz, I., Martín, M., Delgado-Sanz, C., Larrea, N. F. de, Paniagua, J. L., Muñoz-Montalvo, J. F., Blanco, F., Larrauri, A., & Pollán, M. (2020). Infection fatality risk for SARS-CoV-2 in community dwelling population of Spain: Nationwide seroepidemiological study. BMJ, 371, m4509. https://doi.org/10.1136/bmj.m4509

    1. found that using only the Pascal-provided control structures, the correct solution was given by only 20% of the subjects, while no subject wrote incorrect code for this problem if allowed to write a return from the middle of a loop.
    1. Modelling the flow of a program where chunks of code are executed in a certain order, with a successful “happy path” and an “error-out” path is called a Railway. It popped up in functional languages

      first sighting: railway-oriented programming

    1. This is the most popular article “railway oriented programming” on one of the most popular websites of F #.

      I may have seen it before but not really paid attention to it, but this just might be the first time I stopped to look it up.

      Because I saw the code below, didn't recognize the language, and was intrigued.

    1. We can ask timeout to try to stop the program using SIGTERM, and to only send in SIGKILL if SIGTERM didn’t work. To do this, we use the -k (kill after) option. The -k option requires a time value as a parameter.
    1. Examples of different ways of defining forms

      Wow, that's a lot of different ways.

      The inline_form way in particular seems interesting to me, though it's worth noting that that method is just an example, not actually part of this project's code, so it's not really a first-class option like the other options.

    1. For the usage in society, see Second-class citizen.
      1. Ironic that this reference is ostensibly about the usage of "first-class citizen" in society, yet it links to a seemingly-mismatched (by name only, that is) article, entitled "second-class citizen".

      2. Ironic that the first-class (unqualified) article is about the figurative meaning of "citizen" used in computer science, and that the page describing first-class and second-class status of the more literal citizens in society is relegated to what I kind of think is a second-class position in the encyclopedia (because it takes the #2 position numerically, even though it is (at least as is implied in this reference) also about first-class citizens (though the word "first-class" does not appear a single time in that article, so maybe this reference is the one that is more ironic/incorrect).

    2. In programming language design, a first-class citizen (also type, object, entity, or value) in a given programming language is an entity which supports all the operations generally available to other entities. These operations typically include being passed as an argument, returned from a function, modified, and assigned to a variable.
    1. In computer science, a programming language is said to have first-class functions if it treats functions as first-class citizens.
    1. Some people believed I argued that object orientation is bad simply because extends has problems, as if the two concepts are equivalent. That's certainly not what I thought I said, so let me clarify some meta-issues.

      first sighting: meta-issue 

    1. Launched in 2008, our breakthrough reading app, Reading Eggs, has been used by over 3.4 million users in 169 countries.

      Have Reading Eggs for kids. First time I had learned anything about the company behind it.

      Here: https://hyp.is/G85jmnChEeuRiUMfGc0Brg/github.com/trailblazer/reform

    1. Finding clientsFinally, we were at the moment of truth. Luckily, from our user interviews we knew that companies were posting on forums like Reddit and Craigslist to find participants. So for 3 weeks we scoured the “Volunteers” and “Gigs” sections of Craigslist and emailed people who were looking for participants saying we could do it for them.Success!We were able to find 4 paying clients! 

      UserInterviews found their first clients by replying to ads on Craigslist and Reddit for user interview volunteers with the pitch that they could help the companies find them.

  5. Jan 2021
    1. Tippy provides first-class support for touch devices. Tooltips can be tricky to get right on touch devices because of the nature of touch input.
    1. This is a by-product of the success of Ubuntu. Whether people like it or not, most software available for Linux will target Ubuntu first. There may be packages available later for other distros / systems, but on the whole, you can be sure a software developer will target Ubuntu if they target Linux.
    1. Hi, I Need some help regarding my Ubuntu, is there any way to reach out to you personally ? Vote: 0 0 Share Facebook Twitter Copy link to comment Reply to SAK Copy link to comment Abhishek Prakash People's Favorite with 100+ Upvotes 30 Replies 3 weeks ago This comment is awaiting moderation Use our community forum, please.
  6. Dec 2020
    1. Devi Sridar {@devisridhar} (2020) Wouldn't usually share such a big news item without verifying carefully. But @KarenGrepin is a close colleague & top Prof in Hong Kong, and extremely reliable in her tweets. Twitter. Retrieved from: https://twitter.com/devisridhar/status/1297851056555261953

    1. ReconfigBehSci {@SciBeh} (2020) The pandemic proves we all should know ‘psychological first aid.’ Here are the basics. /lifestyle/wellness/pandemic-psychological-first-aid-anxiety/2020/09/21/7c68d746-fc23-11ea-9ceb-061d646d9c67_story.html?tid=ss_tw. Twitter. Retrieved from: https://twitter.com/SciBeh/status/1308461925785837573

    1. Governed under a Temporary Benevolent Dictatorship (TBD)

      first sighting: Temporary Benevolent Dictatorship

    1. My use case is a masonry component that should split up its children into several columns.

      "masonry component"

  7. Nov 2020
    1. Make this library Typescript first
    2. This one gets the SEO, so I hope you're successful @raythurnevoid.

      I assume this gets search traffic because people hope/assume that since there's a React "material-ui" that there might already be a "svelte-material-ui" port/adaptation available. So they search for exactly that (like I did). That and being the first to create that something (with that name).

    1. But then, I still want to upgrade my dependencies from time to time, in a painless way. I recommend checking Renovate which handles JavaScript and Ruby dependencies auto updating. Use it.
  8. Oct 2020
    1. first sighting: use of superscripts like this

      I like it. Nice and concise and understandable.

      • s¹  critical
      • s²  important
      • s³  nice to have
      • s⁴  low
      • s⁵  inconvenient

      But in other cases, the abbreviation is quite unclear and ambiguity:

      Like, what does "pr" mean in these cases?

      priority? Doubt it.

      • pr¹  chore
      • pr²  docs
      • pr³  feature
      • pr⁴  fix
      • pr⁵  performance
      • pr⁶  refactor
      • pr⁷  style

      Pull Request? Doubt it. But maybe?


      For axes that are quantifiable, like severity, using a number makes sense. But what benefit is there in including a number in these (platform?) labels?:

      • p¹ ⋅ browser
      • p² ⋅ linux
      • p³ ⋅ mac
      • p⁴ ⋅ windows

      I think this would have been better and clearer (in that fewer people would be like huh? and wonder what it means):

      • platform: browser
      • platform: linux
      • platform: mac
      • platform: windows
    1. We could freeze the objects in the model but don't for efficiency. (The benefits of an immutable-equivalent data structure will be documented in vtree or blog post at some point)

      first sighting: "immutable-equivalent data"

    1. Most people seem to follow one of two strategies - and these strategies come under the umbrella of tree-traversal algorithms in computer science.

      Deciding whether you want to go deep into one topic, or explore more topics, can be seen as a choice between two types of tree-traversal algorithms: depth-first and breadth-first.

      This also reminds me of the Explore-Exploit problem in machine learning, which I believe is related to the Multi-Armed Bandit Problem.

    1. L’étude montre également une répartition géographique inégale des types de familles, avec notamment une grande part de familles traditionnelles en France métropolitaine, a contrario des Dom-Tom (

      This part of the articles is showing us graphs and statistics of the different types of families in France(such as single parent, traditional two parent households etc.) and how many of each of them represent families in different parts of France.

  9. Sep 2020
    1. Another problem I ran into was knowing when an element is removed. I had to add a MutationObserver on the current tooltip target so if it gets removed by Svelte while the tooltip is visible (e.g. if a click moves to another route) the tooltip isn't left hanging around on the screen. No mouseleave/mouseout events are dispatched on elements that are removed.

      First sighting: MutationObserver

    1. I think Rich is more interested in pushing for a HTMLx community spec
    2. that feels a lot like directives in Marko: https://markojs.com/docs/syntax/#directives. While Marko did bring some interesting ideas to the table, I find Svelte's approach to be more concise and easier to reason about.
    1. In particular, this takes a different approach from CSS Shadow Parts, which allows a component consumer to target selected elements, but to then apply arbitrary styles to those elements.
    2. Note that we'd still be able to emulate that capability with :global — really the question is whether it needs to be first-class.
    3. display: contents essentially removes the wrapper element from the DOM, but allows it to set inheritable styles including custom properties.
    1. Figma is browser-first, which was made possible (and more importantly performant) by their understanding and usage of new technologies like WebGL, Operational Transforms, and CRDTs. From a user’s perspective, there are no files and no syncing that needs to be done with others editing a design. The actual *experience* of designing in Figma is native to the internet. Even today, competitors often talk about cloud, but are torn over how *much* of the experience to port over to the internet. Hint: “all of it” is the correct answer that they all eventually will converge on.

      Company's struggle to figure out how much of their experience they should port over to the cloud. Figma pioneered the idea of porting all of it and call it a "browser first" application.

      For the Figma user there are no versioned files and there is no syncing.

      Kwok claims all companies will converge to having all of their experience be "internet native".

  10. Aug 2020
    1. Our company is remote-first and will always be open to employees to work anywhere in the U.S. (or the occasional trip abroad). We made this decision with a great deal of intention because we believe creating and nurturing a remote culture is a key to inclusion.

      As we've been adjusting to the pandemic and going remote, I have been thinking about the differences between

      • [[remote only]]
      • [[remote first]]
      • [[remote friendly]]
  11. Jul 2020
    1. The hands-down best Computer Science class I took at NYU was Heuristics with Dennis Shasha in which we learned algorithms for approximating solutions to NP-hard problems and applied them to compete in automated 2-player competitive battles including a gravitation Voronoi game.
    1. In logic, functions or relations A and B are considered dual if A(¬x) = ¬B(x), where ¬ is logical negation. The basic duality of this type is the duality of the ∃ and ∀ quantifiers in classical logic. These are dual because ∃x.¬P(x) and ¬∀x.P(x) are equivalent for all predicates P in classical logic
  12. Jun 2020
  13. May 2020
    1. Fourth, instead of punishing Aggregators for building products that consumers like to use, antitrust authorities should focus on third-party advertising markets, particularly the role played by Google.

      What will the consequences of shift from third to first party advertising markets be?

  14. Apr 2020
    1. Finally, from a practical point of view, we suggest the adoption of "privacy label," food-like notices, that provide the required information in an easily understandable manner, making the privacy policies easier to read.
  15. Mar 2020
    1. First-party cookies are the lifeblood of every website, enabling businesses to remember key pieces of information about users and to collect analytics data. Third-party cookies are the bread and butter of AdTech, allowing publishers to monetize their websites, and brands to run advertising and marketing campaigns.
    1. The article explores training that should be included in training police officers. The training focuses o ensuring that law enforcement officers have an understanding and how this understanding can apply to their work.

    1. First sighting: "No Extra Customs Fees" rather than the typical vague wording "EU-friendly". This wording is clearer, non-gimmicky, and better. Applause!

    1. On top of standard Markdown blockquotes, which require prepending > to quoted lines, GFM supports multiline blockquotes fenced by >>>:

      First sighting of this >>>. I like it! It's always a pain to paste in a quote and then have to manually prefix every line with >, esp. if there are many lines.

      I also like that it very nicely parallels the multilne code block delimeter syntax.

    1. Choosing between family and work is a difficult decision. At Osano, it won't be one you have to make. From flexible work schedules to leadership who understand that family comes first, you'll never have to choose.
  16. Feb 2020
    1. They are constantly reminding me that “family first” is our mantra, and give me ease of mind to take time away when needed.
    1. Family and friends first, work second Long lasting relationships are the rocks of life and come before work. As someone said in our #thanks channel, after helping a family member for 5 days after a hurricane: "THANK YOU to GitLab for providing a culture where "family first" is truly meant".
  17. Jan 2020
    1. I've often wished for some standard variable to use for blocks and such. Like some people here, I had considered it. Usually I use _ but I know that means "unused" to many/most programmers. I like the % option that Clojure has.

  18. Dec 2019
  19. Nov 2019
    1. microscope

      It is the most value tool of my life until now. :D

    Tags

    Annotators

    1. Using Technology to Help First-Gen Students

      This article highlights the need for and benefits of implementing more technology tools to support first-generation college students' learning, engagement, and success. For many first-gen students, especially those from low-income backgrounds, the transition to college can be challenging; this leads to lower retention rates, performance, and confidence. The authors, drawing off of research, suggest mobile devices and Web 2.0 technologies to prevent these challenges. Example of such tools include dictionary and annotation apps that are readily-accessible and aid in students' understanding of material. Fist-gen students can also use social media apps (Twitter, Facebook, etc.) to maintain supportive connections with family, peers, and mentors. Rating: 8/10

  20. Oct 2019
    1. It is optimized for building complex, data-dense web interfaces for desktop applications which run in modern browsers and IE11. This is not a mobile-first UI toolkit.
  21. Apr 2019
    1. Glass by Ellen

      I absolutely love this top banner. It is gorgeous, and the subtitle is a nice reference to the topic of the website. That may be my own bias toward purple, black, and grey, however.

  22. Mar 2019
    1. Bridging Formal and Informal Learning Through Technology in the Twenty-First Century: Issues and Challenges

      From Springer Link, this is an abstract from a book titled, Bridging Formal and Informal Learning Through Technology in the Twenty-First Century: Issues and Challenges. While the entire content is not here, if purchased, this book/download could offer a large amount of useful information about this topic. It covers learning typically associated with technology such as social networking, game-based learning and digital making.

      Rating 7/10

  23. Feb 2019
    1. I find it very interesting that the line for the gun control advocates and the gun rights advocates correlate so closely, it almost looks like a Rorschach test.

  24. Jan 2019
    1. first-year writing

      https://secure.ncte.org/store/strategies-for-teaching-1st-year-comp This book has great articles on first-year writing courses, but I'm specifically pointing to one entitled "An Honors Course in First-Year Composition: Classical Rhetoric and Contemporary Writing" By Marvin Diogenes, Stanford University.

    1. Umarah Mubeen

      Brief Bio: During my masters I was fascinated by the upcoming research and developments in the field of micro-algal biotechnology. As an outcome of the preliminary studies to explore sustainable use of microalgae, I was among the 25 young scientists, recognized as Green Talents in 2013 by the Federal Ministry of Education and Research (BMBF), Germany. To extend my skills in the field I pursued a PhD at MPIMP in the experimental systems biology group headed by Dr. Patrick Giavalisco. More here.

  25. Nov 2018
    1. In addition to the literature review, we have collaborated with Dr. David Gaertner, instructor in the First Nations and Indigenous Studies Program at the University of British Columbia, on a Wikipedia gap analysis assignment in FNIS 220: Representation and Indigenous Cultural Politics. The gap analysis assignment focuses on how knowledge systems like Wikipedia support or fail to provide a space for inclusive representation of Indigenous culture and identity. We offered a workshop in the FNIS 220 class that focused on how knowledge is constructed in traditional (e.g. library) and open knowledge (e.g. Wikipedia) systems, how to critically analyze who is creating information, the context of the creation process, and how information is made accessible in these spaces. In a second workshop, students took those analyses and worked in small groups to edit Wikipedia to improve Indigenous articles.

      This is a fantastic case study to explore CIL issues with.

    1. Early Attrition among First Time eLearners: A Review of Factors that Contribute to Drop-out, Withdrawal and Non-completion Rates of Adult Learners undertaking eLearning Programmes

      NEW - This study researches dropout rates in eLearning. There are many reasons for attrition with adult eLearners which can be complex and entwined. The researched provide different models to test and also a list of barriers to eLearning - where technology issues ranked first. In conclusion, the authors determined that further research was necessary to continue to identify the factors that contribute to adult learner attrition.

      RATING: 7/10

  26. Oct 2018
    1. MacBeth

      What you can see below is a page taken from the so called 'First Folio' - a cheap print of Shakespeare's texts.

  27. Sep 2018
  28. Feb 2018
    1. I was drawn to the site because it covers women's history, but the fact that it goes from 1600-2000 seems like it won't be able to give an in depth look at each movement, but rather an overview of all possible movements.

    2. OUR CROWDSOURCING EFFORTS: Looking toward the upcoming centennial of the passage of the Nineteenth Amendment that gave women nationally the right to vote, we are preparing an Online Biographical Dictionary of the Woman Suffrage Movement in the United States. For this project we are preparing biographical sketches of Black Woman Suffragists and supporters of the National Woman’s Party and the National American Woman Suffrage Association. We expect this work will yield names of more than 3,000 activists. We are working with colleagues who are writing biographical sketches, copyediting sketches, or supervising the work of students. If you are able to participate in this project during the next two years, please email Tom Dublin, who is coordinating this effort.

      It looks like they are asking for participation from all different scholars. That's really cool. I think it's important to be recognizing activists in history who otherwise would get no acknowledgment of their efforts. That's something that often doesn't happen. Women and other marginalized groups are often written out of the history books.