Skip to content

Instantly share code, notes, and snippets.

View 127001's full-sized avatar
:octocat:
I may be slow to respond.

Jarno 127001

:octocat:
I may be slow to respond.
View GitHub Profile
Install Oh My ZSH
=================
First install zsh
$ sudo apt-get install zsh
Next install OMZ
$ sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
Set to active shell (activate with logout)
---
title: Easier code reading with rainbow brackets
published: false
description: Read your (frontend) code easier with rainbow colored bracket pairs
tags:
---
When writing code it can sometimes become quite hard to see which opening bracket [[{{(())}}]] corresponds to which closing one. And as a result, code will break. Or even worse, work in an unexpected way.
This is where the rainbow colored bracket pairs come into play. By matching opening and closing brackets with the same color, your code get a bit better readable.
<!doctype html>
<html lang="nl">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="http://f1-eu.readspeaker.com/script/4725/ReadSpeaker.js?pids=embhl" type="text/javascript"></script>
@127001
127001 / keybase.md
Last active October 27, 2020 15:27

Keybase proof

I hereby claim:

  • I am 127001 on github.
  • I am jarno (https://keybase.io/jarno) on keybase.
  • I have a public key whose fingerprint is 8110 A3E9 D7FA 251D 04DA 968F 531D 62FB B08E 4EBA

To claim this, I am signing this object:

@127001
127001 / dabblet.css
Created October 8, 2013 12:09
CSS: + versus > selector
/* CSS: + versus > selector */
p > span {
color:red;
}
p > strong {
color: green;
}
@127001
127001 / dabblet.css
Created April 8, 2013 14:04
font awesome character as list icon
/**
* font awesome character as list icon
*/
@import "http://fortawesome.github.io/Font-Awesome/assets/css/font-awesome.css";
@font-face {
font-family: "FontAwesome";
font-style: normal;
font-weight: normal;
src: url("http://fortawesome.github.io/Font-Awesome/assets/font/fontawesome-webfont.eot?#iefix&v=3.0.1") format("embedded-opentype"), url("http://fortawesome.github.io/Font-Awesome/assets/font/fontawesome-webfont.woff?v=3.0.1") format("woff"), url("http://fortawesome.github.io/Font-Awesome/assets/font/fontawesome-webfont.ttf?v=3.0.1") format("truetype");
@127001
127001 / dabblet.css
Created April 8, 2013 13:46
Untitled
ul {
list-style: none;
}
ul li:before {
content: "\2023";
padding-right: 5px;
}