https://www.dendron.so/ logo
Join DiscordCommunities
Powered by
# today-i-learned
  • s

    seadude

    02/14/2022, 6:33 PM
    GEM at this timestamp!

    https://youtu.be/dW6m4_O0qvQ?t=1077▾

  • s

    ScriptAutomate

    02/14/2022, 7:03 PM
    TIL that GitHub will now render Mermaid diagrams, like Dendron, right in your Markdown files! https://github.blog/2022-02-14-include-diagrams-markdown-files-mermaid/
  • s

    ScriptAutomate

    02/15/2022, 5:36 AM
    When it comes to
    @hikchoi#8934
    (Mark's) workflow, there is a video showing his workflow as he did a previous Greenhouse Talk (which we are rebooting these events!) 🙂 - YouTube:

    https://www.youtube.com/watch?v=eOmUqvbUleo▾

    (buffer notes are talked about around 7:33, but whole video showed his workflow) - This may pair well with the "A Day in Dendron" video that Kevin posted above, too - Wiki notes/info on Mark's talk, Cerebrarium: https://wiki.dendron.so/notes/WUy5xtqQt3MwxcPG/
    h
    • 2
    • 1
  • h

    hikchoi

    02/15/2022, 6:43 AM
    buffer notes
  • s

    seadude

    02/15/2022, 7:33 AM
    Today I learned that you can create a clickable area (or MORE THAN one) of an image and have it link anywhere. - Useful for RevealJS presentations, etc - Using the
    usemap
    parameter of ``tags and
    <map>
    tags Example ### Put this into your Reveal.JS preso!
    Copy code
    html
    <img src="https://c.pxhere.com/photos/70/93/egg_hammer_threaten_violence_fear_intimidate_hit_beat-767438.jpg!d" usemap="#map" height="550"/>
    
    <map name="map">
        <area shape="circle" coords="330,350,50" alt="egg" href=".\assets\pdfs\timeline2.pdf" target="_blank">
        <area shape="circle" coords="430,250,50" alt="mallet" href=".\assets\pdfs\timeline3.pdf" target="_blank">
    </map>
  • t

    Tika

    02/15/2022, 8:57 AM
    Cool. Can these areas have visible annotations atop the image?
  • s

    seadude

    02/15/2022, 11:23 PM
    I'm unsure! So far, I just use the image itself (ex: the egg and the mallet in the sample image above).
  • s

    seadude

    02/15/2022, 11:37 PM
    Doesn't look like there is a
    border
    etc. parameter for the
    <map>
    or
    <area>
    tags... https://www.w3schools.com/tags/tag_area.asp
    t
    • 2
    • 3
  • s

    seadude

    02/15/2022, 11:53 PM
    HTML map
  • s

    ScriptAutomate

    02/18/2022, 8:39 PM
    TIL about the Sourcegraph extension for VS Code. I feel like it has interesting potential. Like, imagine searching public Dendron vaults directly from your VS Code? 😮 https://marketplace.visualstudio.com/items?itemName=sourcegraph.sourcegraph
  • b

    Bryan Jenks 🌱

    02/18/2022, 8:40 PM
    ooooo i use in the browser but i didnt know about the extension
  • b

    Bryan Jenks 🌱

    02/18/2022, 8:42 PM
    sweeeeeet
  • s

    seadude

    02/19/2022, 2:07 AM
    TIL a LOT about VS Code Snippets! *1. You can set a default value for a variable by using a colon (
    :
    ). *
    Example: - The
    DUE:
    property in the below snippet defaults to the current current month, date, hour but can be edited fairly quick
    Copy code
    "TODO": {
       "prefix": "stodo",
       "body": [
        "- [ ] ${1:Enter Task}",
        "- **CAPTURED:**        ${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE}T${CURRENT_HOUR}:${CURRENT_MINUTE}:${CURRENT_SECOND}-08:00",
        "- **DUE:**             ${CURRENT_YEAR}-${2:${CURRENT_MONTH}}-${3:${CURRENT_DATE}}T${4:${CURRENT_HOUR}}:${5:${CURRENT_MINUTE}}:00-08:00",
        "- **PRIORITY:**        ${6|HIGH,MEDIUM,LOW|}",
        "- **STATUS:**          ${7|TODO,WAITING,IN PROGRESS,DONE|}",
        "- **NOTES:**           ",
        "    - $0",
        ],
        "description": "Capture new TODO"
    }
    2. You can set dropdown values for a variable using a pipe (
    |
    ).
    Example:
    Copy code
    "Context Switch": {
       "prefix": "scontext",
       "body": [
        "- **TYPE:**          ${1|COMMS,SUPPORT,RESEARCH,MEETING,DEVELOPMENT,TESTING,VALIDATION,CI/CD,PROJECT MGMT,CONSULTING,DOCUMENTATION,ADMINISTRATION,TRAINING,BREAK|}",
        "- **PROJECT:**       ${2|PROJ1,PROJ2|}",
        "- **TOOLS:**         ${3|N/A,PYTHON,AZURE,POWER APPS,POWER AUTOMATE,POWER BI,SHAREPOINT,DENDRON|}",
        "- **START:**         ${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE}T${CURRENT_HOUR}:{$CURRENT_MINUTE}:${CURRENT_SECOND}-08:00",
        "- **END:**           ",
        "- **DURATION:**      ",
        "- **NOTES:**         ",
        "    - $0",
        "---"
        ],
        "description": "Capture new context switch"
    }
  • b

    Bryan Jenks 🌱

    02/20/2022, 4:01 AM
    @User bookmarker not working for me on this post, but on other. posts, does it lack permissions in this area?
  • k

    kevins8

    02/20/2022, 4:14 AM
    checking
  • k

    kevins8

    02/20/2022, 4:17 AM
    should work now
  • b

    Bryan Jenks 🌱

    02/20/2022, 4:17 AM
    ty!
  • b

    Bassmann

    02/20/2022, 1:54 PM
    Still doesn't seem to work for @seanluce post above 😳
  • b

    Bassmann

    02/20/2022, 1:57 PM
    Copied it into my knowledge base vault so no problem
  • k

    kevins8

    02/20/2022, 4:15 PM
    what is this referring to?
  • b

    Bassmann

    02/20/2022, 8:20 PM
    Bookmarker bot doesn't work on the note above at least on my mobile. Really nothing to pay attention to
  • k

    kevins8

    02/20/2022, 8:50 PM
    got it. might have an issue with old messages? seems to work now with new posts
  • b

    Bill M

    02/22/2022, 3:03 AM
    Wow what theme is that? It looks nice 👀
  • b

    Bryan Jenks 🌱

    02/22/2022, 3:32 AM
    it's the 1337 theme of H4X0R M45T3RS: >
    Gruxbox Hard Dark
  • s

    seadude

    02/22/2022, 3:53 AM
    Today I learned that you can add a single "size designator" character to control image size for images uploaded to StackOverflow. Example: - The
    m
    added after each image uploaded indicates "medium" size Reference: https://meta.stackoverflow.com/questions/253403/how-to-reduce-image-size-on-stack-overflow
  • s

    seadude

    02/22/2022, 3:54 AM
    🙂
  • a

    andrey-jef

    02/26/2022, 12:41 AM
    TIL that Microsoft has their own markdown syntax for its Microsoft Docs site, with support of admonition, 2-span column layout. https://docs.microsoft.com/en-us/contribute/markdown-reference Further, they also have their own way to include lines of code in the Markdown document https://docs.microsoft.com/en-us/contribute/code-in-docs I'm not sure till the end of my life, whether I can see who will be the winner of Markdown's standards 😄
  • b

    Bryan Jenks 🌱

    02/26/2022, 12:58 AM
    I always used 2 div’s in a parent div for 2column layout but then the markdown syntax usually gets ignored because of the html scope. Might as well right HTML documentation straight xD
  • b

    Bryan Jenks 🌱

    02/26/2022, 12:59 AM
    On azure DevOps their mermaid diagram syntax uses colons instead of back ticks it’s infuriating for my teams doc wiki
  • s

    ScriptAutomate

    02/26/2022, 1:03 AM
    I've now added the way they do admonitions to our open feature request discussion for admonitions support: https://github.com/dendronhq/dendron/issues/1287
1234567Latest