Freitag, 15. Januar 2010

Watch my new blog

Please watch my new blog at...

Bitte besuchen Sie meinen neuen Blog auf...

www.daniel-marschall.de

Donnerstag, 30. Juli 2009

Tools, die jeder einmal benutzt haben sollte (wird ständig geupdated)

Tools für den Alltag

OpenOffice.org - Alternative zu Microsoft Office
Unlocker - Löschen gesperrter Dateien
TextPad - Guter Texteditor
Microsoft RoboCopy - Inkrementelles Backup
WildEdit - Massenersetzungen

Online-Tools

Wikipedia - Enzyklopädie von Benutzern
10-Minute Mail - Wegwerf E-Mail-Adresse
Bug me not - Kostenlose Zugänge bei Webdiensten
Texte vergleichen online - Sehr übersichtlich und genau
ZamZar - Online-Datei-Converter

Sicherheit

TrueCrypt - Verschlüsselung des kompletten Systems

Servertools

WinSCP - Dateiübertragung über eine SSH-Session im Explorer/Samba-Feel
PuTTy - Teletyper für Linux.

Browser

Firefox - Der Browser der Zukunft
Tab Mix Plus für Firefox - Verbessert die Tabs

Entwicklung

Turbo Delphi Explorer - Kostenlose Delphi 2006 IDE
Eclipse für Java - Ausgezeichnete IDE für Java
PHP Eclipse - Eclipse für PHP
Subclipse - Eclipse mit SubVersion Einbindung
Microsoft Visual Studio 2008 Express - Kostenloses Visual Web Designer, Visual Basic, Visual C#, Visual C++
Microsoft Expression Web - Nachfolger von FrontPage; Leider nicht kostenlos
Resource Hacker - Bearbeiten von Resourcen in RES/EXE/OCX/DLL-Dateien
HxD - Freeware Hexeditor
WireShark - Kostenloser Packet-Logger für Diagnosezwecke

Entwicklung - Onlinetools

PHP Code Cleaner (Beta) - Bereinigen von PHP Code
Kuler - Design-Farbvorschläge
Online MD5-Calculator - Berechnen eines MD5-Wertes
MD5-Recovery - Rainbow-Table-Abfrage
Whois.net - Internationales WhoIs (Domains-Inhaber finden)
Ripe.net - IP-Adresse verfolgen
Web-Sniffer.net - Anzeigen von Response und Request Headern
WieIstMeineIp.de - Anzeigen der eigenen IP

Ich suche immer noch...

Einen guten Freeware Icon Editor

Dienstag, 14. Juli 2009

GameShark Cheats for "Absolute Invincible Raijin-Oh" (Zettai Muteki - Raijinou) for GameBoy (Update!)

Cheats found by Daniel Marschall by manual scanning of the working RAM.

01F039D0: You are invulnerable!
0100AAD0: Your enemies gets killed when you beat them once*!
010950D0: Infinite missiles for Hou-Oh and Bakuryuu2 ("dragon")
010951D0: Infinite missiles for Juu-Oh ("rhino")
010952D0: Infinite flashes for Raijin-Oh
010953D0: Infinite shields for Raijin-Oh and God Raijin
010954D0: Infinite bazooka for God Raijin
010955D0: Infinite bazooka for Bakuryuu1
010956D0: Infinite gravity waves for Raijin-Oh and God Raijin
010104D1: Start and stay at round 1 (Enemy: Kabirian)
010204D1: Start and stay at round 2 (Enemy: Deadbear)
010304D1: Start and stay at round 3 (Enemy: Aburaa; アブラー)
010404D1: Start and stay at round 4 (Enemy: Marshmal)
010504D1: Start and stay at round 5 (Enemy: Skelton)
010604D1: Start and stay at round 6 (Enemy: Biolon)
010704D1: Start and stay at round 7 (Enemy: Jrksatan)
010804D1: Start and stay at round 8 (Enemy: S.Jark)

* Please remember! In this game, you can only kill the enemy if you are in the "combined" form, that means Raijin-Oh for round 1 to 5 and God Raijin for round 6 to 8. Otherwise, the enemy will stuck at the life value "30" and will not get any further damage from you.

Even if the game was reviewed as "the baddest", it was one of the games that fascinated me in my childhood! And I do not know how I could play it to the end since there were no continues!

Maybe I can hack the game someday to realize a continue functionality or something like that.

// Update: I have found some new codes and I finally could make a assembler patch which allows to implement the continue functionality. The continue hack which I developed can be found at RomHacking.net (IPS ROM Patch). Have fun!

Samstag, 20. Juni 2009

Hack: Windows ME Notepad improvement - More key shortcuts

Notepad in Windows 98 and Windows ME don't know the usual accelerator key shortcuts.

How to improve:

