Warning: strpos(): needle is not a string or an integer in /var/www/html/index.php on line 17

Warning: strpos(): needle is not a string or an integer in /var/www/html/index.php on line 23
Martins dies und das - blog.martin-enders.de
Valid HTML and CSS on martin-enders.de 
Wednesday, March 26, 2008, 07:01 PM - Web
I validated my sites on martin-enders.de today with the W3C HTML and CSS validator. I was surprised of the amount of mistakes I made while writing HTML and CSS. There haven't been too much and if there were more then two or three mistakes they have been systematically and easy to correct.

I have some sites which are difficult to integrate in my current layout because there would be a lot of CSS conflicts. This sites are not validated until now.

The next step is to correct the bad HTML of this blog. For example the most styles are assigned with the ID HTML-attribute.


  |  permalink
CL-Webframework 
Thursday, February 28, 2008, 09:54 PM - Computer, Common Lisp, Web Framework
I fetched up the idea of the CL-Webframework mentiond three postst before. I tried to implement an prototype in PHP because this server is a virtual machine and I have some problems to install SBCL.

But the Problem was that I have to deal quite fast with technical restrictions of PHP. That means that I have to think to much about the language itself and if you are a programming-rookie like me it's not so easy to keep track of all these language restrictions. In this way for me it is easier to write in lisp.

I have a little bit expirience with Edmund Weitz' hunchentoot HTTP-Server and I think I can do it easyer with such an setup.

I hope I'll can work a little bit on this small project the next time.

PS:
My concept of the Framework is not much more like the dispatcher of hunchentoot but I like some more functions which are more specific to web publishing which makes content-providing more flexible and easier to use.
I think the way I'd like to go is to provide an more abstract layer for the dispatcher of hunchentoot which maps the ideas and concepts of Publishing Documents in the Web to an Server.
  |  permalink
Create fancy text images with convert (imagemagick) 
Tuesday, February 5, 2008, 09:15 PM - Linux, shell scripts
Today I made a little shell script to create the text-logos like the 'fancy text' image in this entry.


convert -fill 'rgb(128,128,128)' -background transparent -font FONT.TTF -pointsize 50 label:"EXAMPLE TEXT" -rotate 90 OUTPUT_FILE

-fill        Color in rgb notation
-background  Background color (here transparent background)
-font        ttf-file (I think you can also use a system font).
-pointsize   size of the text
-label:""    Text which appears in the image
-rotate      Rotate the image
-OUTPUT_FILE filename of the output file
             (here png because I use a transparent background)


Source: http://imagemagick.org/script/command-line-tools.php
  |  permalink  |  related link
Entry ratings through search engine 
Sunday, February 3, 2008, 02:25 PM - Blog
The most of the previous entries are rated with 3 and have 5 ratings.
I think thats because a search engine was crawling over this blog and opend every rating link.

I hope that the following robots.txt can fix this problem:

User-agent: *
Disallow: rate_cgi.php


PS: In the first moment I was wondering if there has been somebody on my blog and rated articles :-P.

It seems that the robots.txt is not working. Maybe there is a conflict with the following meta-tags:
<!-- Robots -->
<meta name="robots" content="ALL,INDEX,FOLLOW,ARCHIVE" />
<meta name="revisit-after" content="7 days" />


I decided to deactivate the rating functionality.
  |  permalink
Idea for CL-Webframework 
Saturday, February 2, 2008, 11:41 PM - Common Lisp, Web Framework
The idea behind this framework ist that all sites are made of any number of content blocks which belong to an URL.
So the content blocks are mapped to an URL
(URL (Content-I Content-II))

An Example:
Content Block I
-------
| abc |
-------

Content Block II
-------
| def |
-------


Block I and II are bound to serverrelativ URL /content
(:/content ("Content Block I" "Content Block II"))
http://www.martin-enders.de/content leads to a page like this:

/-page----------\
|               |
|   -------     |
|   | abc |     |
|   -------     |
|   -------     |
|   | def |     |
|   -------     |
|_ _ _ _ _ _ _ _|


Idea


The idea behind this framework is that you can map differnt content blocks to an url.

Problems / Questions


How should sites be treated when you use special functionality. Is in content blocks just HTMl allowed or should it be possible to integrate lisp into the pages?
The content Blocks are integrated in an layout so the HTML in the content block is just a part between the <body> and </body> tag. If you need an extra css file you have to be enabled to integrate an special tag to integrate additional information into the HTML head.

But all these workarounds lead to inconsistencies in the framework - it seems that it's not a good design now.

Conceptual Lisp Dispatcher:


(defvar *dispatch*)
(setf *dispatch* '(:/       ("index")
		   :/web    ("web")
		   :/css    ("css2" "css3")))

(defun get-content(content-block)
  content-block)

(defun render-content(content)
  (format t "~a" content))

(defun dispatcher(script-name)
  "This function takes a string as argument 
   and converts it into an keyword for 
   comparison with the url's in *dispatch*"
  (let* ((request (intern (string-upcase script-name) "KEYWORD"))
	 (content (getf *dispatch* request)))
    (dolist (content-block content)
      (render-content (get-content content-block)))
    request))

Conclusion


