111 Matching Annotations
  1. Mar 2023
    1. You can also create notes in the browser with basic formatting options, such as headings, bold, italic, underline, strikethrough, links, and images. However, if you use advanced note-taking apps like Notion or Obsidian, ARC Browser may not replace them. It is still a useful feature for basic note taking and can be a great way to keep track of your ideas.

      It would be interesting, if there was a possibility to annotate specific pages.

    2. One of the most interesting features of ARC Browser is the "boosts", which are little snippets of code to overwrite website functions or design if you know a little CSS and JavaScript.

      How is this different from Greasemonkey or Stylus extension?

  2. Aug 2022
    1. 2) zabudujte do ní i cestu, neboli vyprávění; můžete například přidat uzel "ZAČNĚTE ZDE" a pak například očíslujte koncové větve jednu po druhé v pořadí (např. ve stylu tzv. „zpravodajské pyramidy”), c

      Zajímavý problém hlavně u OrgPadu.

    2. Appka s neomezeným digitálním plátnem je proto podle mne nenahraditelným nástrojem – a teprve při jejím použití může i myšlenková mapa v rámci možností zazářit.

      Na jednu stranu souhlasím, ale zároveň příliš velké digitální plátno vede k nepřehlednosti :).

    3. Namátkou: fulltextově postavený outliner či grafová aplikace, moodboard, serendipity generátor, kanban, spaced repetition, zettelkasten, různé mentální modely...

      Kam se řadí koncepční mapy (concept maps)?

    4. Fyzická hranice papíru vytváří skutečné i nevědomě pociťované omezení, které jde přímo proti této výhodě.

      Je-li však mapa příliš velká, ztrácí zároveň na přehlednosti. V tom může jisté omezení velikosti pomoci.

    5. Myšlenková mapa pracuje primárně se stromovou strukturou. To zpočátku pomáhá rychle rozebrat problém a najít nové asociace, ale rychle pak vede k jejich fixaci této struktury, což stojí v cestě volné představivosti. Prostě najednou vidíte strom, přes který už nikdy neuvidíte celý les. Tvoření nečekaných asociací končí tam, kde jsou větvičky uspokojivě zaškatulkovány do podkategorií.

      Něco jako myšlenkové mapy najdeme už ve středověku, často v nich však nejde jenom o větvení informací, ale i o jejich další spojování.

    6. myšlenkové mapy

      Přijde mi zajímavé, že etymologicky by myšlenkové mapy měly mapovat mysl - mapy však přece nejsou zcela hierarchické a a ni naše mysl taková není.

  3. Jul 2022
  4. Jul 2021
  5. May 2021
    1. The technique of fragmentation is often complemented by the technique of virtual joins. Virtual joins may be used to combine objects in the text to a new hierarchy. Here is Scorn not the sonnet again; this time the relationship between the parts of the fragmented sentences is indicated explicitly using the next and prev attributes described in 16.7 Aggregation

      Using @next and @prev attributes.

  6. Dec 2020
  7. Nov 2020
  8. Oct 2020
  9. Jun 2020
  10. May 2020
    1. <div class="templates:surround?with=templates/page.html&amp;at=content"> <h1>Table of Contents</h1> <div data-template="app:toc"/> </div>

      This seems to combine two different ways of HTML templating:

      • class
      • data-tag

      Should it be done in this way?

    1. Collections tile which will open the Collection Browser. Navigate to the application root directory /db/apps/thun-demo, click on the New Collection icon, enter pages as name and click ok.

      This seems to be outdated. AFAIK, the way now is to use DB Manager in eXide.

    1. Regular Expression Functions There are three regular-expression functions that operate on strings: matches() tests if a regular expression matches a string. replace() uses regular expressions to replace portions of a string. tokenize() returns a sequence of strings formed by breaking a supplied input string at any separator that matches a given regular expression. Example:   

      Test question: how many are there regular-expression functions in XSLT?

    2. <body> <h1>Introduction</h1> <p>XSLT is used to write stylesheets.</p> <p>XQuery is used to query XML databases.</p> <h1>What is a stylesheet?</h1> <p>A stylesheet is an XML document used to define a transformation.</p> <p>Stylesheets may be written in XSLT.</p> <p>XSLT 2.0 introduces new grouping constructs.</p> </body>

      Grouping by starting value - very important for TEI XML.

    3. What’s the difference between xsl:value-of, xsl:copy-of, and xsl:sequence? xsl:value-of always creates a text node. xsl:copy-of always creates a copy. xsl:sequence returns the nodes selected, subject possibly to atomization. Sequences can be extended with xsl:sequence.

      What’s the difference between xsl:value-of, xsl:copy-of, and xsl:sequence?

    4. Types XSLT 2.0 allows you to declare: The type of variables. The return type of templates. The type of sequences (constructed with xsl:sequence) The return type of (user-declared) functions. Both the type and required type of parameters.

      What are the types that one can declare in XSLT 2?

  11. Apr 2020
    1. Badges can be set using JavaScript in the background script (make sure to mention the background script in the extension manifest). There are two functions you need to be aware of:

      Important! They are in the background script.

    1. What is a Function Expression?A JavaScript function can also be defined using an expression.A function expression can be stored in a variable:var x = function (a, b) {return a * b};After a function expression has been stored in a variable, the variable can be used as a function. Functions stored in variables do not need function names. They are always invoked (called) using the variable name.

      Test question: What is function expression?

  12. javascript.info javascript.info
    1. Hypothesis already deals with minor changes to a document thanks to our fuzzy anchoring algorithm, which can cleverly locate the original annotated selection even if it or its surrounding context has changed slightly or been moved around.

      Summary: Small changes in the document should be okay.

    1. you create an HTML file and point to it using a specific property in manifest.json. The HTML file can include CSS and JavaScript files, just like a normal web page.

      Test question: How do you link in manifest.json sidebar, popup and options page?

  13. developer.mozilla.org developer.mozilla.org
  14. developer.mozilla.org developer.mozilla.org