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
tablesorter_js = JSLink(link=url('/jquery.tablesorter.js'), | |
javascript=[jquery_js]) | |
class JSSortableTableBase(TableBase): | |
'''A TableBase that uses the jquery plugin tablesorter for table sorting''' | |
# javascript = [tablesorter_js] | |
# css_classes = ['tablesorter'] | |
# Any additional arguments to tablesorter, see http://tablesorter.com/docs/#Configuration |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <sys/statvfs.h> | |
#include "pstatvfs.h" | |
#define ARGLEN 255 | |
int main (int argc, char* argv[]) { |
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
#include <stdio.h> | |
#include <sys/statvfs.h> | |
void pstatvfs(struct statvfs *stat) { | |
printf("struct statvfs {\n"); | |
printf("\tf_bsize = %lu\n", stat->f_bsize); | |
printf("\tf_frsize = %lu\n", stat->f_frsize); | |
printf("\tf_blocks = %d\n", (int) stat->f_blocks); |
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
''' | |
Created on 09.12.2011 | |
@author: moschlar | |
''' | |
from OpenGL.GL import * | |
from OpenGL.GLUT import * |
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
1. | |
// Michael Neumann und Moritz Schlarb | |
2. | |
// | |
3. | |
// Programmiersprachen, SoSe 2010 | |
4. | |
// Übung zur Vorlesung vom 19.04.2010 | |
5. | |
// |
NewerOlder