View app.py
# -*- coding: utf-8 -*- | |
# app.py | |
from flask import Flask, render_template | |
from flask_sqlalchemy import SQLAlchemy | |
from flask_wtf import FlaskForm | |
from wtforms import Form, FieldList, FormField, IntegerField, SelectField, \ | |
StringField, TextAreaField, SubmitField | |
from wtforms import validators |
View configfs_test.sh
#!/bin/bash | |
sleep 15 | |
# Create gadget | |
mkdir /sys/kernel/config/usb_gadget/mykeyboard | |
cd /sys/kernel/config/usb_gadget/mykeyboard | |
# Add basic information | |
echo 0x0100 > bcdDevice # Version 1.0.0 |
View README
How to use: | |
- Copy default.revealjs into ~/.pandoc/templates | |
- Place build.sh in the same directory as your slides (e.g. slides.md) | |
- Download reveal.js from here: https://github.com/hakimel/reveal.js/releases/tag/3.0.0 | |
- Place the reveal.js directory in the same directory where your compiled slides will be (can be different with Pandoc's flags) | |
- Modify the build.sh script to your likings | |
- Compile with ./build.sh |
View .vimrc
" Switch on syntax highlighting. | |
syntax on | |
set tabstop=4 | |
set shiftwidth=4 | |
set expandtab | |
" Line numbers | |
set nu! | |
set mouse=a |
View .tmux.conf
# Use C-a instead of C-b as the prefix | |
set -g prefix C-a | |
unbind-key C-b | |
bind-key C-a send-prefix | |
# set 256 colors | |
set -g default-terminal "screen-256color" | |
#set -g terminal-overrides "xterm:colors=256" | |
# vim compatibility |
View aria.config
# | |
# Automatically generated file; DO NOT EDIT. | |
# Linux/x86 3.17.4 Kernel Configuration | |
# | |
CONFIG_64BIT=y | |
CONFIG_X86_64=y | |
CONFIG_X86=y | |
CONFIG_INSTRUCTION_DECODER=y | |
CONFIG_OUTPUT_FORMAT="elf64-x86-64" | |
CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" |