Open notepad.exe in Resource Hacker and edit Menu-1 and Accelerators-1.

Here you see my modified NotePad.exe for the German Windows ME Editor.

1 MENU
LANGUAGE LANG_GERMAN, SUBLANG_GERMAN
{
POPUP "&Datei"
{
MENUITEM "&Neu\tStrg+N", 9
MENUITEM "Ö&ffnen...\tStrg+O", 10
MENUITEM "&Speichern\tStrg+S", 1
MENUITEM "Speichern &unter...\tF12", 2
MENUITEM SEPARATOR
MENUITEM "Seite ein&richten...", 32
MENUITEM "&Drucken\tStrg+P", 14
MENUITEM SEPARATOR
MENUITEM "B&eenden\tAlt+F4", 28
}
POPUP "&Bearbeiten"
{
MENUITEM "&Rückgängig\tStrg+Z", 25
MENUITEM SEPARATOR
MENUITEM "&Ausschneiden\tStrg+X", 768, GRAYED
MENUITEM "&Kopieren\tStrg+C", 769, GRAYED
MENUITEM "&Einfügen\tStrg+V", 770, GRAYED
MENUITEM "&Löschen\tEntf", 771, GRAYED
MENUITEM SEPARATOR
MENUITEM "Alles &markieren\tStrg+A", 7
MENUITEM "Uhrzeit/&Datum\tF5", 12
MENUITEM SEPARATOR
MENUITEM "&Zeilenumbruch", 27
MENUITEM "&Schriftart...", 37
}
POPUP "&Suchen"
{
MENUITEM "&Suchen...\tStrg+F", 3
MENUITEM "&Weitersuchen\tF3", 8
}
POPUP "&?"
{
MENUITEM "&Hilfethemen", 5
MENUITEM SEPARATOR
MENUITEM "Inf&o", 11
}
}


1 ACCELERATORS
LANGUAGE LANG_GERMAN, SUBLANG_GERMAN
{
VK_INSERT, 769, CONTROL, VIRTKEY
VK_F1, 5, VIRTKEY
VK_F3, 8, VIRTKEY
VK_F5, 12, VIRTKEY
VK_BACK, 25, ALT, VIRTKEY
"^Z", 25
"^X", 768
"^C", 769
"^V", 770
"^A", 7
"^F", 3
"^N", 9
"^O", 10
"^S", 1
"^P", 14
VK_F12, 2, VIRTKEY

}


2 ACCELERATORS
LANGUAGE LANG_GERMAN, SUBLANG_GERMAN
{
VK_INSERT, 769, CONTROL, VIRTKEY
VK_F1, 5, VIRTKEY
VK_F3, 8, VIRTKEY
VK_F5, 12, VIRTKEY
VK_BACK, 25, ALT, VIRTKEY
"^Z", 25
"^X", 768
"^C", 769
"^V", 770
VK_ESCAPE, 28, VIRTKEY
VK_C, 28, CONTROL, VIRTKEY
VK_D, 28, CONTROL, VIRTKEY
VK_Z, 28, CONTROL, VIRTKEY
"^A", 7
"^F", 3
"^N", 9
"^O", 10
"^S", 1
"^P", 14
VK_F12, 2, VIRTKEY
}

Don't forget to compile every script change and then save the EXE File.

Montag, 25. Mai 2009

Experts Exchange austricksen

ExpertsExchange ist ein Portal, auf dem Fragen von sogenannten "Experten" beantwortet werden. Das Problem ist, dass man dafür zahlen soll. Da ich der Meinung bin, Wissen sollte kostenlos sein und ich wissen möchte, ob die Frage überhaupt beantwortet wurde, habe ich einen Hack gefunden:

Google kann ExpertsExchange indizieren, also auf alle Inhalte zugreifen. Die Unterscheidung Google und Internetuser wird über den User-Agent vollzogen.

Es gibt 2 Möglichkeiten:

1. Ihr findet das Thema in Google. Klickt dann einfach auf "Cache" und schon seht ihr die gecachte Seite, die die Ergebnisse enthält. Ohne jegliche Manipulation oder Browsermodifikationen! Problem: Diese Seite ist meist etwas veraltet und beinhaltet meistens nicht die aktuellsten Inhalte.

2. Ihr möchtet die URL immer besuchen können. Biegt eueren Browser irgendwie so um, dass er einen anderen User-Agenten (den von Google) sendet. Ladet euch z.B. die Erweiterung Firefox User Agent Switcher herunter und gebt euch als "Googlebot" aus.

Wenn das erfolgreich war, dann seid ihr auf der Seite, auf der die Ergebnisse sichtbar sind. Aber: Ich müsst GANZ nach unten scrollen, damit ihr überhaupt die Lösungen seht. Dieser Trick, dass die meisten Leute denken, da unten seien nur nutzlose Links, ist sehr effektiv.

