I hereby claim:
- I am lrvdijk on github.
- I am sh4wn (https://keybase.io/sh4wn) on keybase.
- I have a public key whose fingerprint is EABC FBBB 91DD 0E13 03BF 2302 5A16 2DC1 C480 6F5C
To claim this, I am signing this object:
/** | |
* Voltmeter based on atmega168, sends Analog2Digital conversion | |
* results over RS232 to the connected computer | |
* | |
* Created by Lucas van Dijk | |
* http://www.return1.net | |
*/ | |
#ifndef F_CPU | |
#define F_CPU 8000000 |
/** | |
* Voltmeter based on atmega168, sends Analog2Digital conversion | |
* results over RS232 to the connected computer | |
* | |
* Created by Lucas van Dijk | |
* http://www.return1.net | |
*/ | |
#ifndef F_CPU | |
#define F_CPU 3686400 |
from django.contrib import admin | |
from mezzanine.core.admin import StackedDynamicInlineAdmin | |
from mezzanine.pages.admin import PageAdmin | |
from helios3d.sponsors.models import Sponsor, SponsorCategory, SponsorPage | |
from copy import deepcopy | |
sponsor_admin_fieldsets = deepcopy(PageAdmin.fieldsets) | |
sponsor_admin_fieldsets[0][1]['fields'].insert(-3, 'categories') |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python3 | |
""" | |
Graph generator for wiebetaaltwat.nl | |
==================================== | |
Written by Lucas van Dijk <[email protected]> | |
""" | |
from bs4 import BeautifulSoup |
""" | |
This script creates a small-scale De Bruijn graph visualization using graphviz. | |
The construction of the De Bruijn graph is done in a similar way how Bifrost | |
constructs the graph, although with different data structures (more explicit | |
use of nodes and edges). | |
Usage: | |
dbg_dot.py k FASTA | dot -Tpng -o output.ong |