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
; Bjoern Hoehrmann <[email protected]> <http://bjoern.hoehrmann.de> | |
(require (lib "graphics.ss" "graphics")) | |
; Konstanten | |
(define BREITE 650) ; Breite des Fensters | |
(define HOEHE 255) ; Hoehe des Fensters | |
(define ERSTES-X 0.5) ; erster wert fuer x (es muss gelten 0<x<1) | |
(define WDH-SCHRITT-1 300) ; Wiederholungen im ersten Schritt | |
(define WDH-SCHRITT-2 100) ; Wiederholungen im zweiten Schritt |
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
; Bjoern Hoehrmann -- <[email protected]> -- <http://bjoern.hoehrmann.de> | |
; Global constants and type definitions | |
(define empty-char 0) | |
(define HEIGHT 5) | |
(define WIDTH 5) | |
(define START-X 0) | |
(define START-Y 0) | |
(define-struct move (x y)) | |
(define knightmoves |
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
; +-------------------------------------------------------------------------+ | |
; Bjoern Hoehrmann -- <[email protected]> -- <http://bjoern.hoehrmann.de> | |
; +-------------------------------------------------------------------------+ | |
(define HEIGHT 6) | |
(define WIDTH 7) | |
(define X-WINS 4) | |
(define empty-char "-") | |
(define x-char "x") |
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
// ==UserScript== | |
// @name Generate mbox files for W3C list archives | |
// @description Generate mbox files for W3C list archives | |
// @version 0.9 | |
// @author Bjoern Hoehrmann | |
// @license GPLv3+ | |
// @include http://lists.w3.org/Archives/* | |
// @include https://lists.w3.org/Archives/* | |
// ==/UserScript== |
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
{ _Add wildcards, parameter comfort, seperate file extraction for manipulation, | |
graphical output, check for xdim, memory using Speedup for swapping,..._ } | |
{$Q-} | |
program TEXfileUnpack; | |
(* Converts .TEX Files from SquareSoft's Final Fantasy VII TO BMP files *) | |
(* Copyright (c) 1998 by Bjoern Hoehrmann All rights reserved *) | |
type |
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
program LgpUnp; | |
(* Extracts Files from SquareSoft's Final Fantasy VII .LGP files *) | |
(* Copyright (c) 1998 by Bjoern Hoehrmann All rights reserved *) | |
var Index:record { Entry in the filelist at the beginning } | |
Name:array[0..19] of char; { Filename } | |
offset:longint; { FileOffset of this file } | |
res:longint; { Unused Data } | |
end; |
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
{$M 16384,0,655360} | |
uses dos,strings,cgitool,filetool; | |
var OutBuf,InBuf:array[0..2047] of char; | |
gb:file; | |
i,j,k:integer; | |
ch:char; | |
susername,semail,sdate:String; | |
comment:array[0..2047] of char; | |
s,qs:string; | |
GesAnz:longint; |
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
uses StrngTol; | |
type | |
parameter=record | |
FileName:String; | |
ExtractPath:String; | |
ShowHelpScreen:Boolean; {/?} | |
KeepInstName:boolean; {/K} | |
KeepSampName:boolean; {/S} | |
QuitOutput:Boolean; {/Q} | |
end; |
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
uses tierec,strngtol; | |
type | |
fgdesk=record | |
name:string; | |
typ:string; | |
end; | |
var f:file; | |
header:fheader; |
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
// MatheMatoFix Version 1.2W | |
#include <windows.h> | |
#include "resource.h" | |
#include <math.h> | |
//-Globale Variablen--------------------------------- | |
HWND hwnd_Mathe; // Mathematofix Main Window | |
//HINSTANCE hInst; // Global Instance | |
//-Globale Variablen ende---------------------------- |