Setup usersRootTehnix
Setup IRCWith SSLMove MOTD into place after it's set up
Setup IRC ServicesSetup KeterSetup AngelMount with sshfs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module ProductEncode where | |
import CLaSH.Prelude | |
import CLaSH.Bit | |
import CLaSH.Sized.Vector | |
n :: Unsigned 9 | |
n = 7 | |
k :: Unsigned 9 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass[12pt]{rapport} | |
% Relevant for frontpage and headers | |
\course{Course Number: Course Title} | |
\title{Assignment Title} | |
\author{Name} | |
\date{22/10 2014} | |
\begin{document} | |
\maketitle |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\ProvidesClass{rapport} | |
\LoadClass[12pt,a4paper]{article} | |
% packages that are regularly used | |
\usepackage{amsmath} | |
\usepackage{xcolor} | |
\usepackage{ulem} | |
\usepackage{tikz} | |
\usepackage[utf8]{inputenc} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\usepackage{xcolor} | |
\definecolor{lightlightgray}{gray}{0.95} % background | |
\definecolor{shred}{rgb}{0.6,0,0} % for strings | |
\definecolor{shgreen}{rgb}{153, 153, 136} % comments | |
\definecolor{shpurple}{rgb}{0.5,0,0.35} % keywords | |
\lstset{ | |
breaklines=true, | |
xleftmargin=25pt, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/user/bin/env python3.4 | |
import socket | |
HOST = 'irc.codetalk.io' | |
PORT = 6667 | |
NICK = 'pybot-test' | |
CHAN = '#lobby-test' | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$if null articles | |
<div .font-box> | |
<p #no-articles> There are no articles yet :(... | |
$else | |
<div #articles-sidebar> | |
<div #articles-sidebar-item-bottom> | |
<div .arrow-down> | |
$forall (Entity articleId article, Entity _ _) <- articles | |
^{blogArticle articleId article False} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Your Stylesheet | |
* | |
* This stylesheet is loaded when Atom starts up and is reloaded automatically | |
* when it is changed. | |
* | |
* If you are unfamiliar with LESS, you can read more about it here: | |
* http://www.lesscss.org | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Your Stylesheet | |
* | |
* This stylesheet is loaded when Atom starts up and is reloaded automatically | |
* when it is changed. | |
* | |
* If you are unfamiliar with LESS, you can read more about it here: | |
* http://www.lesscss.org | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE TupleSections, OverloadedStrings, DeriveGeneric #-} | |
module Handler.Admin.API where | |
import Import | |
import API.CloudFlare | |
import API.Disqus | |
data CloudFlareResponseJson = CloudFlareResponseJson Bool (Either Text CloudFlareTrafficBreakdown) deriving (Show) |