move videos to YT

This commit is contained in:
Basile Burg 2017-10-18 21:27:07 +02:00
parent 692c79b9f9
commit d1d30f2880
No known key found for this signature in database
GPG Key ID: 1868039F415CB8CF
1 changed files with 9 additions and 16 deletions

View File

@ -6,6 +6,8 @@ title: Usage in video
<script src="//cdnjs.cloudflare.com/ajax/libs/anchor-js/4.0.0/anchor.min.js"></script>
{% endraw %}
Picked from a dedecated [playlist](https://www.youtube.com/playlist?list=PLzk8A0LUvEOV-OMdz09jfOahwnKoA2na_), and with description.
### Debug a runnable
This video shows how a [runnable module](features_runnables) can be debugged in the [GDB commander](widgets_gdb_commander) widget.
@ -13,7 +15,7 @@ The runnable calls a function that returns an `int`.
A breakpoint is put before returning and the result is patched in the CPU inspector by changing RAX value.
{% raw %}
<div class="tumblr-post" data-href="https://embed.tumblr.com/embed/post/RfMjxAacl04tQydtQ8GmYA/161537904188" data-did="da39a3ee5e6b4b0d3255bfef95601890afd80709" data-language="en_US"><a href="https://abstractop.tumblr.com/post/161537904188">https://abstractop.tumblr.com/post/161537904188</a></div> <script async src="https://assets.tumblr.com/post.js"></script>
<iframe width="560" height="315" src="https://www.youtube.com/embed/HbEPkA1EfaU" frameborder="0" allowfullscreen></iframe>
{% endraw %}
### GIT gui as a tool
@ -22,7 +24,7 @@ This video shows how to setup a [custom tool](widgets_custom_tools) that invokes
The trick is to set the tool's current working directory with a [symbolic string](features_symbolic_strings) that's expanded to the current project location.
{% raw %}
<div class="tumblr-post" data-href="https://embed.tumblr.com/embed/post/RfMjxAacl04tQydtQ8GmYA/161538065841" data-did="da39a3ee5e6b4b0d3255bfef95601890afd80709" data-language="en_US"><a href="https://abstractop.tumblr.com/post/161538065841">https://abstractop.tumblr.com/post/161538065841</a></div> <script async src="https://assets.tumblr.com/post.js"></script>
<iframe width="560" height="315" src="https://www.youtube.com/embed/sRmc-CDcx2I" frameborder="0" allowfullscreen></iframe>
{% endraw %}
### Compiler paths
@ -31,7 +33,7 @@ This video shows how it's easy to [select a specific D compiler](options_compile
Here the choice is applied to the compiler used to make a runnable but the same setting also exists for the projects.
{% raw %}
<div class="tumblr-post" data-href="https://embed.tumblr.com/embed/post/RfMjxAacl04tQydtQ8GmYA/161552390630" data-did="da39a3ee5e6b4b0d3255bfef95601890afd80709"><a href="https://abstractop.tumblr.com/post/161552390630">https://abstractop.tumblr.com/post/161552390630</a></div> <script async src="https://assets.tumblr.com/post.js"></script>
<iframe width="560" height="315" src="https://www.youtube.com/embed/RuisTY6m_3E" frameborder="0" allowfullscreen></iframe>
{% endraw %}
### Library manager and runnables
@ -41,26 +43,17 @@ The most important operations are made in the [library manager](widgets_library_
At the end and to make obvious the automatic aspect of a library selection, the runnable is compiled while the new libman entry is deactivated, which results in a compiler error.
{% raw %}
<div class="tumblr-post" data-href="https://embed.tumblr.com/embed/post/RfMjxAacl04tQydtQ8GmYA/161655243088" data-did="af776982db9ee6d2165b243bceccac121d668407"><a href="https://abstractop.tumblr.com/post/161655243088/coedit-library-manager-and-runnables">https://abstractop.tumblr.com/post/161655243088/coedit-library-manager-and-runnables</a></div> <script async src="https://assets.tumblr.com/post.js"></script>
<iframe width="560" height="315" src="https://www.youtube.com/embed/FapAXM5yDLI" frameborder="0" allowfullscreen></iframe>
{% endraw %}
### Programming sessions - parse enum in YATOL
### DDOC templates
This video shows a full programming session during which i add a new grammar construct to my [toy programming language](https://github.com/BBasile/yatol).
There are 3 parts:
1. The formal grammar (i use a PEG that can be used in [Pegged](https://github.com/PhilippeSigaud/Pegged)) is updated.
2. The hand written parser is updated.
3. Changes are pushed on line and i wait for TravisCI to start (which didn't happen !).
This video shows how a DDOC template can be inserted for a new function, with prefilled `Returns` and `Params` sections.
{% raw %}
<iframe src="https://player.vimeo.com/video/222057562" width="640" height="480" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
<iframe width="560" height="315" src="https://www.youtube.com/embed/VEVqSItCKfo" frameborder="0" allowfullscreen></iframe>
{% endraw %}
The video illustrate well that the [runnable](features_runnables) modules (the command Run module unittest is a subset of the feature) are valuable.
The PEG can be tested on the fly because pegged is registered in the [library manager](widgets_library_manager).
The parser can be tested on the fly because the compiler (as a library) is registered in the [library manager](widgets_library_manager).
The custom tools allows to easily push changes online.
{% raw %}