49 Matching Annotations
  1. Jun 2023
  2. viva.pressbooks.pub viva.pressbooks.pub
    1. previous chapter

      (relative reference not needed)

    2. previous

      I'd avoid any relative terms to the location of other chapters in the book. Removing "previous" would do the trick here.

    3. Recall from the fundamentals part that

      I'd avoid relative references like this. It could just start with "The third scale degree ..."

  3. Sep 2022
    1. The mostcommon relative poverty measure is one that counts individuals as poor if theyfall below one-half of a country’s median income.4
    1. It is often the case that a group or "tree" of documents has been constructed to serve a common purpose, wherein the vast majority of URI references in these documents point to resources within the tree rather than outside it. Similarly, documents located at a particular site are much more likely to refer to other resources at that site than to resources at remote sites. Relative referencing of URIs allows document trees to be partially independent of their location and access scheme.
    2. Relative referencing of URIs allows document trees to be partially independent of their location and access scheme.
  4. Aug 2022
    1. A striking example is the so-called rule of Vaugelas,which involves the relation between indefinite articles and relative clauses inFrench.
  5. Jul 2022
    1. I have always liked the weaving loom as a metaphor for weaving the absolute and relative together into one cloth. The absolute can be the warp, the relative can be the woof, and the shuttle or the jade works , can spin them all together into one cloth. It’s not that we have to make them into one cloth, they are always manifesting together in simultaneous realization . The jade works is the activity of life itself, the total dynamic functioning of the activity of the universe. Sometimes translated as: The Whole Works. Always right here. All-at-oneness.

      Weaving loom analogy! In life, weave the absolute and the relative into one clothes. The absolute is the warp The relative is the woof the Jade Works is the shuttle spinning appearances into one beautiful tapestry. one beautiful simultaneous realization The Whole Works!

      OR

      The absolute and relative are two sides of the same coin

    2. This is the paradoxical practice of Zen. How can we take care of the ordinary things and people in our daily life with care and attentiveness and still understand and know their impermanence? In practicing these two views simultaneously, we can come to understand freedom and to completely inhabit our one precious and unique human life. They mutually support each other and yet retain their distinctive qualities. We don’t call something that is white, black and yet we understand that white and black share the same essence. This understanding defines a good Zen practice. We take care of cause and effect from the basis of operation of boundless, timeless, open awareness.

      We straddle the absolute and relative with each step, each action in the simultaneous relative and absolute world. As Dasietz Suzuki said, "The elbow does not bend backwards". The world limits us, but freedom is all around.

    3. The absolute in the relative and the relative in the absolute

      Title: The absolute in the relative and the relative in the absolute Author: Judith Ragir Date: ?

  6. Apr 2022
    1. Setting "img max-width:100%" is a technique employed in responsive/fluid web site design so that images re-size proportionally when the browser is re-sized. Apparently some css grid systems have started setting this style by default. More info about fluid images here: http://www.alistapart.com/articles/fluid-images/
    1. Now, our img element will render at whatever size it wants, as long as it’s narrower than its containing element. But if it happens to be wider than its container, then the max-width: 100% directive forces the image’s width to match the width of its container.
  7. Mar 2022
    1. Wanta JampijinpaPatrick, a Warlpiri Elder, teaches that north corresponds to ‘Law’,south to ‘ceremony’, west to ‘language’ and east to ‘skin’. ‘Country’lies at the intersection of these directions, at the centre of thecompass: Westerners conceptualise it as ‘here’.

      In Warlpiri, the cardinal directions of north, south, east and west associatively correspond with the ideas of "Law", "ceremony", "skin", and "language" respectively. The idea of "Country" lies at the center of these directions in a space that Westerners would describe as "here".

      This directional set up underlines the value of each of the related concepts and provides pride of place to "Country" and one's being "in Country".


      Compare these with the Japanese pattern of こ (ko), そ (so), あ (a), ど (do) which describe a location with respect to the speaker.


      Western readers should notice here, that the author centers the name and position of the origin of this knowledge at the start of the sentence. While it is associated with him, it is also certainly associated with all his preceding ancestors and Elders who passed this information down.

      One might suspect that this practice isn't as common with base-level cultural knowledge, but that it becomes more important at succeeding levels of intimate area-based restricted knowledge. Placing the origin of the knowledge here at a more basic level of knowledge may help to instruct Western readers slowly and more surely understand how this foreign culture works.

      How closely does this practice generally look like the Western idea of citing one's sources which only evolved slowly over history and became more common with the flood of information in the 1500s?

    2. In the Warlpiri Aboriginal language of Central Australia, you do notdescribe positions of things with yourself as the focal reference point.Rather, your position is defined within the world around you. InWarlpiri, my computer is south of me, my cat is sleeping west of meand the door is east of me. It requires you to always know thecardinal directions (north, south, east and west), no matter yourorientation. Any one person is not the centre of the world, they arepart of it.

      Western cultures describe people's position in the world with them as the center, while Indigenous cultures, like those of the Warlpiri Aboriginal language of Central Australia, embed the person as part of the world and describe their position with respect to it using the cardinal directions.

  8. Sep 2021
    1. From my point of view, this approach will help you to write cleaner code. Also, it will help to maintain the project. For instance, moving a file from the current directory to another will cause fewer problems, because every file uses an absolute path instead of a relative one. Last but not least, it helps you during development.
    1. Saying that web devs used to be fine with relative imports is like saying that human beings used to be fine living without refrigerators. Sure we did. But was it better than it is now? No. No, it wasn't.
  9. Aug 2021
  10. May 2021
  11. Feb 2021
  12. Nov 2020
    1. Everyone working in a TypeScript project that grows beyond a certains limit will eventually experience the situation commonly described as path hell, the snippet below is an example of such hell.
    1. Unlike some other languages, Sass doesn’t require that you use ./ for relative imports. Relative imports are always available.
    1. Since Sass implementations don't provide url rewriting, all linked assets must be relative to the output.
    2. The sass-loader uses Sass's custom importer feature to pass all queries to the Webpack resolving engine. Thus you can import your Sass modules from node_modules. Just prepend them with a ~ to tell Webpack that this is not a relative import: @import '~bootstrap';
    1. Since Sass/libsass does not provide url rewriting, all linked assets must be relative to the output. Add the missing url rewriting using the resolve-url-loader.
    2. // ~ to tell that this is not a relative import @import '~bootstrap/dist/css/bootstrap'
  13. May 2020
  14. Nov 2019
    1. Much like the configuration layer, we need to specify a name for this transformation. This will help other modules negotiate their priority over the injector in relation to yours.
    1. File-relative configuration Babel loads .babelrc (and .babelrc.js / .babelrc.cjs / package.json#babel) files by searching up the directory structure starting from the "filename" being compiled (limited by the caveats below). This can be powerful because it allows you to create independent configurations for subsections of a package. File-relative configurations are also merged over top of project-wide config values, making them potentially useful for specific overrides, though that can also be accomplished through "overrides".
  15. Mar 2018
    1. That, on the other hand, is a system all by itself, and it’s rather restricted in its range. It only forms restrictive relative clauses, and then only in a narrow range of syntactic constructions. It can’t follow a preposition (the book of which I spoke rather than *the book of that I spoke) or the demonstrative that (they want that which they can’t have rather than *they want that that they can’t have), and it usually doesn’t occur after coordinating conjunctions. But it doesn’t make the same personhood distinction that who and which do, and it functions as a relative adverb sometimes. In short, the distribution of that is a subset of the distribution of the wh words. They are simply two different ways to make relative clauses, one of which is more constrained.

      One of the best explanations of why relative "that" isn't a pronoun.

  16. Oct 2015
  17. Sep 2013
    1. it is plain that the more we are under these conditions the more easily we are stirred.

      It's conditional, emotions must be gauged by the speaker and they must understand the context

    1. show that the good or the harm, the honour or disgrace, the justice or injustice, is great or small, either absolutely or relatively; and therefore it is plain that we must also have at our command propositions about greatness or smallness and the greater or the lesser -- propositions both universal and particular.

      There are degrees of goodness and justice, relativity

    1. it must adapt itself to an audience

      This seems to align more with Isocrates, that rhetoric depends on context and takes into account the audience