new layout, new name

This commit is contained in:
Mahdi Dibaiee
2016-11-09 15:57:01 +03:30
parent 5f28015e02
commit 24fccc3c7d
15 changed files with 80 additions and 87 deletions

View File

@ -1,49 +0,0 @@
---
layout: post
title: "Let's Begin"
date: 2015-03-09 17:13:46
permalink: beginning/
categories: self
---
So, I've decided to write about what I do and what I love.
It's possible that you find anything here, so don't be surprised, but most of it
is going to be about my programming journey, what I learn, what I do, and my opinions.
I like Medium, but I want a place in which I dictate, so here's my personal blog.
{% highlight javascript linenos %}
const SECOND = 1000;
let style = document.querySelector('style');
setInterval(() => {
const now = Date.now(),
birth = new Date(2015, 2, 9).getTime(),
color = `#(now - birth).toString(16).slice(0, 6)`,
style.textContent = `#mahdi path {
stroke: ${color} !important;
}`;
}, SECOND);
{% endhighlight %}
<style></style>
<script type="application/javascript;version=1.8">
var SECOND = 1000;
var style = document.querySelector('style');
setInterval(function() {
var now = Date.now(),
birth = new Date(2015, 2, 9).getTime(),
color = '#' + (now - birth).toString(16).slice(0, 6);
style.textContent = '#mahdi path {\
stroke: ' + color + ' !important; \
}';
}, SECOND)
</script>

View File

@ -3,7 +3,7 @@ layout: post
title: "CSS Filters are awesome!"
date: 2015-03-28 17:13:46
permalink: css-filters/
categories: css
categories: programming
---
I've been working on the [CSS Filter Editor widget](https://bugzilla.mozilla.org/show_bug.cgi?id=1055181) in Firefox Developer Tools for a couple of weeks, <s>it should land soon</s> It's here!. Thanks to [Patrick Brosset](https://medium.com/@patrickbrosset) for mentoring me and [Tim Nguyen](https://github.com/nt1m) for his great contributions.

View File

@ -3,7 +3,7 @@ layout: post
title: "BroadcastChannel API"
date: 2015-04-02 17:13:46
permalink: broadcastchannel-api/
categories: api
categories: programming
---
[BroadcastChannel API](https://developer.mozilla.org/en-US/docs/Web/API/Broadcast_Channel_API)

View File

@ -3,7 +3,7 @@ layout: post
title: "ES7 Array and Generator comprehensions"
date: 2015-06-06 13:47:00
permalink: es7-array-generator-comprehensions/
categories: es7, generator, array
categories: programming
---
Array comprehension is a new feature proposed for ES7, with a new syntax

View File

@ -3,7 +3,7 @@ layout: post
title: "Autocomplete using Tries"
date: 2015-07-24 09:44:00
permalink: autocomplete-predict-trie/
categories: algorithms
categories: programming
---
In this article, I'm going over creating an autocompletion/prediction system using a data-structure called Trie, it's fast and easy to customize.

View File

@ -3,7 +3,7 @@ layout: post
title: "Open-source: The Good, The Bad and The Ugly"
date: 2015-10-13 06:15:00
permalink: open-source-good-bad-ugly/
categories: experience, open-source, opinion
categories: programming
---
I have been doing Open-source for a while, I don't call myself an "expert" or something like that,