Von GEMA gesperrte YouTube Videos herunterladen

Einige Musikvideos bei YouTube sind dank der GEMA nicht mehr für deutsche Internetbenutzer betracht- oder anhörbar.

Die Lösung ist, das Video von einer z.B. amerikanischen Internetleitung herunterzuladen.

Ein Tipp wäre z.B. Listen To YouTube

Gebt auf dieser Adresse die YouTube-URL ein (die ihr in euren Favoriten finden könntet) und ladet die Datei einfach als MP3 herunter. Der Server wird das Video herunterladen und den Audioteil extrahieren. Dies ist absolut legal.

Es können also Videos heruntergeladen werden, die diesem Server (der in den USA stehen dürfte) zugänglich sind.

Kleines Mango: Die Erweiterung "&fmt=18" wird nicht erkannt und somit ist die MP3 nur in Low-Quality.

Ihr könnt auch andere Dienste versuchen, die das Video in AVI oder FLV-Format herunterladen oder die hohe Qualität beachten.

Bei dem Hinzufügen der Erweiterung &fmt=18 an die YouTube-Video-URL wird die Sound- und Bildqualität heraufgesetzt, auch wenn diese Funktion meistens nicht durch die grafische Benutzeroberfläche erreichbar ist.

How to run Zork Nemesis on newer systems

Zork Nemesis, one of the best games of its time does not run under Windows NT systems... This manual shows how to run the version of Activision on your Windows XP system.

There are three Problems:

Problem 1: Installation cannot complete...

The version of InstallShield isn't supported by Windows XP. After the welcome screen, you'll see a error message and the proram will be terminated. So we install Zork Nemesis by hand.
Note: When setup works, then you can overjump this step and continue with step 2.

  1. We copy the directory „Nemesis“ from CD 1 to the hard-disk as C:\Program files\Activision\Zork Nemesis
  2. If you want the help-file, copy the file ZNEMHELP.HLP into the Zork-directory.
  3. The folder ZNEMMX is for the music of the game. Delete all files in the directory ZNEMMX, because they have no contents – the game would not have music. Then you copy all SRC-Files except NULLFILE.SRC from the directory ZASSETS of the 1. CD into the folder With this method you have no uninstallation-routine. So you have to uninstall it by hand by deleting the game-directory. ZNEMMX on your hard-disk and change the file-extensions from SRC to RAW.
Problem 2: The game cannot detect the CD-ROM-Drive and cannot run

To prevent this, you have to copy all contents from the CDs to the hard-disk.
  1. Delete the file C:\Program files\Activision\Zork Nemesis\ZNEMSCR\Small.zix
  2. Rename the file C:\Program files\Activision\Zork Nemesis\ZNEMSCR\Medium.zix to Nemesis.zix and then move it to C:\Program files\Activision\Zork Nemesis .
  3. Create 3 directorys in the directory C:\Program files\Activision\Zork Nemesis: „CD1“, „CD2“ and „CD3“
  4. Copy the folders „ZASSETS“ of the 3 CDs to the folders
  5. Now we open Nemesis.zix and execute following replacings:
    1. Replace „CD0: “ (Space after colon) with „DIR: .\CD1\“
    2. Replace „CD1: “ (Space after colon) with „DIR: .\CD2\“
    3. Replace „CD2: “ (Space after colon) with „DIR: .\CD3\“
  6. You can delete the lines 2, 3 and 4
After this steps you can run „ZNEMESIS.EXE“ (you can put a shortcut on your desktop or in the start menu). You should set the compatibility-modus to „Windows 95“ because then the game reacts better when a key is pressed. You cannot copy the folder C:\Program files\Activision\Zork Nemesis which needs 1.51 GB space on a DVD because the game need write-rights to save the configuration and the game-saves. With the manual installation you do not need the 3 game CDs anymore.

Problem 3: Scrolling is too fast

With fast computers the game is hard to play because the scrolling is too fast. You need a tool to slow down the CPU. Download the tool http://www.pctipp.ch/index.cfm?pid=1368&pk=16960, unzip the file and run „SlowDown.exe“. Set „Speed“ and „Reaction“ to „slow“. Let the window open when you run Zork Nemesis. If the scrolling is still too fast, then start the program a second time and set and repeat the configuration. With my AMD 3200+ MHz Prozessor (hat 2002 MHz) I had to run SlowDown two times and I set the regulators of both windows to the minimum. After the game you should set the regulators to „fast“ und close the windows. Then your CPU works fast again.

You can also make a batch script with another tool, if you want.

At some systems, the game just don't work. In this case you should use a virtual machine like "Microsoft Virtual PC 2007" (free).

I hope I could help you with this manual.