• Categories
  • Tag Archives: programming

    python

    PyTAG: Saving and Loading

    This is another of my small “Python Text Adventure Game” tutorials. I’ll show you a simple way to save data to a file and load it again.
    First of all, you have to import the regular expression module re. Continue reading

    Posted in Programming | Tagged , , | Leave a comment
    php

    PHP: Simple Chart Script

    Source: Show »   <?php if (in_array($_GET["table_name"], array(‘cooler’))) { $table_name = $_GET["table_name"]; } else { $table_name = “cooler”; } if (in_array($_GET["order_value"], array(‘name’, ‘standard’, ‘overclock’))) { $order_value = $_GET["order_value"]; } else { $order_value = “name”; } if(in_array($_GET["order_align"], array(‘asc’, ‘desc’))) { $order_align … Continue reading

    Posted in Programming | Tagged , | Leave a comment
    python

    Python Text Adventure Game: Simple Interaction

    This is the excerp of this text ’cause it’s so fraking long. Continue reading

    Posted in Programming | Tagged , , | Leave a comment
    python

    Python Text Adventure Game: Displaying Text Slowly

    I started to work on a Python text adventure game. I will split the working progress into several parts. This is the first one. With “displaying the text slowly” I mean that, for example the introduction text, should appear like … Continue reading

    Posted in Programming | Tagged , , | 6 Comments
    python

    Caesar Cipher in Python

    I just wrote a simple encryption application using the caesar cipher. I wrote the same in C++ a while ago but this version is, in my opinion,  much better coded. I decided to stop learning C++ and learn Python instead. … Continue reading

    Posted in Programming | Tagged , , , | 1 Comment