Lieferant | Material | Format mm | Preis/m² | Preis/Stück | Anmerkungen |
---|---|---|---|---|---|
Hornbach | Dreischicht Fichte 19mm B/C | 1250x2500 | 21.90 | 68.44 | |
Tischlerplatte Birke 18mm | 1250x2500 | 19.95 | 62.34 | ||
Obi | Schalung Doka 27mm | 500x2000 | 17.90 | ||
Schalung Doka C 21mm | 500x1500 | 8.99 | mit feuerverzinktem Kantenschutz zum absägen |
This file contains 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
-- helper functions for repl'ing around | |
-- | |
-- | |
local repl=_G.repl or {} | |
local function print_tree(tab) | |
local indent="" | |
local text="" | |
local i=#tab | |
while i>0 do |
This file contains 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
from sys import stdin | |
import socket, select | |
channel = '#worldchat' | |
server = ('vienna.irc.at',6669) | |
ident = nick = 'herbert' | |
user = 'Herbert Herbert' | |
irc = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
irc.connect(server) |
This file contains 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
<?xml version="1.0"?> | |
<!-- | |
dirlist.xslt - transform nginx's into lighttpd look-alike dirlistings | |
I'm currently switching over completely from lighttpd to nginx. If you come | |
up with a prettier stylesheet or other improvements, please tell me :) | |
--> | |
<!-- | |
Copyright (c) 2016 by Moritz Wilhelmy <[email protected]> |
This file contains 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
How2Pointer | |
=========== | |
Speicher besteht aus linear angeordneten einzelnen Zellen, diese Zellen haben | |
Adressen, quasi der Index an der ein Wert steht. Adresswerte werden | |
üblicherweise im Hexadezimalsystem angegeben. Jede Zelle ist dabei 8 bit = 1 | |
byte breit. Im unten stehenden Diagramm sind dabei 4 1-byte-Werte | |
zu einem 32-bit breiten sog. "Maschinenwort" zusammengefasst, die Adressen | |
zwischen diesen Adressen zeigen aber dazwischen (z.B. sind sowohl 0x0F5023A0 als | |
auch 0x0F5023A1 gültige Adressen, obwohl unten einige Werte dazwischen |