Skip to content

Instantly share code, notes, and snippets.

View MariusSchiffer's full-sized avatar

Marius Schiffer MariusSchiffer

  • emteria GmbH
  • Aachen
View GitHub Profile
# -*- text -*-
#
# $Id$
# Compares the a token generated with a token seed with the User-Password (TOTP)
exec oath {
# wait for the program
wait = yes
/*
* main.c
*
* Main source in blog_app module.
*/
#include <stdio.h>
#include <stdlib.h>
#include <regex.h>
@MariusSchiffer
MariusSchiffer / store.c
Created April 4, 2012 18:23
blog fcgicmvc
#include "store.h"
#include "xordllist.h"
void store_init(Blog_storage_t* storage)
{
storage->users = malloc(sizeof(XorDLList));
xordllist_init(storage->users, NULL, NULL);
storage->blogposts = malloc(sizeof(XorDLList));
xordllist_init(storage->blogposts, NULL, NULL);
/
run_server.py
skysim/
__init__.py
view_index.py
logincheck.py
generalview.py
skysimulation/
__init__.py
database.py