Skip to content

Instantly share code, notes, and snippets.

@maxymania
maxymania / bsc1.c
Created April 4, 2014 12:00
Block Sequence Cipher 1
/*
* I dedicate any and all copyright interest in this software to the
* public domain. I make this dedication for the benefit of the public at
* large and to the detriment of my heirs and successors. I intend this
* dedication to be an overt act of relinquishment in perpetuity of all
* present and future rights to this software under copyright law.
*
* For more information, please refer to <http://unlicense.org/>
*/
#include <stdint.h>
@maxymania
maxymania / README
Created June 11, 2015 13:51
Scrapland template
used template: http://www.opendesigns.org/design/html5-streets/
Other:
- http://www.opendesigns.org/design/html5-water/
- http://www.opendesigns.org/design/html5-buildings/
- http://www.opendesigns.org/design/blue-skies/
@maxymania
maxymania / Get_File_Acls.c
Created September 10, 2015 05:03
Get POSIX File ACLs on Linux
/*
* Copyright 2015 Simon Schmidt
*
* Usage of the works is permitted provided that this instrument is
* retained with the works, so that any entity that uses the works
* is notified of this instrument.
* DISCLAIMER: THE WORKS ARE WITHOUT WARRANTY.
*/
#include <stdio.h>
#include <stdint.h>
@maxymania
maxymania / cparser.go
Created November 20, 2015 13:32
Parser for a C-like language
/*
Copyright (c) 2015 Simon Schmidt
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
@maxymania
maxymania / fcgiclient.go
Last active December 20, 2015 20:37 — forked from wofeiwo/fcgiclient.go
// Copyright 2015 Simon Schmidt
// Copyright 2012 Junqing Tan <ivan@mysqlab.net> and The Go Authors
// Use of this source code is governed by a BSD-style
// Part of source code is from Go fcgi package
// Fix bug: Can't recive more than 1 record untill FCGI_END_REQUEST 2012-09-15
// By: wofeiwo
package fcgiclient
@maxymania
maxymania / hash.c
Last active January 8, 2016 09:45 — forked from tonious/hash.c
A quick hashtable implementation in c.
#define _XOPEN_SOURCE 500 /* Enable certain library functions (strdup) on linux. See feature_test_macros(7) */
#include <stdlib.h>
#include <stdio.h>
#include <limits.h>
#include <string.h>
struct entry_s {
char *key;
char *value;
/*
* Copyright (c) 2016 Simon Schmidt
*
* This software is provided 'as-is', without any express or implied
* warranty. Permission is granted to anyone to use this software for
* any purpose, including commercial applications, and to alter it and
* redistribute it freely.
*/
/*
# http://wiki.osdev.org/Bare_Bones
# Declare constants for the multiboot header.
.set ALIGN, 1<<0 # align loaded modules on page boundaries
.set MEMINFO, 1<<1 # provide memory map
.set FLAGS, ALIGN | MEMINFO # this is the Multiboot 'flag' field
.set MAGIC, 0x1BADB002 # 'magic number' lets bootloader find the header
.set CHECKSUM, -(MAGIC + FLAGS) # checksum of above, to prove we are multiboot
# Declare a multiboot header that marks the program as a kernel. These are magic
# values that are documented in the multiboot standard. The bootloader will
@maxymania
maxymania / main.c
Last active November 22, 2016 14:07
Binary Search Tree, self-balancing.
/*
* Copyright (c) 2016 Simon Schmidt
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
import chisel3._
object MainObj extends App {
def ags = "--v --targetDir generated".split("\\s+")
chisel3.iotesters.chiselMain(ags, ()=> new my.mod.cls.Module)
}