- - {{ post.title | escape }} - {%- include views/post-badges.html -%} - -
- -{{ article_excerpt }} Read More
- -+ + {{ post.title | escape }} {%- include views/post-badges.html -%} + +
+ ++ {{ article_excerpt }} Read More +
+ +-
-
- {%- if paginator == site or paginator.page == 1 -%}
- {%- assign post_item_class = "top-post" -%}
- {%- assign posts = site.posts
- | where_exp: "item", "item.top > 0"
- | sort: "top" -%}
- {%- for post in posts -%}
- {%- include views/pagination-item.html -%}
- {%- endfor -%}
- {%- endif -%}
+
+
-
+
+ {%- if paginator == site or paginator.page == 1 -%} {%- assign
+ post_item_class = "top-post" -%} {%- assign posts = site.posts |
+ where_exp: "item", "item.top > 0" | sort: "top" -%} {%- for post in
+ posts -%} {%- include views/pagination-item.html -%} {%- endfor -%} {%-
+ endif -%}
-
- {%- assign post_item_class = "" -%}
- {%- for post in paginator.posts -%}
- {%- if post.top -%}
- {%- continue -%}
- {%- endif -%}
- {%- include views/pagination-item.html -%}
- {%- endfor -%}
-
{{ heading | default: page.title | escape }}
-{{ subheading | default: page.subtitle | escape }}
++ {{ heading | default: page.title | escape }} +
++ {{ subheading | default: page.subtitle | escape }} +
- + {%- if page.tags.size > 0 -%} + + {%- endif -%}-
- {% for key in keys %}
-
-
+
-
+ {% for key in keys %}
+
- {%- include views/post-item.html -%} - - {% endif %} - {% endfor %} - {% endfor %} -
{{ key }}
+ {% assign items = site.posts | where: field, key %} {% for item in items + %} {% if item != nil %} {%- assign post_item_class = "" -%} {%- if + item.top -%} {%- assign post_item_class = "top-post" -%} {%- endif -%} +
+ {% endif %} {% endfor %} {% endfor %}
+
{{ key }}
- {% assign items = site.posts | where: field, key %} - {% for item in items %} - {% if item != nil %} - {%- assign post_item_class = "" -%} - {%- if item.top -%} - {%- assign post_item_class = "top-post" -%} - {%- endif -%} -404
+404
-Page not found :(
-Try to check other pages through the menu.
+Page not found :(
+Try to check other pages through the menu.
Hello, World!
- + + +Hello, World!
+ ``` @@ -61,10 +61,10 @@ In arcu magna, aliquet vel pretium et, molestie et arcu. Mauris lobortis nulla e In arcu magna, aliquet vel pretium et, molestie et arcu. Mauris lobortis nulla et felis ullamcorper bibendum. Phasellus et hendrerit mauris. -- First item, yo -- Second item, dawg -- Third item, what what?! -- Fourth item, fo sheezy my neezy +- First item, yo +- Second item, dawg +- Third item, what what?! +- Fourth item, fo sheezy my neezy ### Oh hai, an ordered list!! diff --git a/_posts/2017-06-10-quick-mardown-example.md b/_posts/2017-06-10-quick-mardown-example.md index 67f736a7129..e2a68009496 100644 --- a/_posts/2017-06-10-quick-mardown-example.md +++ b/_posts/2017-06-10-quick-mardown-example.md @@ -12,12 +12,12 @@ top: 2 Paragraphs are separated by a blank line. -2nd paragraph. *Italic*, **bold**, and `monospace`. Itemized lists +2nd paragraph. _Italic_, **bold**, and `monospace`. Itemized lists look like: - * this one - * that one - * the other one +- this one +- that one +- the other one Note that --- not considering the asterisk --- the actual text content starts at 4-columns in. @@ -32,16 +32,13 @@ Use 3 dashes for an em-dash. Use 2 dashes for ranges (ex., "it's all in chapters 12--14"). Three dots ... will be converted to an ellipsis. Unicode is supported. ☺ - - -An h2 header ------------- +## An h2 header Here's a numbered list: - 1. first item - 2. second item - 3. third item +1. first item +2. second item +3. third item Note again how the actual text starts at 4 columns in (4 characters from the left side). Here's a code sample: @@ -52,39 +49,37 @@ from the left side). Here's a code sample: As you probably guessed, indented 4 spaces. By the way, instead of indenting the block, you can use delimited blocks, if you like: -~~~ +``` define foobar() { print "Welcome to flavor country!"; } -~~~ +``` (which makes copying & pasting easier). You can optionally mark the delimited block for Pandoc to syntax highlight it: -~~~python +```python import time # Quick, count to ten! for i in range(10): # (but not *too* quick) time.sleep(0.5) print(i) -~~~ - - +``` -### An h3 header ### +### An h3 header Now a nested list: - 1. First, get these ingredients: +1. First, get these ingredients: - * carrots - * celery - * lentils + - carrots + - celery + - lentils - 2. Boil some water. +2. Boil some water. - 3. Dump everything in the pot and follow +3. Dump everything in the pot and follow this algorithm: find wooden spoon @@ -108,51 +103,57 @@ doc](#an-h2-header). Here's a footnote [^1]. Tables can look like this: -Name Size Material Color -------------- ----- ------------ ------------ -All Business 9 leather brown -Roundabout 10 hemp canvas natural -Cinderella 11 glass transparent +Name Size Material Color + +--- + +All Business 9 leather brown +Roundabout 10 hemp canvas natural +Cinderella 11 glass transparent Table: Shoes sizes, materials, and colors. (The above is the caption for the table.) Pandoc also supports multi-line tables: --------- ----------------------- -Keyword Text --------- ----------------------- -red Sunsets, apples, and - other red or reddish - things. +--- -green Leaves, grass, frogs - and other things it's - not easy being. --------- ----------------------- +Keyword Text + +--- + +red Sunsets, apples, and +other red or reddish +things. + +green Leaves, grass, frogs +and other things it's +not easy being. + +--- A horizontal rule follows. -*** +--- Here's a definition list: apples - : Good for making applesauce. +: Good for making applesauce. oranges - : Citrus! +: Citrus! tomatoes - : There's no "e" in tomatoe. +: There's no "e" in tomatoe. Again, text is indented 4 spaces. (Put a blank line between each -term and its definition to spread things out more.) +term and its definition to spread things out more.) Here's a "line block" (note how whitespace is honored): | Line one -| Line too +| Line too | Line tree and images can be specified like so: diff --git a/_posts/2017-12-04-plantuml-example.md b/_posts/2017-12-04-plantuml-example.md index e45b91ab1eb..d5a79f4726a 100644 --- a/_posts/2017-12-04-plantuml-example.md +++ b/_posts/2017-12-04-plantuml-example.md @@ -8,49 +8,49 @@ tags: [plantuml] ## My First PlantUML ### PlantUML Block-1 + @startuml Bob -> Alice : hello @enduml - ### PlantUML Block-2 -``` plantuml! + +```plantuml! Bob -> Alice : hello world ``` - ### PlantUML Block-3 + @startuml -(*) --> "Initialization" +(\*) --> "Initialization" if "Some Test" then - -->[true] "Some Activity" - --> "Another activity" - -right-> (*) +-->[true] "Some Activity" +--> "Another activity" +-right-> (_) else - ->[false] "Something else" - -->[Ending process] (*) +->[false] "Something else" +-->[Ending process] (_) endif @enduml - ### PlantUML Block-4 @startuml skinparam handwritten true skinparam usecase { - BackgroundColor DarkSeaGreen - BorderColor DarkSlateGray +BackgroundColor DarkSeaGreen +BorderColor DarkSlateGray - BackgroundColor<< Main >> YellowGreen - BorderColor<< Main >> YellowGreen +BackgroundColor<< Main >> YellowGreen +BorderColor<< Main >> YellowGreen - ArrowColor Olive - ActorBorderColor black - ActorFontName Courier +ArrowColor Olive +ActorBorderColor black +ActorFontName Courier - ActorBackgroundColor<< Human >> Gold +ActorBackgroundColor<< Human >> Gold } User << Human >> diff --git a/_posts/2017-12-08-mermaid-example.md b/_posts/2017-12-08-mermaid-example.md index 4b076809a19..6cad02f49ae 100644 --- a/_posts/2017-12-08-mermaid-example.md +++ b/_posts/2017-12-08-mermaid-example.md @@ -18,14 +18,14 @@ pie title Pets adopted by volunteers @startmermaid sequenceDiagram - Alice ->> Bob: Hello Bob, how are you? - Bob-->>John: How about you John? - Bob--x Alice: I am good thanks! - Bob-x John: I am good thanks! - Note right of John: Bob thinks a longlong time, so long
that the text does
not fit on a row. - - Bob-->Alice: Checking with John... - Alice->John: Yes... John, how are you? +Alice ->> Bob: Hello Bob, how are you? +Bob-->>John: How about you John? +Bob--x Alice: I am good thanks! +Bob-x John: I am good thanks! +Note right of John: Bob thinks a long
long time, so long
that the text does
not fit on a row. + +Bob-->Alice: Checking with John... +Alice->John: Yes... John, how are you? @endmermaid ```mermaid! @@ -38,6 +38,7 @@ A[Christmas] -->|Get money| B(Go shopping) ``` ### 3. Class diagram + ```mermaid! classDiagram Animal <|-- Duck @@ -63,6 +64,7 @@ class Zebra{ ``` ### 4. State diagram + ```mermaid! stateDiagram [*] --> Still diff --git a/_posts/2017-12-15-table-example.md b/_posts/2017-12-15-table-example.md index af03411cedb..fc40b7c6c67 100644 --- a/_posts/2017-12-15-table-example.md +++ b/_posts/2017-12-15-table-example.md @@ -10,102 +10,99 @@ tags: [table] **For now, these extended features are provided:** -* Cells spanning multiple columns -* Cells spanning multiple rows -* Cells text align separately -* Table header not required -* Grouped table header rows or data rows +- Cells spanning multiple columns +- Cells spanning multiple rows +- Cells text align separately +- Table header not required +- Grouped table header rows or data rows ### Rowspan and Colspan -^^ in a cell indicates it should be merged with the cell above. -This feature is contributed by [pmccloghrylaing](https://github.com/pmccloghrylaing). - -| Stage | Direct Products | ATP Yields | -| ----: | --------------: | ---------: | -|Glycolysis | 2 ATP || -|^^ | 2 NADH | 3--5 ATP | -|Pyruvaye oxidation | 2 NADH | 5 ATP | -|Citric acid cycle | 2 ATP || -|^^ | 6 NADH | 15 ATP | -|^^ | 2 FADH | 3 ATP | -| 30--32 ATP ||| + +^^ in a cell indicates it should be merged with the cell above. +This feature is contributed by [pmccloghrylaing](https://github.com/pmccloghrylaing). + +| Stage | Direct Products | ATP Yields | +| -----------------: | --------------: | ---------: | +| Glycolysis | 2 ATP | | +| ^^ | 2 NADH | 3--5 ATP | +| Pyruvaye oxidation | 2 NADH | 5 ATP | +| Citric acid cycle | 2 ATP | | +| ^^ | 6 NADH | 15 ATP | +| ^^ | 2 FADH | 3 ATP | +| 30--32 ATP | | | [ Net ATP yields per hexose] ### Multiline -A backslash at end to join cell contents with the following lines. -This feature is contributed by [Lucas-C](https://github.com/Lucas-C). -|: Easy Multiline :||| -|:------ |:------ |:-------- | -| Apple | Banana | Orange \ -| Apple | Banana | Orange \ -| Apple | Banana | Orange -| Apple | Banana | Orange \ -| Apple | Banana | Orange | -| Apple | Banana | Orange | +A backslash at end to join cell contents with the following lines. +This feature is contributed by [Lucas-C](https://github.com/Lucas-C). +| : Easy Multiline : | | | +| :----------------- | :----- | :-------- | +| Apple | Banana | Orange \ | +| Apple | Banana | Orange \ | +| Apple | Banana | Orange | +| Apple | Banana | Orange \ | +| Apple | Banana | Orange | +| Apple | Banana | Orange | ### Headerless + Table header can be eliminated. |--|--|--|--|--|--|--|--| -|♜ | |♝ |♛ |♚ |♝ |♞ |♜ | -| |♟ |♟ |♟ | |♟ |♟ |♟ | -|♟ | |♞ | | | | | | -| |♗ | | |♟ | | | | -| | | | |♙ | | | | -| | | | | |♘ | | | -|♙ |♙ |♙ |♙ | |♙ |♙ |♙ | -|♖ |♘ |♗ |♕ |♔ | | |♖ | - +|♜ | |♝ |♛ |♚ |♝ |♞ |♜ | +| |♟ |♟ |♟ | |♟ |♟ |♟ | +|♟ | |♞ | | | | | | +| |♗ | | |♟ | | | | +| | | | |♙ | | | | +| | | | | |♘ | | | +|♙ |♙ |♙ |♙ | |♙ |♙ |♙ | +|♖ |♘ |♗ |♕ |♔ | | |♖ | ```markdown -|: Fruits \|\| Food :||| -|:-------- |:-------- |:------------ | -| Apple |: Apple :| Apple \ -| Banana | Banana | Banana \ -| Orange | Orange | Orange | -|: Rowspan is 5 :||: How's it? :| -|^^ A. Peach ||^^ 1. Fine | -|^^ B. Orange ||^^ 2. Bad $I = \int \rho R^{2} dV$ | -|^^ C. Banana || It's OK! ![example image][my-image] | +| : Fruits \|\| Food : | | | +| :------------------- | :-------- | :---------------------------------- | +| Apple | : Apple : | Apple \ | +| Banana | Banana | Banana \ | +| Orange | Orange | Orange | +| : Rowspan is 5 : | | : How's it? : | +| ^^ A. Peach | | ^^ 1. Fine | +| ^^ B. Orange | | ^^ 2. Bad $I = \int \rho R^{2} dV$ | +| ^^ C. Banana | | It's OK! ![example image][my-image] | ``` ### Text Alignment -Table cell can be set alignment separately. - -| \:Fruits || Food :| -|:-------- |:------ |:-------- | -| Apple | Banana | Orange | -| Apple | Banana | Orange | - - -| | Fruits\:: || -|:-------- |:------ |:-------- | -| Apple | Banana | Orange | -| Apple | Banana | Orange | - - -|: \:Fruits :|| |: Food :|| -|:-------- |:------ |:-------- |:-------- |:------ | -| Apple | Banana | Orange |: Strawberry :| -| Apple & Banana || ^^ | Peach :|| - - -|: \:Fruits :|| |: Food :|| -| Apple | Banana | Orange |: Strawberry :| +Table cell can be set alignment separately. -|: Fruits \|\| Food :||| -|:-------- |:-------- |:------------ | -| Apple |: Apple :| Apple \ -| Banana | Banana | Banana \ -| Orange | Orange | Orange | -|: Rowspan is 5 :||: How's it? :| -|^^ A. Peach ||^^ 1. Fine | -|^^ B. Orange ||^^ 2. Bad $I = \int \rho R^{2} dV$ | -|^^ C. Banana || It's OK! ![example image][my-image] | +| \:Fruits | | Food : | +| :------- | :----- | :----- | +| Apple | Banana | Orange | +| Apple | Banana | Orange | + +| | Fruits\:: | | +| :---- | :-------- | :----- | +| Apple | Banana | Orange | +| Apple | Banana | Orange | + +| : \:Fruits : | | | : Food : | | +| :------------- | :----- | :----- | :------------- | :-- | +| Apple | Banana | Orange | : Strawberry : | +| Apple & Banana | | ^^ | Peach : | | + +|: \:Fruits :|| |: Food :|| +| Apple | Banana | Orange |: Strawberry :| + +| : Fruits \|\| Food : | | | +| :------------------- | :-------- | :---------------------------------- | +| Apple | : Apple : | Apple \ | +| Banana | Banana | Banana \ | +| Orange | Orange | Orange | +| : Rowspan is 5 : | | : How's it? : | +| ^^ A. Peach | | ^^ 1. Fine | +| ^^ B. Orange | | ^^ 2. Bad $I = \int \rho R^{2} dV$ | +| ^^ C. Banana | | It's OK! ![example image][my-image] | [my-image]: http://www.unexpected-vortices.com/sw/rippledoc/example-image.jpg "An exemplary image" - diff --git a/_posts/2017-12-18-video-example.md b/_posts/2017-12-18-video-example.md index 353cdb7b54f..4343e7c91b4 100644 --- a/_posts/2017-12-18-video-example.md +++ b/_posts/2017-12-18-video-example.md @@ -7,11 +7,13 @@ tags: [video] --- ## Canon in D (Pachelbel's Canon) - Cello & Piano [BEST WEDDING VERSION] -Some of you know that we occasionally play for weddings. As you can imagine, we get a LOT of requests for Canon in D, and we discovered that there were no good arrangements available anywhere for piano and cello! Hard to believe given its popularity. So we decided to make our own! We tried to stick as closely to the original as possible (which was written for three violins and basso continuo), and we performed it *not* at a snail's pace so the bride can actually make it down the aisle without putting everyone to sleep. 🙊(Yeah, we said it! Nobody likes a slow processional!) Also, the number one complaint about this piece from cellists is always how booooring it is to play because they literally have to play the same 8 bass notes over and over for the entire piece. Problem solved with this arrangement because the cello never has to play the bass! 🙌(The piano does, but we get lots of other fun stuff too so it's ok!) So for all you musicians out there playing weddings, we hope you enjoy playing this arrangement a little more than the ones you were used to...You can get it from www.musicnotes.com. 😊Be sure to let us know in the comments if you do! + +Some of you know that we occasionally play for weddings. As you can imagine, we get a LOT of requests for Canon in D, and we discovered that there were no good arrangements available anywhere for piano and cello! Hard to believe given its popularity. So we decided to make our own! We tried to stick as closely to the original as possible (which was written for three violins and basso continuo), and we performed it _not_ at a snail's pace so the bride can actually make it down the aisle without putting everyone to sleep. 🙊(Yeah, we said it! Nobody likes a slow processional!) Also, the number one complaint about this piece from cellists is always how booooring it is to play because they literally have to play the same 8 bass notes over and over for the entire piece. Problem solved with this arrangement because the cello never has to play the bass! 🙌(The piano does, but we get lots of other fun stuff too so it's ok!) So for all you musicians out there playing weddings, we hope you enjoy playing this arrangement a little more than the ones you were used to...You can get it from www.musicnotes.com. 😊Be sure to let us know in the comments if you do! ![](//www.youtube.com/watch?v=Ptk_1Dc2iPY) ## GUCCI HALLUCINATION / THE LINE ANIMATION / GUCCI + BACKGROUND / Gucci share their creative vision through a series of surreal animated paintings by acclaimed artist Ignasi Monreal and The Line Animation studio. The animations make up part of a larger campaign shared via social media, above the line and print. @@ -22,12 +24,12 @@ Our aim was to ground and accentuate the outlandish scenarios with ambient sound ![](https://vimeo.com/263856289) - ## FINNEAS Demos How He Builds Songs For Billie Eilish -Grammy Award-winning musician and producer FINNEAS sits down with Pitchfork and closely examines his creative process while working on some of the biggest hit songs of the past couple years. FINNEAS explores the sounds that brought upon + +Grammy Award-winning musician and producer FINNEAS sits down with Pitchfork and closely examines his creative process while working on some of the biggest hit songs of the past couple years. FINNEAS explores the sounds that brought upon some of his greatest musical breakthroughs in songs such as bad guy, bury a friend, ocean eyes, when the party's over, I Lost a Friend, Used to This and much more. -![][demo] +![][demo] [demo]: https://dai.ly/x7tgcev @@ -35,9 +37,9 @@ some of his greatest musical breakthroughs in songs such as bad guy, bury a frie In future, drivers will be able to choose whether they wish to be driven or do the driving themselves. With the BMW Vision M NEXT, the BMW Group is revealing its take on how driving pleasure might look in future. It offers a foretaste of the BMW M brand’s electrified future by placing the focus squarely on the actively engaged driver. Intelligent technologies provide comprehensive yet carefully targeted assistance to turn them into the ultimate driver. -![](https://www.dailymotion.com/video/x7bur2y) +![](https://www.dailymotion.com/video/x7bur2y) ## This is the poster image + In modern browsers, adding a video to your page is as easy as adding an image. No longer do you need to deal with special plug-ins or require crazy markup, you can do it with a single element. ![video](//www.html5rocks.com/en/tutorials/video/basics/devstories.webm) - diff --git a/_posts/2018-05-26-mathjax-test.md b/_posts/2018-05-26-mathjax-test.md index 92bf6f17c98..6b20fc1f20f 100644 --- a/_posts/2018-05-26-mathjax-test.md +++ b/_posts/2018-05-26-mathjax-test.md @@ -6,8 +6,8 @@ categories: markdown tags: [test] --- -* A safe integer is an integer that - * can be exactly represented as an IEEE-754 double precision number, and - * whose IEEE-75 representation cannot be the result of rounding any other integer to fit the IEEE-754 representation -* For example, $ 2 ^ {53} - 1 $ is a safe integer, - * it can be exactly represented +- A safe integer is an integer that + - can be exactly represented as an IEEE-754 double precision number, and + - whose IEEE-75 representation cannot be the result of rounding any other integer to fit the IEEE-754 representation +- For example, $ 2 ^ {53} - 1 $ is a safe integer, + - it can be exactly represented diff --git a/_posts/2018-12-05-an-exhibit-of-markdown.md b/_posts/2018-12-05-an-exhibit-of-markdown.md index 1748ca2247d..39bb86fe379 100644 --- a/_posts/2018-12-05-an-exhibit-of-markdown.md +++ b/_posts/2018-12-05-an-exhibit-of-markdown.md @@ -10,15 +10,13 @@ This note demonstrates some of what [Markdown][1] is capable of doing. ## An exhibit of Markdown - - -*Note: Feel free to play with this page. Unlike regular notes, this doesn't automatically save itself.* +_Note: Feel free to play with this page. Unlike regular notes, this doesn't automatically save itself._ ## Basic formatting Paragraphs can be written like so. A paragraph is the basic block of Markdown. A paragraph is what text will turn into when there is no reason it should become anything else. -Paragraphs must be separated by a blank line. Basic formatting of *italics* and **bold** is supported. This *can be **nested** like* so. +Paragraphs must be separated by a blank line. Basic formatting of _italics_ and **bold** is supported. This _can be **nested** like_ so. ## Lists @@ -29,14 +27,14 @@ Paragraphs must be separated by a blank line. Basic formatting of *italics* and 3. Number 3 4. Ⅳ -*Note: the fourth item uses the Unicode character for [Roman numeral four][2].* +_Note: the fourth item uses the Unicode character for [Roman numeral four][2]._ ### Unordered list -* An item -* Another item -* Yet another item -* And there's more... +- An item +- Another item +- Yet another item +- And there's more... ## Paragraph modifiers @@ -54,7 +52,7 @@ You can also make `inline code` to add code into other things. There are six levels of headings. They correspond with the six levels of HTML headings. You've probably noticed them already in the page. Each level down uses one more hash character. -### Headings *can* also contain **formatting** +### Headings _can_ also contain **formatting** ### They can even contain `inline code` @@ -66,9 +64,9 @@ I don't recommend using more than three or four levels of headings here, because URLs can be made in a handful of ways: -* A named link to [MarkItDown][3]. The easiest way to do these is to select what you want to make a link and hit `Ctrl+L`. -* Another named link to [MarkItDown](https://www.markitdown.net/) -* Sometimes you just want a URL like
About
- :art: Yet another theme for elegant writers with modern flat style - and beautiful night mode. + :art: Yet another theme for elegant writers with modern flat style and + beautiful night mode.
@@ -18,12 +18,16 @@
About
About the Fulgor Foundation
-Las áreas de foco estratégico de la Fundación consisten en tareas de fondo a realizar o valores y modalidades de trabajo -a cultivar, que impregnan todos los programas y proyectos de la Fundación sin ser en sí mismos programas o proyectos. -Las áreas de foco estratégico incluyen: +Las áreas de foco estratégico de la Fundación consisten en tareas de fondo a +realizar o valores y modalidades de trabajo a cultivar, que impregnan todos los +programas y proyectos de la Fundación sin ser en sí mismos programas o +proyectos. Las áreas de foco estratégico incluyen:- Generación de Excelencia Académica, Científica y Tecnológica -
- Fortalecimiento de los Valores Nacionales y Patrióticos en la Sociedad Argentina +
- + Fortalecimiento de los Valores Nacionales y Patrióticos en la Sociedad + Argentina +
- Fortalecimiento de la Cultura Nacional -