mirror of
https://github.com/balkian/balkian.github.com.git
synced 2024-12-26 02:08:13 +00:00
rebuilding site Thu Jan 10 20:22:31 CET 2019
This commit is contained in:
parent
ada5e605a2
commit
0091298d77
@ -75,7 +75,7 @@
|
|||||||
<div class="posthead">
|
<div class="posthead">
|
||||||
|
|
||||||
<h2><a href="../cheatsheet/linux/" class="title">Linux</a></h2>
|
<h2><a href="../cheatsheet/linux/" class="title">Linux</a></h2>
|
||||||
<h3></h3>
|
<h3>Tips and tricks for GNU/Linux and Unix</h3>
|
||||||
|
|
||||||
<a class="tag" href='../tags/linux'><span class="label">linux</span></a>
|
<a class="tag" href='../tags/linux'><span class="label">linux</span></a>
|
||||||
|
|
||||||
@ -90,10 +90,12 @@
|
|||||||
<div class="posthead">
|
<div class="posthead">
|
||||||
|
|
||||||
<h2><a href="../cheatsheet/python/" class="title">Python</a></h2>
|
<h2><a href="../cheatsheet/python/" class="title">Python</a></h2>
|
||||||
<h3></h3>
|
<h3>Tips and useful libraries for python developers</h3>
|
||||||
|
|
||||||
<a class="tag" href='../tags/python'><span class="label">python</span></a>
|
<a class="tag" href='../tags/python'><span class="label">python</span></a>
|
||||||
|
|
||||||
|
<a class="tag" href='../tags/programming'><span class="label">programming</span></a>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -103,7 +105,9 @@
|
|||||||
<div class="posthead">
|
<div class="posthead">
|
||||||
|
|
||||||
<h2><a href="../cheatsheet/rpi/" class="title">Raspberry Pi</a></h2>
|
<h2><a href="../cheatsheet/rpi/" class="title">Raspberry Pi</a></h2>
|
||||||
<h3></h3>
|
<h3>Tools, links and configuration for your Raspberry Pi</h3>
|
||||||
|
|
||||||
|
<a class="tag" href='../tags/rpi'><span class="label">rpi</span></a>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
|
|
||||||
<guid>/cheatsheet/linux/</guid>
|
<guid>/cheatsheet/linux/</guid>
|
||||||
<description>Black screen and LightDM doesn&rsquo;t unlock Add this to your /etc/lightdm/lightdm.conf file:
|
<description>Black screen and LightDM doesn&rsquo;t unlock Add this to your /etc/lightdm/lightdm.conf file:
|
||||||
[LightDM] logind-check-graphical=true </description>
|
[LightDM] logind-check-graphical=true Edit previous commands fc is a shell builtin to list and edit previous commands in an editor. In addition to editing a single line (which you can also do with C-x C-e), it also allows you to edit and run several lines at the same time.</description>
|
||||||
</item>
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
|
@ -63,6 +63,52 @@
|
|||||||
logind-check-graphical=true
|
logind-check-graphical=true
|
||||||
</code></pre>
|
</code></pre>
|
||||||
|
|
||||||
|
<h1 id="edit-previous-commands">Edit previous commands</h1>
|
||||||
|
|
||||||
|
<p><code>fc</code> is a shell builtin to list and edit previous commands in an editor.
|
||||||
|
In addition to editing a single line (which you can also do with <code>C-x C-e</code>), it also allows you to edit and run several lines at the same time.
|
||||||
|
You use it like this:</p>
|
||||||
|
|
||||||
|
<p>List previous commands</p>
|
||||||
|
|
||||||
|
<pre><code>$ fc -l
|
||||||
|
10259 nvim deploy.sh
|
||||||
|
10260* cd ..
|
||||||
|
10261* nvim content/cheatsheet/linux.md
|
||||||
|
10262 cd
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
|
<p>List commands with date (in zsh)</p>
|
||||||
|
|
||||||
|
<pre><code>$ fc -ld
|
||||||
|
10260* 19:38 cd ..
|
||||||
|
10261* 19:38 nvim content/cheatsheet/linux.md
|
||||||
|
10262 19:40 cd
|
||||||
|
10263 19:40 fc -l
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
|
<p>You can add the date too:</p>
|
||||||
|
|
||||||
|
<pre><code>$ fc -fld
|
||||||
|
10262 1/10/2019 19:40 cd
|
||||||
|
10263 1/10/2019 19:40 fc -l
|
||||||
|
10264 1/10/2019 19:40 fc -ld
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
|
<p>You can edit a range of commands</p>
|
||||||
|
|
||||||
|
<pre><code>$ fc 10262 10264
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
|
<p>The range can be relative to the current position, so the previous command is equivalent to:</p>
|
||||||
|
|
||||||
|
<pre><code>$ fc -3 -1
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
|
<p>If you save and exit, all commands are executed as a script, and it will be added to your history.</p>
|
||||||
|
|
||||||
|
<p>Source: <a href="https://shapeshed.com/unix-fc/">https://shapeshed.com/unix-fc/</a></p>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -72,6 +118,7 @@ logind-check-graphical=true
|
|||||||
<nav id="TableOfContents">
|
<nav id="TableOfContents">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="#black-screen-and-lightdm-doesn-t-unlock">Black screen and LightDM doesn’t unlock</a></li>
|
<li><a href="#black-screen-and-lightdm-doesn-t-unlock">Black screen and LightDM doesn’t unlock</a></li>
|
||||||
|
<li><a href="#edit-previous-commands">Edit previous commands</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
14
css/main.css
14
css/main.css
@ -74,8 +74,15 @@ body {
|
|||||||
|
|
||||||
@media (max-width: 700px) {
|
@media (max-width: 700px) {
|
||||||
#sidebar {
|
#sidebar {
|
||||||
|
display: inline-block;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
#sidebar > * {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
#sidebar > .toc {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 700px) {
|
@media (min-width: 700px) {
|
||||||
|
|
||||||
@ -236,8 +243,13 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.toc {
|
.toc {
|
||||||
|
padding: 1em;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
height: 100%;
|
border-color: black;
|
||||||
|
border: 1px solid;
|
||||||
|
background-color: white;
|
||||||
|
height: max-content;
|
||||||
|
z-index: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -163,7 +163,7 @@ a WSGI application with the name <em>application</em>. Hence, wsgi:a
|
|||||||
|
|
||||||
<guid>/cheatsheet/linux/</guid>
|
<guid>/cheatsheet/linux/</guid>
|
||||||
<description>Black screen and LightDM doesn&rsquo;t unlock Add this to your /etc/lightdm/lightdm.conf file:
|
<description>Black screen and LightDM doesn&rsquo;t unlock Add this to your /etc/lightdm/lightdm.conf file:
|
||||||
[LightDM] logind-check-graphical=true </description>
|
[LightDM] logind-check-graphical=true Edit previous commands fc is a shell builtin to list and edit previous commands in an editor. In addition to editing a single line (which you can also do with C-x C-e), it also allows you to edit and run several lines at the same time.</description>
|
||||||
</item>
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
|
10
sitemap.xml
10
sitemap.xml
@ -202,6 +202,11 @@
|
|||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
|
<url>
|
||||||
|
<loc>/tags/programming/</loc>
|
||||||
|
<priority>0</priority>
|
||||||
|
</url>
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>/tags/proxy/</loc>
|
<loc>/tags/proxy/</loc>
|
||||||
<lastmod>2014-10-09T10:00:00+00:00</lastmod>
|
<lastmod>2014-10-09T10:00:00+00:00</lastmod>
|
||||||
@ -220,6 +225,11 @@
|
|||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
|
<url>
|
||||||
|
<loc>/tags/rpi/</loc>
|
||||||
|
<priority>0</priority>
|
||||||
|
</url>
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>/tags/ruby/</loc>
|
<loc>/tags/ruby/</loc>
|
||||||
<lastmod>2013-08-22T14:14:22+00:00</lastmod>
|
<lastmod>2013-08-22T14:14:22+00:00</lastmod>
|
||||||
|
@ -56,7 +56,7 @@
|
|||||||
<div class="posthead">
|
<div class="posthead">
|
||||||
|
|
||||||
<h2><a href="../../cheatsheet/linux/" class="title">Linux</a></h2>
|
<h2><a href="../../cheatsheet/linux/" class="title">Linux</a></h2>
|
||||||
<h3></h3>
|
<h3>Tips and tricks for GNU/Linux and Unix</h3>
|
||||||
|
|
||||||
<a class="tag" href='../../tags/linux'><span class="label">linux</span></a>
|
<a class="tag" href='../../tags/linux'><span class="label">linux</span></a>
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
<guid>/cheatsheet/linux/</guid>
|
<guid>/cheatsheet/linux/</guid>
|
||||||
<description>Black screen and LightDM doesn&rsquo;t unlock Add this to your /etc/lightdm/lightdm.conf file:
|
<description>Black screen and LightDM doesn&rsquo;t unlock Add this to your /etc/lightdm/lightdm.conf file:
|
||||||
[LightDM] logind-check-graphical=true </description>
|
[LightDM] logind-check-graphical=true Edit previous commands fc is a shell builtin to list and edit previous commands in an editor. In addition to editing a single line (which you can also do with C-x C-e), it also allows you to edit and run several lines at the same time.</description>
|
||||||
</item>
|
</item>
|
||||||
|
|
||||||
</channel>
|
</channel>
|
||||||
|
@ -181,6 +181,13 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="tag" href="../tags/programming"><span style="font-size: 50%;" class="label label-default">programming (1)</span></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="tag" href="../tags/proxy"><span style="font-size: 50%;" class="label label-default">proxy (1)</span></a>
|
<a class="tag" href="../tags/proxy"><span style="font-size: 50%;" class="label label-default">proxy (1)</span></a>
|
||||||
|
|
||||||
|
|
||||||
@ -195,6 +202,13 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a class="tag" href="../tags/rpi"><span style="font-size: 50%;" class="label label-default">rpi (1)</span></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="tag" href="../tags/ruby"><span style="font-size: 50%;" class="label label-default">ruby (1)</span></a>
|
<a class="tag" href="../tags/ruby"><span style="font-size: 50%;" class="label label-default">ruby (1)</span></a>
|
||||||
|
|
||||||
|
|
||||||
|
@ -155,6 +155,15 @@
|
|||||||
<description></description>
|
<description></description>
|
||||||
</item>
|
</item>
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>programming</title>
|
||||||
|
<link>/tags/programming/</link>
|
||||||
|
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||||
|
|
||||||
|
<guid>/tags/programming/</guid>
|
||||||
|
<description></description>
|
||||||
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<title>proxy</title>
|
<title>proxy</title>
|
||||||
<link>/tags/proxy/</link>
|
<link>/tags/proxy/</link>
|
||||||
@ -182,6 +191,15 @@
|
|||||||
<description></description>
|
<description></description>
|
||||||
</item>
|
</item>
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>rpi</title>
|
||||||
|
<link>/tags/rpi/</link>
|
||||||
|
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||||
|
|
||||||
|
<guid>/tags/rpi/</guid>
|
||||||
|
<description></description>
|
||||||
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<title>ruby</title>
|
<title>ruby</title>
|
||||||
<link>/tags/ruby/</link>
|
<link>/tags/ruby/</link>
|
||||||
|
@ -56,7 +56,7 @@
|
|||||||
<div class="posthead">
|
<div class="posthead">
|
||||||
|
|
||||||
<h2><a href="../../cheatsheet/linux/" class="title">Linux</a></h2>
|
<h2><a href="../../cheatsheet/linux/" class="title">Linux</a></h2>
|
||||||
<h3></h3>
|
<h3>Tips and tricks for GNU/Linux and Unix</h3>
|
||||||
|
|
||||||
<a class="tag" href='../../tags/linux'><span class="label">linux</span></a>
|
<a class="tag" href='../../tags/linux'><span class="label">linux</span></a>
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
<guid>/cheatsheet/linux/</guid>
|
<guid>/cheatsheet/linux/</guid>
|
||||||
<description>Black screen and LightDM doesn&rsquo;t unlock Add this to your /etc/lightdm/lightdm.conf file:
|
<description>Black screen and LightDM doesn&rsquo;t unlock Add this to your /etc/lightdm/lightdm.conf file:
|
||||||
[LightDM] logind-check-graphical=true </description>
|
[LightDM] logind-check-graphical=true Edit previous commands fc is a shell builtin to list and edit previous commands in an editor. In addition to editing a single line (which you can also do with C-x C-e), it also allows you to edit and run several lines at the same time.</description>
|
||||||
</item>
|
</item>
|
||||||
|
|
||||||
</channel>
|
</channel>
|
||||||
|
200
tags/programming/index.html
Normal file
200
tags/programming/index.html
Normal file
@ -0,0 +1,200 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||||
|
<title>Balkian's site - programming</title>
|
||||||
|
<meta name="viewport" content="width=device-width">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="../../font-awesome/css/all.css">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" media="only screen" href="../../css/main.css">
|
||||||
|
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300|Comfortaa' rel='stylesheet' type='text/css'>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="container" class="container">
|
||||||
|
<div id="contentwrapper">
|
||||||
|
<div id="content">
|
||||||
|
<header id="header">
|
||||||
|
<ul class="navbar" id="navbar">
|
||||||
|
<a href="../../">
|
||||||
|
<li >
|
||||||
|
<i class="fa fa-home fa-large"></i>
|
||||||
|
</li></a>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="../../post/"><li class='' >Blog
|
||||||
|
</li></a>
|
||||||
|
|
||||||
|
<a href="../../tags/"><li class=' active' >Tags
|
||||||
|
</li></a>
|
||||||
|
|
||||||
|
<a href="../../cheatsheet/"><li class='' >Cheatsheets
|
||||||
|
</li></a>
|
||||||
|
|
||||||
|
<a href="../../about/"><li class='' >About
|
||||||
|
</li></a>
|
||||||
|
|
||||||
|
<a href="../../project/"><li class='' >Projects
|
||||||
|
</li></a>
|
||||||
|
|
||||||
|
<a href="//jfernando.es" target="_blank"><li>
|
||||||
|
CV
|
||||||
|
</li></a>
|
||||||
|
</ul>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="entry default-entry">
|
||||||
|
<div class="posthead">
|
||||||
|
|
||||||
|
<h2><a href="../../cheatsheet/python/" class="title">Python</a></h2>
|
||||||
|
<h3>Tips and useful libraries for python developers</h3>
|
||||||
|
|
||||||
|
<a class="tag" href='../../tags/python'><span class="label">python</span></a>
|
||||||
|
|
||||||
|
<a class="tag" href='../../tags/programming'><span class="label">programming</span></a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagination pag-bottom">
|
||||||
|
|
||||||
|
<span class="previouspage" style="display:none;"><i class="icon-chevron-sign-left"></i> Previous Page</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="nextpage" style="display:none;">Older Posts <i class="icon-chevron-sign-right"></i></span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="sidebar" class="fixed">
|
||||||
|
<div id="badge" class="flip-container" ontouchstart="this.classList.toggle('hover');">
|
||||||
|
<div class="flipper sticky">
|
||||||
|
<div class="front">
|
||||||
|
|
||||||
|
<img id="avatar" src="../../img/me.png">
|
||||||
|
</div>
|
||||||
|
<div class="back">
|
||||||
|
|
||||||
|
<img id="picture" src="../../img/me-bat.png">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="about">
|
||||||
|
|
||||||
|
<div class="icons">
|
||||||
|
<span class="coolicon"><span class="fa-stack"> <i class="fas fa-square fa-stack-2x" ></i><i class="fab fa-inverse fa-stack-1x fa-linux"></i></span><span class="explanation">Linux user</span></span>
|
||||||
|
<span class="coolicon"><span class="fa-stack"> <i class="fas fa-square fa-stack-2x" ></i><i class="fab fa-inverse fa-stack-1x fa-android"></i></span><span class="explanation">Android dev and user</span></span>
|
||||||
|
<a href="http://github.com/balkian" target="_blank"><span class="coolicon"><span class="fa-stack"> <i class="fas fa-square fa-stack-2x" ></i><i class="fab fa-inverse fa-stack-1x fa-github"></i> </span><span class="explanation">Github user</span></span></a>
|
||||||
|
<a href="http://gitlab.com/balkian" target="_blank"><span class="coolicon"><span class="fa-stack"> <i class="fas fa-square fa-stack-2x" ></i><i class="fab fa-inverse fa-stack-1x fa-gitlab"></i> </span><span class="explanation">GitLab user</span></span></a>
|
||||||
|
<span class="coolicon"><span class="fa-stack"> <i class="fas fa-square fa-stack-2x" ></i><i class="fab fa-inverse fa-stack-1x fa-stack-exchange"></i> </span><span class="explanation">StackExchange fan</span></span>
|
||||||
|
<span class="coolicon"><span class="fa-stack"> <i class="fas fa-square fa-stack-2x" ></i><i class="fas fa-inverse fa-stack-1x fa-music"></i> </span><span class="explanation">Music lover</span></span>
|
||||||
|
<span class="coolicon"><span class="fa-stack"> <i class="fas fa-square fa-stack-2x" ></i><i class="fas fa-inverse fa-stack-1x fa-film"></i> </span><span class="explanation">Movie fan</span></span>
|
||||||
|
<span class="coolicon"><span class="fa-stack"> <i class="fas fa-square fa-stack-2x" ></i><i class="fas fa-inverse fa-stack-1x fa-laptop"></i> </span><span class="explanation">Always on a PC</span></span>
|
||||||
|
<span class="coolicon"><span class="fa-stack"> <i class="fas fa-square fa-stack-2x" ></i><i class="fas fa-inverse fa-stack-1x fa-moon"></i> </span><span class="explanation">Night owl</span></span>
|
||||||
|
<span class="coolicon"><span class="fa-stack"> <i class="fas fa-square fa-stack-2x" ></i><i class="fas fa-inverse fa-stack-1x fa-terminal"></i></span> <span class="explanation">CLI user</span></span>
|
||||||
|
<span class="coolicon"><span class="fa-stack"> <i class="fas fa-square fa-stack-2x" ></i><i class="fas fa-inverse fa-stack-1x fa-flag"></i></span> <span class="explanation">I love languages</span></span>
|
||||||
|
<span class="coolicon"><span class="fa-stack"> <i class="fas fa-square fa-stack-2x" ></i><i class="fas fa-inverse fa-stack-1x fa-code"></i> </span> <span class="explanation">I love programming</span></span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="entries">
|
||||||
|
<h2 class="title">Latest entries</h2>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<dt><a href="../../post/2019-01-06-zigbee2mqtt/">Controlling Zigbee devices with MQTT</a></dt>
|
||||||
|
|
||||||
|
<a class="tag" href='../../tags/mqtt'><span class="label">mqtt</span></a>
|
||||||
|
|
||||||
|
<a class="tag" href='../../tags/iot'><span class="label">iot</span></a>
|
||||||
|
|
||||||
|
<a class="tag" href='../../tags/zigbee'><span class="label">zigbee</span></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<dt><a href="../../post/2016-09-28-tqdm/">Progress bars in python</a></dt>
|
||||||
|
|
||||||
|
<a class="tag" href='../../tags/python'><span class="label">python</span></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<dt><a href="../../post/2015-04-10-github-dotfiles/">Sharing dotfiles</a></dt>
|
||||||
|
|
||||||
|
<a class="tag" href='../../tags/github'><span class="label">github</span></a>
|
||||||
|
|
||||||
|
<a class="tag" href='../../tags/git'><span class="label">git</span></a>
|
||||||
|
|
||||||
|
<a class="tag" href='../../tags/dotfiles'><span class="label">dotfiles</span></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<dt><a href="../../post/2014-12-09-zotero/">Zotero</a></dt>
|
||||||
|
|
||||||
|
<a class="tag" href='../../tags/zotero'><span class="label">zotero</span></a>
|
||||||
|
|
||||||
|
<a class="tag" href='../../tags/webdav'><span class="label">webdav</span></a>
|
||||||
|
|
||||||
|
<a class="tag" href='../../tags/nginx'><span class="label">nginx</span></a>
|
||||||
|
|
||||||
|
<a class="tag" href='../../tags/apache'><span class="label">apache</span></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="clear"></div>
|
||||||
|
</div>
|
||||||
|
<footer class="pagefooter" role="contentinfo">
|
||||||
|
<div class="contact">
|
||||||
|
<p>
|
||||||
|
J. Fernando Sánchez Rada | balkian
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<ul id="social">
|
||||||
|
<li><a href="http://github.com/balkian"><i class="fab fa-github"></i></a></li>
|
||||||
|
<li><a href="http://lab.gsi.upm.es/balkian"><i class="fab fa-gitlab"></i></a></li>
|
||||||
|
<li><a href="http://twitter.com/balkian"><i class="fab fa-twitter"></i></a></li>
|
||||||
|
<li><a href="http://git.sinpapel.es/balkian"><i class="fab fa-git"></i></a></li>
|
||||||
|
<li><a href="http://linkedin.com/in/jfsanchezrada"><i class="fab fa-linkedin"></i></a></li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
<i class="fab fa-creative-commons"></i> Creative Commons A-SA-NC
|
||||||
|
</p>
|
||||||
|
</footer>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script src="../../js/jquery-2.0.2.min.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
26
tags/programming/index.xml
Normal file
26
tags/programming/index.xml
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||||
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
|
<channel>
|
||||||
|
<title>programming on Balkian's site</title>
|
||||||
|
<link>/tags/programming/</link>
|
||||||
|
<description>Recent content in programming on Balkian's site</description>
|
||||||
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
|
<language>en-us</language>
|
||||||
|
<copyright>This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.</copyright>
|
||||||
|
|
||||||
|
<atom:link href="/tags/programming/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>Python</title>
|
||||||
|
<link>/cheatsheet/python/</link>
|
||||||
|
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||||
|
|
||||||
|
<guid>/cheatsheet/python/</guid>
|
||||||
|
<description> Interesting libraries TQDM From tqdm&rsquo;s github repository:
|
||||||
|
tqdm means &ldquo;progress&rdquo; in Arabic (taqadum, تقدّم) and an abbreviation for &ldquo;I love you so much&rdquo; in Spanish (te quiero demasiado).
|
||||||
|
</description>
|
||||||
|
</item>
|
||||||
|
|
||||||
|
</channel>
|
||||||
|
</rss>
|
1
tags/programming/page/1/index.html
Normal file
1
tags/programming/page/1/index.html
Normal file
@ -0,0 +1 @@
|
|||||||
|
<!DOCTYPE html><html><head><title>/tags/programming/</title><link rel="canonical" href="/tags/programming/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=/tags/programming/" /></head></html>
|
@ -175,10 +175,12 @@ a WSGI application with the name <em>application</em>. Hence, wsgi:application.<
|
|||||||
<div class="posthead">
|
<div class="posthead">
|
||||||
|
|
||||||
<h2><a href="../../cheatsheet/python/" class="title">Python</a></h2>
|
<h2><a href="../../cheatsheet/python/" class="title">Python</a></h2>
|
||||||
<h3></h3>
|
<h3>Tips and useful libraries for python developers</h3>
|
||||||
|
|
||||||
<a class="tag" href='../../tags/python'><span class="label">python</span></a>
|
<a class="tag" href='../../tags/python'><span class="label">python</span></a>
|
||||||
|
|
||||||
|
<a class="tag" href='../../tags/programming'><span class="label">programming</span></a>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
198
tags/rpi/index.html
Normal file
198
tags/rpi/index.html
Normal file
@ -0,0 +1,198 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||||
|
<title>Balkian's site - rpi</title>
|
||||||
|
<meta name="viewport" content="width=device-width">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="../../font-awesome/css/all.css">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" media="only screen" href="../../css/main.css">
|
||||||
|
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300|Comfortaa' rel='stylesheet' type='text/css'>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="container" class="container">
|
||||||
|
<div id="contentwrapper">
|
||||||
|
<div id="content">
|
||||||
|
<header id="header">
|
||||||
|
<ul class="navbar" id="navbar">
|
||||||
|
<a href="../../">
|
||||||
|
<li >
|
||||||
|
<i class="fa fa-home fa-large"></i>
|
||||||
|
</li></a>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="../../post/"><li class='' >Blog
|
||||||
|
</li></a>
|
||||||
|
|
||||||
|
<a href="../../tags/"><li class=' active' >Tags
|
||||||
|
</li></a>
|
||||||
|
|
||||||
|
<a href="../../cheatsheet/"><li class='' >Cheatsheets
|
||||||
|
</li></a>
|
||||||
|
|
||||||
|
<a href="../../about/"><li class='' >About
|
||||||
|
</li></a>
|
||||||
|
|
||||||
|
<a href="../../project/"><li class='' >Projects
|
||||||
|
</li></a>
|
||||||
|
|
||||||
|
<a href="//jfernando.es" target="_blank"><li>
|
||||||
|
CV
|
||||||
|
</li></a>
|
||||||
|
</ul>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="entry default-entry">
|
||||||
|
<div class="posthead">
|
||||||
|
|
||||||
|
<h2><a href="../../cheatsheet/rpi/" class="title">Raspberry Pi</a></h2>
|
||||||
|
<h3>Tools, links and configuration for your Raspberry Pi</h3>
|
||||||
|
|
||||||
|
<a class="tag" href='../../tags/rpi'><span class="label">rpi</span></a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagination pag-bottom">
|
||||||
|
|
||||||
|
<span class="previouspage" style="display:none;"><i class="icon-chevron-sign-left"></i> Previous Page</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="nextpage" style="display:none;">Older Posts <i class="icon-chevron-sign-right"></i></span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="sidebar" class="fixed">
|
||||||
|
<div id="badge" class="flip-container" ontouchstart="this.classList.toggle('hover');">
|
||||||
|
<div class="flipper sticky">
|
||||||
|
<div class="front">
|
||||||
|
|
||||||
|
<img id="avatar" src="../../img/me.png">
|
||||||
|
</div>
|
||||||
|
<div class="back">
|
||||||
|
|
||||||
|
<img id="picture" src="../../img/me-bat.png">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="about">
|
||||||
|
|
||||||
|
<div class="icons">
|
||||||
|
<span class="coolicon"><span class="fa-stack"> <i class="fas fa-square fa-stack-2x" ></i><i class="fab fa-inverse fa-stack-1x fa-linux"></i></span><span class="explanation">Linux user</span></span>
|
||||||
|
<span class="coolicon"><span class="fa-stack"> <i class="fas fa-square fa-stack-2x" ></i><i class="fab fa-inverse fa-stack-1x fa-android"></i></span><span class="explanation">Android dev and user</span></span>
|
||||||
|
<a href="http://github.com/balkian" target="_blank"><span class="coolicon"><span class="fa-stack"> <i class="fas fa-square fa-stack-2x" ></i><i class="fab fa-inverse fa-stack-1x fa-github"></i> </span><span class="explanation">Github user</span></span></a>
|
||||||
|
<a href="http://gitlab.com/balkian" target="_blank"><span class="coolicon"><span class="fa-stack"> <i class="fas fa-square fa-stack-2x" ></i><i class="fab fa-inverse fa-stack-1x fa-gitlab"></i> </span><span class="explanation">GitLab user</span></span></a>
|
||||||
|
<span class="coolicon"><span class="fa-stack"> <i class="fas fa-square fa-stack-2x" ></i><i class="fab fa-inverse fa-stack-1x fa-stack-exchange"></i> </span><span class="explanation">StackExchange fan</span></span>
|
||||||
|
<span class="coolicon"><span class="fa-stack"> <i class="fas fa-square fa-stack-2x" ></i><i class="fas fa-inverse fa-stack-1x fa-music"></i> </span><span class="explanation">Music lover</span></span>
|
||||||
|
<span class="coolicon"><span class="fa-stack"> <i class="fas fa-square fa-stack-2x" ></i><i class="fas fa-inverse fa-stack-1x fa-film"></i> </span><span class="explanation">Movie fan</span></span>
|
||||||
|
<span class="coolicon"><span class="fa-stack"> <i class="fas fa-square fa-stack-2x" ></i><i class="fas fa-inverse fa-stack-1x fa-laptop"></i> </span><span class="explanation">Always on a PC</span></span>
|
||||||
|
<span class="coolicon"><span class="fa-stack"> <i class="fas fa-square fa-stack-2x" ></i><i class="fas fa-inverse fa-stack-1x fa-moon"></i> </span><span class="explanation">Night owl</span></span>
|
||||||
|
<span class="coolicon"><span class="fa-stack"> <i class="fas fa-square fa-stack-2x" ></i><i class="fas fa-inverse fa-stack-1x fa-terminal"></i></span> <span class="explanation">CLI user</span></span>
|
||||||
|
<span class="coolicon"><span class="fa-stack"> <i class="fas fa-square fa-stack-2x" ></i><i class="fas fa-inverse fa-stack-1x fa-flag"></i></span> <span class="explanation">I love languages</span></span>
|
||||||
|
<span class="coolicon"><span class="fa-stack"> <i class="fas fa-square fa-stack-2x" ></i><i class="fas fa-inverse fa-stack-1x fa-code"></i> </span> <span class="explanation">I love programming</span></span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="entries">
|
||||||
|
<h2 class="title">Latest entries</h2>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<dt><a href="../../post/2019-01-06-zigbee2mqtt/">Controlling Zigbee devices with MQTT</a></dt>
|
||||||
|
|
||||||
|
<a class="tag" href='../../tags/mqtt'><span class="label">mqtt</span></a>
|
||||||
|
|
||||||
|
<a class="tag" href='../../tags/iot'><span class="label">iot</span></a>
|
||||||
|
|
||||||
|
<a class="tag" href='../../tags/zigbee'><span class="label">zigbee</span></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<dt><a href="../../post/2016-09-28-tqdm/">Progress bars in python</a></dt>
|
||||||
|
|
||||||
|
<a class="tag" href='../../tags/python'><span class="label">python</span></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<dt><a href="../../post/2015-04-10-github-dotfiles/">Sharing dotfiles</a></dt>
|
||||||
|
|
||||||
|
<a class="tag" href='../../tags/github'><span class="label">github</span></a>
|
||||||
|
|
||||||
|
<a class="tag" href='../../tags/git'><span class="label">git</span></a>
|
||||||
|
|
||||||
|
<a class="tag" href='../../tags/dotfiles'><span class="label">dotfiles</span></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<dt><a href="../../post/2014-12-09-zotero/">Zotero</a></dt>
|
||||||
|
|
||||||
|
<a class="tag" href='../../tags/zotero'><span class="label">zotero</span></a>
|
||||||
|
|
||||||
|
<a class="tag" href='../../tags/webdav'><span class="label">webdav</span></a>
|
||||||
|
|
||||||
|
<a class="tag" href='../../tags/nginx'><span class="label">nginx</span></a>
|
||||||
|
|
||||||
|
<a class="tag" href='../../tags/apache'><span class="label">apache</span></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="clear"></div>
|
||||||
|
</div>
|
||||||
|
<footer class="pagefooter" role="contentinfo">
|
||||||
|
<div class="contact">
|
||||||
|
<p>
|
||||||
|
J. Fernando Sánchez Rada | balkian
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<ul id="social">
|
||||||
|
<li><a href="http://github.com/balkian"><i class="fab fa-github"></i></a></li>
|
||||||
|
<li><a href="http://lab.gsi.upm.es/balkian"><i class="fab fa-gitlab"></i></a></li>
|
||||||
|
<li><a href="http://twitter.com/balkian"><i class="fab fa-twitter"></i></a></li>
|
||||||
|
<li><a href="http://git.sinpapel.es/balkian"><i class="fab fa-git"></i></a></li>
|
||||||
|
<li><a href="http://linkedin.com/in/jfsanchezrada"><i class="fab fa-linkedin"></i></a></li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
<i class="fab fa-creative-commons"></i> Creative Commons A-SA-NC
|
||||||
|
</p>
|
||||||
|
</footer>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script src="../../js/jquery-2.0.2.min.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
25
tags/rpi/index.xml
Normal file
25
tags/rpi/index.xml
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||||
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
|
<channel>
|
||||||
|
<title>rpi on Balkian's site</title>
|
||||||
|
<link>/tags/rpi/</link>
|
||||||
|
<description>Recent content in rpi on Balkian's site</description>
|
||||||
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
|
<language>en-us</language>
|
||||||
|
<copyright>This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.</copyright>
|
||||||
|
|
||||||
|
<atom:link href="/tags/rpi/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>Raspberry Pi</title>
|
||||||
|
<link>/cheatsheet/rpi/</link>
|
||||||
|
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||||
|
|
||||||
|
<guid>/cheatsheet/rpi/</guid>
|
||||||
|
<description> HDMI flickering Avoid HDMI flickering/intermittent blanking on RPI with a 1400x1050 VGA monitor.
|
||||||
|
1 2 3 4 5 hdmi_drive=2 hdmi_group=2 hdmi_mode=42 disable_overscan=1 config_hdmi_boost=7 </description>
|
||||||
|
</item>
|
||||||
|
|
||||||
|
</channel>
|
||||||
|
</rss>
|
1
tags/rpi/page/1/index.html
Normal file
1
tags/rpi/page/1/index.html
Normal file
@ -0,0 +1 @@
|
|||||||
|
<!DOCTYPE html><html><head><title>/tags/rpi/</title><link rel="canonical" href="/tags/rpi/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=/tags/rpi/" /></head></html>
|
Loading…
Reference in New Issue
Block a user