$mod
refers to the modifier key (alt by default)
startx i3
start i3 from command line$mod+<Enter>
open a terminal$mod+d
open dmenu (text based program launcher)$mod+r
resize mode ( or to leave resize mode)$mod+shift+e
exit i3
<section> | |
<section id='OpenShift-Container-Matrix' data-markdown> | |
# OpenShift | |
## Container Matrix | |
http://bit.ly/container-matrix | |
</section> | |
<section data-markdown id='timestamp'> | |
#### OpenShift: Container Matrix |
<section> | |
<section id='Docker-Develop-and-Deploy' data-markdown> | |
##Docker: | |
# Develop | |
and | |
# Deploy | |
http://bit.ly/dev-deploy-linuxcon2015 | |
</section> | |
<section data-markdown id='timestamp'> |
{ | |
"apiVersion": "v1beta1", | |
"items": [ | |
{ | |
"apiVersion": "v1beta1", | |
"containerPort": 8080, | |
"id": "frontend", | |
"kind": "Service", | |
"port": 5432, | |
"selector": { |
<section> | |
<section id='Open-Web-Release-Pipelines' data-markdown> | |
##Building | |
# Release | |
# Pipelines | |
for the | |
## Open Web |
Desktop linux has been late to the show with high dpi support, but gnome seems to be leading the pack. I decided to try again. It's worked fairly well out of the box. Here are my steps if anyone wishes to repeat.
Download the iso from http://ubuntugnome.org/ubuntu-gnome-14-10-is-released/
Insert usb stick, umount using diskutil and dd the image. (make sure to use the right devices when using dd, your setup may vary)
This guide assumes that your SD slot is available at /dev/sdb
. Make sure to substitute the correct value for your own SD device (or you might wipe out one of your hard disks)!! USE AT YOUR OWN RISK
curl -O http://www.digitaldreamtime.co.uk/Fedora/Pi2B-Minimal-armhfp-21-5-20150211-1.img.xz
<!-- Opening --> | |
<section> | |
<section> | |
<h1 style="font-size: 3.4em; margin-top: -25px;">Connecting Containers</h1> | |
<img src="https://raw.githubusercontent.com/codemiller/connecting-containers/gh-pages/images/boxillusion.png" style="width: 210px; background-color: inherit; border: none; box-shadow: none;"/> | |
<h3>Building a PaaS with Docker and Kubernetes</h3> | |
<p> | |
Presented by<br/> | |
<a href="http://www.codemiller.com">Katie Miller</a> / <a | |
href="http://twitter.com/codemiller">@codemiller</a><br/> |
Disclaimer: This is an unofficial post by a random person from the community. I am not an official representative of io.js. Want to ask a question? open an issue on the node-forward
discussions repo
<?php | |
function base64DataUri($sFile) | |
{ | |
// Switch to right MIME-type | |
$sExt = strtolower(substr(strrchr($sFile, '.'), 1)); | |
switch($sExt) | |
{ | |
case 'gif': |