7 | {% include sidebar.html %}
8 |
9 |
10 |
{{ page.title }}
11 | {% include base_path %}
12 | {% for post in page.posts %}
13 | {% include archive-single.html %}
14 | {% endfor %}
15 |
16 |
--------------------------------------------------------------------------------
/_sass/vendor/susy/susy/language/susy/_validation.scss:
--------------------------------------------------------------------------------
1 | // Validation
2 | // ==========
3 |
4 |
5 | // Validate Column Math
6 | // --------------------
7 | @function valid-column-math(
8 | $math,
9 | $column-width
10 | ) {
11 | @if $math == static and not($column-width) {
12 | @error 'Static math requires a valid column-width setting.';
13 | }
14 |
15 | @return $column-width;
16 | }
17 |
--------------------------------------------------------------------------------
/talkmap/org-locations.js:
--------------------------------------------------------------------------------
1 | var addressPoints = [
2 | [
3 | "Berkeley CA, USA",
4 | 37.8708393,
5 | -122.2728638
6 | ],
7 | [
8 | "London, UK",
9 | 51.5073219,
10 | -0.1276473
11 | ],
12 | [
13 | "San Francisco, California",
14 | 37.7792808,
15 | -122.4192362
16 | ],
17 | [
18 | "Los Angeles, CA",
19 | 34.0543942,
20 | -118.2439408
21 | ]
22 | ];
--------------------------------------------------------------------------------
/_includes/analytics.html:
--------------------------------------------------------------------------------
1 | {% if site.analytics.provider and page.analytics != false %}
2 |
3 | {% case site.analytics.provider %}
4 | {% when "google" %}
5 | {% include /analytics-providers/google.html %}
6 | {% when "google-universal" %}
7 | {% include /analytics-providers/google-universal.html %}
8 | {% when "custom" %}
9 | {% include /analytics-providers/custom.html %}
10 | {% endcase %}
11 |
12 | {% endif %}
--------------------------------------------------------------------------------
/_talks/2018-04-10-talk-3.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: "[Introducción al análisis de audio usando Machine Learning](https://www.eventbrite.es/e/entradas-introduccion-al-analisis-de-audio-usando-machine-learning-44880699380?ref=estw
3 | )"
4 | collection: talks
5 | type: "Talk"
6 | permalink: /talks/2018-04-10-talk-3
7 | venue: "Universidad de San buenaventura"
8 | date: 2018-04-10
9 | location: "Medellín, Colombia"
10 | ---
11 |
--------------------------------------------------------------------------------
/_sass/vendor/susy/susy/language/_susyone.scss:
--------------------------------------------------------------------------------
1 | // ---------------------------------------------------------------------------
2 | // Partials
3 |
4 | $susy-version: 1.5;
5 |
6 | @import "susyone/settings";
7 | @import "susyone/functions";
8 | @import "susyone/grid";
9 | @import "susyone/isolation";
10 | @import "susyone/padding";
11 | @import "susyone/margin";
12 | @import "susyone/media";
13 | @import "susyone/background";
14 |
--------------------------------------------------------------------------------
/_data/comments/markup-syntax-highlighting/comment-1470969665387.yml:
--------------------------------------------------------------------------------
1 | message: "Here's a test comment with a Markdown code block:\r\n\r\n```scss\r\nh1, h2, h3, h4, h5, h6 {\r\n margin: 2em 0 0.5em;\r\n line-height: 1.2;\r\n font-family: $header-font-family;\r\n font-weight: bold;\r\n}\r\n```"
2 | name: Michael Rose
3 | email: 1ce71bc10b86565464b612093d89707e
4 | url: 'https://mademistakes.com'
5 | hidden: ''
6 | date: '2016-08-12T02:41:04.706Z'
7 |
--------------------------------------------------------------------------------
/_sass/vendor/breakpoint/_no-query.scss:
--------------------------------------------------------------------------------
1 | @function breakpoint-no-query($query) {
2 | @if type-of($query) == 'list' {
3 | $keyword: nth($query, 1);
4 |
5 | @if type-of($keyword) == 'string' and ($keyword == 'no-query' or $keyword == 'no query' or $keyword == 'fallback') {
6 | @return nth($query, 2);
7 | }
8 | @else {
9 | @return false;
10 | }
11 | }
12 | @else {
13 | @return false;
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/_sass/_animations.scss:
--------------------------------------------------------------------------------
1 | /* ==========================================================================
2 | ANIMATIONS
3 | ========================================================================== */
4 |
5 | @-webkit-keyframes intro {
6 | 0% {
7 | opacity: 0;
8 | }
9 | 100% {
10 | opacity: 1;
11 | }
12 | }
13 |
14 | @keyframes intro {
15 | 0% {
16 | opacity: 0;
17 | }
18 | 100% {
19 | opacity: 1;
20 | }
21 | }
--------------------------------------------------------------------------------
/_sass/vendor/font-awesome/_larger.scss:
--------------------------------------------------------------------------------
1 | // Icon Sizes
2 | // -------------------------
3 |
4 | /* makes the font 33% larger relative to the icon container */
5 | .#{$fa-css-prefix}-lg {
6 | font-size: (4em / 3);
7 | line-height: (3em / 4);
8 | vertical-align: -15%;
9 | }
10 | .#{$fa-css-prefix}-2x { font-size: 2em; }
11 | .#{$fa-css-prefix}-3x { font-size: 3em; }
12 | .#{$fa-css-prefix}-4x { font-size: 4em; }
13 | .#{$fa-css-prefix}-5x { font-size: 5em; }
14 |
--------------------------------------------------------------------------------
/_teaching/2015-spring-teaching-2.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: "Teaching experience 2"
3 | collection: teaching
4 | type: "Workshop"
5 | permalink: /teaching/2015-spring-teaching-1
6 | venue: "University 1, Department"
7 | date: 2015-01-01
8 | location: "City, Country"
9 | ---
10 |
11 | This is a description of a teaching experience. You can use markdown like any other post.
12 |
13 | Heading 1
14 | ======
15 |
16 | Heading 2
17 | ======
18 |
19 | Heading 3
20 | ======
21 |
--------------------------------------------------------------------------------
/_sass/vendor/susy/susy/output/support/_clearfix.scss:
--------------------------------------------------------------------------------
1 | // Susy Fallback Clearfix
2 | // ======================
3 |
4 |
5 | // Clearfix
6 | // --------
7 | // Check for an existing support mixin, or provide a simple fallback.
8 | @mixin susy-clearfix {
9 | @if susy-support(clearfix, (mixin: clearfix)) {
10 | @include clearfix;
11 | } @else {
12 | &:after {
13 | content: " ";
14 | display: block;
15 | clear: both;
16 | }
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/_teaching/2014-spring-teaching-1.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: "Teaching experience 1"
3 | collection: teaching
4 | type: "Undergraduate course"
5 | permalink: /teaching/2014-spring-teaching-1
6 | venue: "University 1, Department"
7 | date: 2014-01-01
8 | location: "City, Country"
9 | ---
10 |
11 | This is a description of a teaching experience. You can use markdown like any other post.
12 |
13 | Heading 1
14 | ======
15 |
16 | Heading 2
17 | ======
18 |
19 | Heading 3
20 | ======
--------------------------------------------------------------------------------
/_pages/talkmap.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: archive
3 | title: "Talk map"
4 | permalink: /talkmap.html
5 | author_profile: true
6 | ---
7 |
8 |