I'd like to have a small consistent framework for publishing in the web. But the current state of this idea has to many inconsistences.
  |  permalink
New home for my blog 
Friday, February 1, 2008, 12:32 AM - Web, Blog
Currently I'm at work to provide my site a new (better) home. The server is working so far (apache2 and php) but e.g. mail isn't configured.

I'd like to convert the static pages of this blog to html-pages and publish them under www.martin-enders.de - because they don't need any dynamically created content so there is no reason to manage them with a blog system.



From here to the future this blog has a new home at blog.martin-enders.de.
The former blog at mitglied.lycos.de/oberweissenbach/blog is no longer active.



  |  permalink
New Webspace 
Wednesday, January 30, 2008, 07:03 PM - Web, Blog
I orderd today an virtual server from strato.
I have choosen an virtual server because they are not as expensive as dedicated servers. I think for my small applications even a virtual machine is oversized.
My new server will be reachable over the martin-enders.de domain.

I like to set up wordpress for publishing things. One Problem is how to add this entries in a new wordpress installation. The easiest way is maybe to move this complete blog to a new home and link to it.

Now I'm really curious about this v-server.
I have to make some new pictures because the pictures of this and the last entry are not relating to the content of them.


  |  permalink
Structure of Content 
Monday, January 28, 2008, 10:36 PM - General, Computer, Web, Blog
<loose thinking>
Recently I found a new old website of me but this site by itself is a site which includes an older site of me.
So I'm glad that the contet I produced isn't lost but now I think that all this content should be structured.
The Problem is I don't know how to structure it. Should I convert all text-sites into content management system, or should I use wordpress as a combination of Blog and static sites. Or should I write a System by myselef.
I have really no idea....
The main problem is maybe that I don't know what I really want to do with my web-site.
Sometimes I'd like to provide interresting things I'm working on and sometimes I'd like to have a playground.

I'm going to be totally confused :-P.

Maybe I should smash all that old shit to bits (with Thors hammer Mjölnir (-; ) and start with a new small well designed and structured page.
</loose thinking>
  |  permalink
A-Team Fanfiction - Convert people into A-Team fans 
Tuesday, January 22, 2008, 07:02 PM - A-TEAM
I found this amazing site (ateamfanfic.org) at ateamresource.de.

I have two colleagues studying with me, who didn't know THE A-TEAM at all. At first I can't belive it but now I can (ab)use them for a test (-; .

10 ways to convert people into A-Team fans
by Hannurdock


*Giggle* - I'm tired, and this is the kind of weird thing I do when I am over-tired. Here's to the weekend !!! *Raising beer at 2.00 in the morning*

SCENARIO: OK, so your friend is not exactly an A-Team enthusiast. She hates the team, and your job is to convert. *giggle*

1. Hum the A-Team theme tune whenever you are around the AA Friend (Against A-Team). Eventually, whether she knows it or not she'll start humming it too. A catchy tune always catches them out.

2. Have an evening at home playing board games. Put a few episodes of the A-Team on the box. Play the game for hours, being as boring as possible. Eventually she will turn her eyes for entertainment towards the TV, and wham, got her.

3. Ask her opinions every minute on if she thinks Face is good looking. Show pictures, with him smiling broadly. If that doesn't work, nothing will.

4. Infect her Furby with A-Team words - like 'I love it when a plan comes together', 'and on the jazz'. The principle being simple, Furby owners love their pretend pets so much, they DO start to talk like them. (Believe me I know, I have two).

5. Comment on every movie with an A-Team slant. Like, oh isn't Aliens a good film. Yeah, but wouldn't Hannibal be an ideal choice instead of Hicks. More leadership experience, after all.

6. Ask her opinions on the war in Vietnam. Then spend five hours explaining how the team knocked over the Bank of Hanoi and got caught 50 clicks from Denang.

7. Smoke cigars in her prescence. When asked to put it out, chew off the end and spit it on her shoe.

8. Steal a straight jacket, put her in it and leave her with the television set doing a marathon of 10 ateam episodes. If nothing else, at least she'll act like Murdock when she's freed.

9. Create an A-Team computer virus especially for her machine. Have Hannibal snickering in the background, and BA telling her to SHUT UP, FOOL! would be extremely amusing, and also send her insane.

10. Last, but certainly not least, introduce her to the fanfic at the VA Canteen.

Well, that's it. If your friend is not seriously insane or salivating like a mad woman once your done, you may have scored a winner !!

Either that, or just throw her in the VA in a straight jacket !!!

Hannurdock
(Smiling wickedly)

Source: http://www.ateamfanfic.org/read.php?&sku=103
  |  permalink
THW - Tödlicher Einsatzunfall in Sachsen-Anhalt 
Thursday, January 17, 2008, 09:03 PM - THW
„Die Angehörigen der Bundesanstalt THW im Ehren- und Hauptamt sind bestürzt. Unser Mitgefühl gilt der Familie und den Kameraden des Opfers“, sagte THW-Präsident Albrecht Broemme, als er vom tragischen Ausgang dieses Einsatzes erfuhr.

Quelle: Quelle: THW Pressemitteilungen

Dem moechte ich mich natuerlich anschliessen.


  |  permalink  |  related link

Next