Skip to content

Instantly share code, notes, and snippets.

View shizonic's full-sized avatar
💭
[ -n "$problems" ] && solve || chill

shizonic shizonic

💭
[ -n "$problems" ] && solve || chill
View GitHub Profile
@shizonic
shizonic / index.html
Created February 21, 2015 09:46
Tabbed navigation (CSS only) // source http://jsbin.com/bamiwa
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tabbed navigation (CSS only)</title>
<link href='http://fonts.googleapis.com/css?family=Roboto:400,100,300,500,700,900' rel='stylesheet' type='text/css'>
<style id="jsbin-css">
* {
margin: 0;
padding: 0;
@shizonic
shizonic / index.html
Created February 21, 2015 09:55
Tabbed navigation (CSS only) // source http://jsbin.com/bamiwa
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tabbed navigation (CSS only)</title>
<link href='http://fonts.googleapis.com/css?family=Roboto:400,100,300,500,700,900' rel='stylesheet' type='text/css'>
<style id="jsbin-css">
* {
margin: 0;
padding: 0;
<?php
namespace Flow\Schwabe\Domain\Model;
/* *
* This script belongs to the TYPO3 Flow package "Flow.Schwabe". *
* *
* */
use TYPO3\Flow\Annotations as Flow;
use Doctrine\ORM\Mapping as ORM;
<?php
namespace Flow\Schwabe\Domain\Model;
/* *
* This script belongs to the TYPO3 Flow package "Flow.Schwabe". *
* *
* */
use TYPO3\Flow\Annotations as Flow;
use Doctrine\ORM\Mapping as ORM;
<?php
namespace Flow\Schwabe\Domain\Model;
/* *
* This script belongs to the TYPO3 Flow package "Flow.Schwabe". *
* *
* */
use TYPO3\Flow\Annotations as Flow;
use Doctrine\ORM\Mapping as ORM;
#!/bin/bash
sudo apt-get install python g++ make checkinstall fakeroot
src=$(mktemp -d) && cd $src
wget -N http://nodejs.org/dist/node-latest.tar.gz
tar xzvf node-latest.tar.gz && cd node-v*
./configure
sudo fakeroot checkinstall -y --install=no --pkgversion $(echo $(pwd) | sed -n -re's/.+node-v(.+)$/\1/p') make -j$(($(nproc)+1)) install
sudo dpkg -i node_*
@shizonic
shizonic / nineteen-wayland.sh
Created May 16, 2016 21:00 — forked from bhundven/nineteen-wayland.sh
Enlightenment 19 build script for Ubuntu/Debian with Wayland support.
#!/bin/bash
# vi: ts=4:sw=4:et
#
# NINETEEN.SH
# This script allows you to install/update Enlightenment 19 git version on
# Ubuntu Wily/15.10 or Debian stretch/sid, or remove E19 git from your system.
# ********************************************************************
# * This version builds enlightenment with wayland. *
# * That means this requires a very recent Ubuntu or Debian version. *
# * This may not work properly! You've been warned! *

Keybase proof

I hereby claim:

  • I am shizonic on github.
  • I am shizonic (https://keybase.io/shizonic) on keybase.
  • I have a public key whose fingerprint is 0B16 24F2 F057 D07F 4F54 8174 3990 4CAD 6AC0 470C

To claim this, I am signing this object:

= Arch Linux step-by-step installation =
= http://blog.fabio.mancinelli.me/2012/12/28/Arch_Linux_on_BTRFS.html =
== Boot the installation CD ==
== Create partition ==
cfdisk /dev/sda
* Create a partition with code 8300 (Linux)
@shizonic
shizonic / 60-scheduler.rules
Created July 6, 2017 20:08 — forked from radupotop/60-scheduler.rules
kernel 4.12 scheduler rules for udev
# /etc/udev/rules.d/60-scheduler.rules
#
# set none scheduler for non-rotating disks
ACTION=="add|change", KERNEL=="sd[a-z]", ATTR{queue/rotational}=="0", ATTR{queue/scheduler}="none"
# set bfq scheduler for rotating disks
ACTION=="add|change", KERNEL=="sd[a-z]", ATTR{queue/rotational}=="1", ATTR{queue/scheduler}="bfq"