Back to TILs

Shortcode

Date: 2024-02-24Last modified: 2024-02-26

toc

  ::: toc

Table of contents

fixme

Default title

  ::: fixme
  text text text
  \
  text text text
  text text text
  blank line

Alternative title

  ::: fixme title="Alternative title"
  text text text
  text text text
  text text text
  blank line

warning

Default title

  ::: warning
  text text text
  \
  text text text
  text text text
  blank line

Alternative title

  ::: warning title="Alternative title"
  text text text
  text text text
  text text text
  blank line

tip

Default title

  ::: tip
  text text text
  \
  text text text
  text text text
  blank line

Alternative title

  ::: tip title="Alternative title"
  text text text
  text text text
  text text text
  blank line

info

Default title

  ::: info
  text text text
  \
  text text text
  text text text
  blank line

Alternative title

  ::: info title="Alternative title"
  text text text
  text text text
  text text text
  blank line

note

Default title

  ::: note
  text text text
  \
  text text text
  text text text
  blank line

Alternative title

  ::: note title="Alternative title"
  text text text
  text text text
  text text text
  blank line

youtube

  ::: youtube id="EsZFgm3wGOc" title="Why do we use CAN Communication? Advantages of CAN communication"

citation

  ::: citation author="Jack Welch"
  Quando o ritmo de mudança dentro da empresa for ultrapassado pelo ritmo da
  mudança fora dela, o fim está próximo.

Quando o ritmo de mudança dentro da empresa for ultrapassado pelo ritmo da mudança fora dela, o fim está próximo.

</p>
<p class="text-right">
  <strong class="text-slate-200">Jack Welch</strong>
</p>

citation body

</p>
<p class="text-right">
  <strong class="text-slate-200">Author</strong>
</p>

Quando o ritmo de mudança dentro da empresa for ultrapassado pelo ritmo da mudança fora dela, o fim está próximo.

</p>
<p class="text-right">
  <strong class="text-slate-200">Jack Welch</strong>
</p>
  ::: citation author="Bjarne Stroustrup (2012)"
  The best example of why I shouldn't be in marketing...
  I didn't have a good day when I named that
  \
  A better name is probably:
  \
  * Constructor Acquires, Destructor Releases
  * Scope Based Resource Management

The best example of why I shouldn’t be in marketing… I didn’t have a good day when I named that

A better name is probably:

  • Constructor Acquires, Destructor Releases

  • Scope Based Resource Management

    Bjarne Stroustrup (2012)

figure

  ::: figure title="Microservice architecture vs monolithic architecture" \
    src="/til/microservice-architecture-01.webp" \
    cite="https://docs.oracle.com/en/solutions/learn-architect-microservice/"
Microservice architecture vs monolithic architecture
Fig. 1 — Microservice architecture vs monolithic architecture
Source: https://docs.oracle.com/en/solutions/learn-architect-microservice/

include

  ::: include bash src/static_src/til/animate.gp
# Arquivo animate.gnuplot
plot sin(x+i*dt) w l lt 1 lw 1.5 title sprintf("t=%i",i)
i=i+1
if (i < n) reread
  ::: include 3 5 bash src/static_src/til/animate.gp
i=i+1
if (i < n) reread
  ::: include 3 +2 bash src/static_src/til/animate.gp
i=i+1
if (i < n) reread