diff options
Diffstat (limited to '_includes')
| -rw-r--r-- | _includes/dmp.markdown | 14 | ||||
| -rw-r--r-- | _includes/footer.html | 3 | ||||
| -rw-r--r-- | _includes/header.html | 34 |
3 files changed, 30 insertions, 21 deletions
diff --git a/_includes/dmp.markdown b/_includes/dmp.markdown deleted file mode 100644 index 8eb08b6..0000000 --- a/_includes/dmp.markdown +++ /dev/null @@ -1,14 +0,0 @@ -DMP -=== - -The projects was started by me because I didn't like the fact that most crossplatform media player solutions didn't have a way to import other peoples librairies. DAAP shares are not widely supported and often a realy pain to setup. So I set out to build a media player focussed on a shared library between connected clients and shared playlists. - -As a couple of my sub-goals I was going to learn gui programming and master some techniques and libraries. For example; I use Boost.Asio for network communication and timers. This library takes some getting used to when you use the asynchronous calls. Another library I use and learned during this project is Boost.Fusion which can adapt c++ structs to become iterable and allows for some primitive reflection. I use this to generate the views for my model. - -Ofcourse GUI programming is one of the challanges aswell, I'm using the crossplatform Qt GUI library for this. Gui programming has some really interesting problems to solve that take a different approach that I normally would take. Gui programming always tend to become inheritence heavy instead of template heavy, and notifiying the gui of changes in a generic way is still something I haven't fully figured out yet. - -That being said the project is coming along nicely and I have a crude working program as we speak. It still needs lots of work before it is finished though. And being a single person project does not help either. - -Here is a (at the time of writing already) outdated demo of the software. -{% include video.html ogv='../assets/dmpdemo.ogv' webm='../assets/dmpdemo.webm' mp4='../assets/dmpdemo.mp4'%} - diff --git a/_includes/footer.html b/_includes/footer.html index f7a0c64..0c444d7 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -1,7 +1,8 @@ -<div class="footer"> +<div class="footer col-xs-12"> <div class="contact"> <p> Dennis Brentjes <br> + Bsc of science in Computing Science <br> Software Developer <br> dennis@brentj.es <br> </p> diff --git a/_includes/header.html b/_includes/header.html index 57c2afa..e81e747 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -1,7 +1,29 @@ -<div class="header"> - <h1 class="title"><a href="/">Welcome to {{ site.name }}</a></h1> - <a class="extra" href="/">Home</a> - <a class="extra" href="/Blog/">Blog</a> - <a class="extra" href="/Projects/">Projects</a> - <a class="extra" href="/CV/">CV</a> +<div class="header col-sm-12 vspace1em"> + <!-- For small and up displays --> + <div class="col-sm-12 hidden-xs"> + <h4 class="title h4"><a href="/">{{ site.name }}</a></h1> + <a class="extra" href="/">Home</a> + <a class="extra" href="/Blog/">Blog</a> + <a class="extra" href="/Projects/">Projects</a> + <a class="extra" href="/CV/">CV</a> + </div> + + <!-- For xs displays --> + <div class="hidden-sm hidden-md hidden-lg"> + <div class="col-xs-12"> + <h4 class="title h4"><a href="/">{{ site.name }}</a></h1> + </div> + <div class="col-xs-12"> + <a class="extra" href="/">Home</a> + </div> + <div class="col-xs-12"> + <a class="extra" href="/Blog/">Blog</a> + </div> + <div class="col-xs-12"> + <a class="extra" href="/Projects/">Projects</a> + </div> + <div class="vspace1em col-xs-12"> + <a class="extra" href="/CV/">CV</a> + </div> + </div> </div> |
