1
0
mirror of https://github.com/mbirth/wiki.git synced 2024-09-19 06:23:25 +01:00

Add redirect to new site.

This commit is contained in:
Markus Birth 2022-01-23 18:14:59 +01:00
parent 5afeb5c0f9
commit 9b668db718
Signed by: mbirth
GPG Key ID: A9928D7A098C3A9A
314 changed files with 4146 additions and 3206 deletions

13
_layouts/redirect.html Normal file
View File

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<meta http-equiv="refresh" content="0; url={{ page.redirect_to }}" />
<title>CONTENT MOVED: {{ page.title }} :: {{ site.name }}</title>
</head>
<body>
<h1>The page <em>{{ page.title }}</em> moved.</h1>
If you are not being redirected automatically, please <a href="{{ page.redirect_to }}">click here</a>.
</body>
</html>

View File

@ -1,17 +1,20 @@
--- ---
title: Domain-Cookies
language: en
layout: default
created: 2008-07-15 22:08:02 +0200 created: 2008-07-15 22:08:02 +0200
updated: 2008-07-15 22:08:02 +0200 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2008/07/15/domain-cookies.html
tags: tags:
- know-how - know-how
- development - development
- web - web
- cookies - cookies
title: Domain-Cookies
toc: false
updated: 2008-07-15 22:08:02 +0200
--- ---
According to various documentation, the cookie domain has to contain **at least** 2 dots for a browser to accept this According to various documentation, the cookie domain has to contain **at least** 2 dots for a browser to accept this
as a wildcard cookie (e.g. `.google.com`) and use this for all sub-domains. So `.foo.bar.com` should work - **should**. as a wildcard cookie (e.g. `.google.com`) and use this for all sub-domains. So `.foo.bar.com` should work - **should**.
Opera doesn't like it and only accepts it domain-wide if there are **exactly** 2 dots in the domain name. In this case Opera doesn't like it and only accepts it domain-wide if there are **exactly** 2 dots in the domain name. In this case
`.bar.com`. If you use `.foo.bar.com` the string is ignored and the cookie only gets set for the current domain. `.bar.com`. If you use `.foo.bar.com` the string is ignored and the cookie only gets set for the current domain.

View File

@ -1,16 +1,19 @@
--- ---
title: Bazaar (bzr)
language: en
layout: default
created: 2008-07-31 22:32:29 +0200 created: 2008-07-31 22:32:29 +0200
updated: 2008-08-01 00:41:36 +0200 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2008/07/31/bazaar-bzr.html
tags: tags:
- know-how - know-how
- development - development
- dvcs - dvcs
- bazaar - bazaar
title: Bazaar (bzr)
toc: false
updated: 2008-08-01 00:41:36 +0200
--- ---
Bazaar is a distributed versioning system. Bazaar is a distributed versioning system.
**Homepage:** <http://bazaar-vcs.org/> **Homepage:** <http://bazaar-vcs.org/>
@ -66,4 +69,4 @@ You will mostly just convert the dumpfile to a big bzr-repo:
You can then push the repo to the central repo by issuing You can then push the repo to the central repo by issuing
bzr push bzr/ bzr://path/to/central/repo bzr push bzr/ bzr://path/to/central/repo

View File

@ -1,16 +1,19 @@
--- ---
title: Mono + WinForms
language: en
layout: default
created: 2008-10-08 15:23:14 +0200 created: 2008-10-08 15:23:14 +0200
updated: 2009-07-17 23:15:27 +0200 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2008/10/08/mono-+-winforms.html
tags: tags:
- know-how - know-how
- development - development
- mono - mono
- winforms - winforms
title: Mono + WinForms
toc: false
updated: 2009-07-17 23:15:27 +0200
--- ---
**Installation manual:** [mono-project.com](http://www.mono-project.com/WinForms_Designer#Installation) **Installation manual:** [mono-project.com](http://www.mono-project.com/WinForms_Designer#Installation)
**Forum:** [UbuntuForums.org](http://ubuntuforums.org/showthread.php?t=468183) **Forum:** [UbuntuForums.org](http://ubuntuforums.org/showthread.php?t=468183)
@ -30,4 +33,4 @@ Version: 2.0.0.0
Libs: -r:${pkglibdir}/System.Windows.Forms.dll Libs: -r:${pkglibdir}/System.Windows.Forms.dll
~~~ ~~~
Afterwards you can add this as a Reference to your project in MonoDevelop. Afterwards you can add this as a Reference to your project in MonoDevelop.

View File

@ -1,15 +1,18 @@
--- ---
title: Firebug
language: en
layout: default
created: 2008-12-22 14:58:35 +0100 created: 2008-12-22 14:58:35 +0100
updated: 2009-07-24 12:34:42 +0200 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2008/12/22/firebug.html
tags: tags:
- know-how - know-how
- development - development
- firebug - firebug
title: Firebug
toc: false
updated: 2009-07-24 12:34:42 +0200
--- ---
Firebug is a useful Firefox extension to debug JavaScript and more. To not raise error messages on browsers without Firebug is a useful Firefox extension to debug JavaScript and more. To not raise error messages on browsers without
Firebug, there's a small script called [firebugx.js](http://getfirebug.com/firebug/firebugx.js), which creates empty Firebug, there's a small script called [firebugx.js](http://getfirebug.com/firebug/firebugx.js), which creates empty
functions. [Sascha Hameister](http://javascript.io/index.php?/archives/42-Kleiner-Performance-Patch-fuer-firebugx.js.html) functions. [Sascha Hameister](http://javascript.io/index.php?/archives/42-Kleiner-Performance-Patch-fuer-firebugx.js.html)
@ -30,4 +33,4 @@ if (!window.console || !console.firebug) {
} }
{% endhighlight %} {% endhighlight %}
You might also want to use [Firebug Lite](http://getfirebug.com/lite.html). You might also want to use [Firebug Lite](http://getfirebug.com/lite.html).

View File

@ -1,16 +1,19 @@
--- ---
title: PEAR Channels
language: en
layout: default
created: 2009-02-11 20:29:22 +0100 created: 2009-02-11 20:29:22 +0100
updated: 2009-08-09 13:35:46 +0200 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/02/11/pear-channels.html
tags: tags:
- know-how - know-how
- development - development
- php - php
- pear - pear
title: PEAR Channels
toc: false
updated: 2009-08-09 13:35:46 +0200
--- ---
Some channels for PEAR. Use this to add them: Some channels for PEAR. Use this to add them:
pear channel-discovery <url> pear channel-discovery <url>
@ -44,4 +47,4 @@ The easiest solution was found in the last post of a thread in the [PEAR Forum](
* do a `sudo pear update-channels` * do a `sudo pear update-channels`
*[PEAR]: PHP Extension and Application Repository *[PEAR]: PHP Extension and Application Repository

View File

@ -1,15 +1,18 @@
--- ---
title: Compile wx.NET
language: en
layout: default
created: 2010-01-22 17:36:17 +0100 created: 2010-01-22 17:36:17 +0100
updated: 2010-01-22 17:48:52 +0100 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2010/01/22/compile-wx.net.html
tags: tags:
- know-how - know-how
- development - development
- wx-net - wx-net
title: Compile wx.NET
toc: false
updated: 2010-01-22 17:48:52 +0100
--- ---
* **Homepage:** <http://wxnet.sf.net/> * **Homepage:** <http://wxnet.sf.net/>
*wx.NET* is a *wxWidgets*-wrapper for Mono. The compilation is not really straight-forward as one is used to. *wx.NET* is a *wxWidgets*-wrapper for Mono. The compilation is not really straight-forward as one is used to.
@ -33,4 +36,4 @@ tags:
make wxnet-core make wxnet-core
1. find your library in `Bin/wx.NET.dll` 1. find your library in `Bin/wx.NET.dll`

View File

@ -1,17 +1,20 @@
--- ---
title: JSON Mime-Types
language: en
layout: default
created: 2010-03-11 14:34:12 +0100 created: 2010-03-11 14:34:12 +0100
updated: 2010-03-11 14:34:12 +0100 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2010/03/11/json-mime-types.html
tags: tags:
- know-how - know-how
- development - development
- web - web
- javascript - javascript
- json - json
title: JSON Mime-Types
toc: false
updated: 2010-03-11 14:34:12 +0100
--- ---
For JSON data, there are different mime-types floating around the web: For JSON data, there are different mime-types floating around the web:
* `application/json` * `application/json`
@ -23,4 +26,4 @@ At [ruby-forum.com](http://www.ruby-forum.com/topic/94728#193035) there is a nic
is best to use **`text/x-json`**. The already wide-spread `application/json` is not really correct as `application` is is best to use **`text/x-json`**. The already wide-spread `application/json` is not really correct as `application` is
meant for data which can only be read *after being processed*. But as JSON is clear-text, you can read it somewhat meant for data which can only be read *after being processed*. But as JSON is clear-text, you can read it somewhat
without parsing. That's why the `text` branch is to be preferred. And as the `json` type is not yet approved, you have without parsing. That's why the `text` branch is to be preferred. And as the `json` type is not yet approved, you have
to use `x-json` - a nonstandard extension. to use `x-json` - a nonstandard extension.

View File

@ -1,16 +1,19 @@
--- ---
title: Tools I should use more often
language: en
layout: default
created: 2016-04-08 22:38:47 +0200 created: 2016-04-08 22:38:47 +0200
updated: 2016-10-30 12:36:59 +0100 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2016/04/08/tools-i-should-use-more-often.html
tags: tags:
- know-how - know-how
- development - development
- tools - tools
- helpers - helpers
title: Tools I should use more often
toc: false
updated: 2016-10-30 12:36:59 +0100
--- ---
I often come across useful little tools where I think, I should try them later. I often come across useful little tools where I think, I should try them later.
But this "later" never happens… But this "later" never happens…
@ -43,4 +46,4 @@ Cool tools I already use
* [fish-shell](https://github.com/fish-shell/fish-shell) --- friendly interactive shell * [fish-shell](https://github.com/fish-shell/fish-shell) --- friendly interactive shell
* [glances](https://github.com/nicolargo/glances) --- An eye on your system, htop+df+iotop+iftop and more * [glances](https://github.com/nicolargo/glances) --- An eye on your system, htop+df+iotop+iftop and more
* [Guake](https://github.com/Guake/guake) --- drop-down terminal for Gnome * [Guake](https://github.com/Guake/guake) --- drop-down terminal for Gnome
* [Fira Code](https://github.com/tonsky/FiraCode) --- development font with awesome ligatures for pretty code * [Fira Code](https://github.com/tonsky/FiraCode) --- development font with awesome ligatures for pretty code

View File

@ -1,16 +1,19 @@
--- ---
title: Getting Email Under Control
language: en
layout: default
created: 2008-07-15 23:59:52 +0200 created: 2008-07-15 23:59:52 +0200
updated: 2008-07-15 23:59:52 +0200 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2008/07/15/getting-email-under-control.html
tags: tags:
- know-how - know-how
- gettingthingsdone - gettingthingsdone
- gtd - gtd
- email - email
title: Getting Email Under Control
toc: false
updated: 2008-07-15 23:59:52 +0200
--- ---
* **Homepage:** [www.davidco.com](http://www.davidco.com/store/catalog/NEW-Getting-Email-Under-Control-p-16377.php) * **Homepage:** [www.davidco.com](http://www.davidco.com/store/catalog/NEW-Getting-Email-Under-Control-p-16377.php)
Managing the flood of email messages that most of us need to interact with on a daily basis is a growing challenge. No Managing the flood of email messages that most of us need to interact with on a daily basis is a growing challenge. No
@ -161,4 +164,4 @@ whatever it takes to use it wisely and safely. It is a huge productivity enhance
a severe occupational hazard. a severe occupational hazard.
©David Allen & Company 1998, 2008. All rights reserved. www.DavidAllenGTD.com ©David Allen & Company 1998, 2008. All rights reserved. www.DavidAllenGTD.com

View File

@ -1,20 +1,23 @@
--- ---
title: Sony PlayStation 2
language: en
layout: default
created: 2008-12-05 00:31:49 +0100 created: 2008-12-05 00:31:49 +0100
updated: 2008-12-05 00:31:49 +0100 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2008/12/05/sony-playstation-2.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- sony - sony
- playstation - playstation
- pstwo - pstwo
title: Sony PlayStation 2
toc: false
updated: 2008-12-05 00:31:49 +0100
--- ---
<ul> <ul>
{% for page in site.categories.sony-playstation-2 %} {% for page in site.categories.sony-playstation-2 %}
<li><a href="{{ page.url }}">{{ page.title }}</a></li> <li><a href="{{ page.url }}">{{ page.title }}</a></li>
{% endfor %} {% endfor %}
</ul> </ul>

View File

@ -1,17 +1,20 @@
--- ---
title: ASUS WL-300g
layout: default
created: 2009-02-02 23:18:42 +0100 created: 2009-02-02 23:18:42 +0100
updated: 2009-02-02 23:18:42 +0100 layout: redirect
toc: true layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/02/02/asus-wl-300g.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- wifi - wifi
- asus - asus
- firmware - firmware
title: ASUS WL-300g
toc: true
updated: 2009-02-02 23:18:42 +0100
--- ---
Install DD-WRT Install DD-WRT
============== ==============
@ -48,4 +51,4 @@ The CRC32 checksum matched that in the header.
So I calculated the CRC32 of my modified file and changed the header - and now I could upload the DD-WRT file using the normal firmware So I calculated the CRC32 of my modified file and changed the header - and now I could upload the DD-WRT file using the normal firmware
upgrade of the original firmware. After installing v23, you can easily update to v24 using the DD-WRT web interface. upgrade of the original firmware. After installing v23, you can easily update to v24 using the DD-WRT web interface.
![DD-WRT Version Info]({{ site.url }}/assets/ddwrt.png) ![DD-WRT Version Info]({{ site.url }}/assets/ddwrt.png)

View File

@ -1,17 +1,20 @@
--- ---
title: Samsung SGH-Z300/ZM60
language: en
layout: default
created: 2009-02-02 18:44:27 +0100 created: 2009-02-02 18:44:27 +0100
updated: 2009-02-02 18:51:02 +0100 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/02/02/samsung-sgh-z300zm60.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- samsung - samsung
- phone - phone
title: Samsung SGH-Z300/ZM60
toc: false
updated: 2009-02-02 18:51:02 +0100
--- ---
I got a Samsung ZM-60 from T-Mobile (incl. SIMlock). The first shock came after switching it on for the first time: I got a Samsung ZM-60 from T-Mobile (incl. SIMlock). The first shock came after switching it on for the first time:
Everything was in the T-Mobile magenta color. After some research, I found out, that it's originally a `SGH-Z300`. Everything was in the T-Mobile magenta color. After some research, I found out, that it's originally a `SGH-Z300`.
@ -61,4 +64,4 @@ Phone identification
The phone sends the following User-Agent to websites: The phone sends the following User-Agent to websites:
SGH-Z300 SHP/VPP/R5 SMB3.1 SMM-MMS/1.2.0 profile/MIDP-2.0 SGH-Z300 SHP/VPP/R5 SMB3.1 SMM-MMS/1.2.0 profile/MIDP-2.0

View File

@ -1,18 +1,21 @@
--- ---
title: Siemens A55
language: en
layout: default
created: 2009-02-02 22:30:48 +0100 created: 2009-02-02 22:30:48 +0100
updated: 2009-02-02 22:30:48 +0100 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/02/02/siemens-a55.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- siemens - siemens
- phone - phone
title: Siemens A55
toc: false
updated: 2009-02-02 22:30:48 +0100
--- ---
A friend visited me bringing two A55 with SIMlock. Both were from the same provider and both didn't accept the A friend visited me bringing two A55 with SIMlock. Both were from the same provider and both didn't accept the
unlocking code from the provider for some reason. After trying the usual tools without luck, we used the [testpoint method](http://www.allsiemens.com/testpoints/siemens-A55.htm). unlocking code from the provider for some reason. After trying the usual tools without luck, we used the [testpoint method](http://www.allsiemens.com/testpoints/siemens-A55.htm).
Using very sharp tweezers, we scratched away the protective from the desired trace and cut it. Now we were able to use Using very sharp tweezers, we scratched away the protective from the desired trace and cut it. Now we were able to use
*Freia* without any problems. (set to "Bootcore Bug") *Freia* without any problems. (set to "Bootcore Bug")

View File

@ -1,17 +1,20 @@
--- ---
title: SIEMENS Gigaset
language: en
layout: default
created: 2009-02-02 02:15:29 +0100 created: 2009-02-02 02:15:29 +0100
updated: 2009-02-02 22:27:14 +0100 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/02/02/siemens-gigaset.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- siemens - siemens
- phone - phone
title: SIEMENS Gigaset
toc: false
updated: 2009-02-02 22:27:14 +0100
--- ---
Service mode Service mode
============ ============

View File

@ -1,17 +1,20 @@
--- ---
title: Siemens M65
language: en
layout: default
created: 2009-02-02 21:39:52 +0100 created: 2009-02-02 21:39:52 +0100
updated: 2009-02-02 22:26:57 +0100 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/02/02/siemens-m65.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- siemens - siemens
- phone - phone
title: Siemens M65
toc: false
updated: 2009-02-02 22:26:57 +0100
--- ---
A M65 of my in-laws seemed broken so I took it home to play around with my `DCA-510`-cable. A M65 of my in-laws seemed broken so I took it home to play around with my `DCA-510`-cable.
It showed firmware rev. 15 … the current one was rev. 58. I read somewhere that older firmware WILL produce problems so It showed firmware rev. 15 … the current one was rev. 58. I read somewhere that older firmware WILL produce problems so
@ -51,4 +54,4 @@ Internal Filesystem
If you want to get rid of the "Load games", "Load Ringtones", etc. menus, just use the [VSOFS-Plugin](http://www.totalcmd.net/plugring/vsofs.html) If you want to get rid of the "Load games", "Load Ringtones", etc. menus, just use the [VSOFS-Plugin](http://www.totalcmd.net/plugring/vsofs.html)
for [Total Commander](http://www.ghisler.com/) to delete the file `\\M65\Config\Default\MagicLinks\MagicLinks.xml` and for [Total Commander](http://www.ghisler.com/) to delete the file `\\M65\Config\Default\MagicLinks\MagicLinks.xml` and
the directory on the phone. the directory on the phone.

View File

@ -1,18 +1,21 @@
--- ---
title: TEAC MP-380 / entryx EM850
language: en
layout: default
created: 2009-02-02 22:49:04 +0100 created: 2009-02-02 22:49:04 +0100
updated: 2009-02-02 22:49:04 +0100 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/02/02/teac-mp-380-entryx-em850.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- teac - teac
- entryx - entryx
- mp3player - mp3player
title: TEAC MP-380 / entryx EM850
toc: false
updated: 2009-02-02 22:49:04 +0100
--- ---
A local discounter offered a MP4-player *[entryx EM850](http://www.entryx.de/deutsch/produkte/mp3player/2gb_mediaplayer_mp3.html)* A local discounter offered a MP4-player *[entryx EM850](http://www.entryx.de/deutsch/produkte/mp3player/2gb_mediaplayer_mp3.html)*
some time ago. The supplied firmware has some severe problems, e.g. the devices powers off while playing without touching it. some time ago. The supplied firmware has some severe problems, e.g. the devices powers off while playing without touching it.
@ -44,4 +47,4 @@ Now do the following:
After the upgrade completed, you might have to format the internal storage for the player to recognize it. After the upgrade completed, you might have to format the internal storage for the player to recognize it.
Some little bonus: After the upgrade, you'll find a Tetris game as well as a FM-Tuner. But the latter one doesn't have Some little bonus: After the upgrade, you'll find a Tetris game as well as a FM-Tuner. But the latter one doesn't have
any reception - maybe they didn't add an antenna, although the IC would support it. any reception - maybe they didn't add an antenna, although the IC would support it.

View File

@ -1,18 +1,21 @@
--- ---
title: ZyXEL Prestige 660HW-67
language: en
layout: default
created: 2009-02-02 20:55:24 +0100 created: 2009-02-02 20:55:24 +0100
updated: 2009-02-02 20:55:24 +0100 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/02/02/zyxel-prestige-660hw-67.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- zyxel - zyxel
- prestige - prestige
- router - router
title: ZyXEL Prestige 660HW-67
toc: false
updated: 2009-02-02 20:55:24 +0100
--- ---
The 660HW-67 was distributed in Germany as the "WLAN Modem 100" through the Arcor ISP. It came with the firmware `QD.7` The 660HW-67 was distributed in Germany as the "WLAN Modem 100" through the Arcor ISP. It came with the firmware `QD.7`
which seems to be originally made for AOL. which seems to be originally made for AOL.
@ -36,4 +39,4 @@ This is how it works (using the serial connector on the PCB and a terminal progr
1. upload the new firmware again but cancel the upload after about 600 KiB (~12 min at 9600 baud) 1. upload the new firmware again but cancel the upload after about 600 KiB (~12 min at 9600 baud)
* the router will boot into a debug mode * the router will boot into a debug mode
1. upload the new `rom-0` file 1. upload the new `rom-0` file
1. upload the new firmware file 1. upload the new firmware file

View File

@ -1,17 +1,20 @@
--- ---
title: Nintendo DS
language: en
layout: default
created: 2009-03-10 00:43:19 +0100 created: 2009-03-10 00:43:19 +0100
updated: 2009-03-10 01:13:42 +0100 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/03/10/nintendo-ds.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- nintendo - nintendo
- gaming - gaming
title: Nintendo DS
toc: false
updated: 2009-03-10 01:13:42 +0100
--- ---
(DS = Dual Screen) (DS = Dual Screen)
![]({{ site.url }}/assets/nintendo_ds_lite.jpg) ![]({{ site.url }}/assets/nintendo_ds_lite.jpg)
@ -29,4 +32,4 @@ Links
===== =====
* [Nintendo DS homebrew](http://en.wikipedia.org/wiki/Nintendo_DS_homebrew) * [Nintendo DS homebrew](http://en.wikipedia.org/wiki/Nintendo_DS_homebrew)
* [Hacking Nintendo DS](http://doc.kodewerx.org/hacking_nds.html) --- list of ActionReplay code structure and some generic assembler codes * [Hacking Nintendo DS](http://doc.kodewerx.org/hacking_nds.html) --- list of ActionReplay code structure and some generic assembler codes

View File

@ -1,17 +1,20 @@
--- ---
title: Nintendo Wii
language: en
layout: default
created: 2009-03-10 00:43:19 +0100 created: 2009-03-10 00:43:19 +0100
updated: 2009-03-10 01:13:42 +0100 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/03/10/nintendo-wii.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- nintendo - nintendo
- gaming - gaming
title: Nintendo Wii
toc: false
updated: 2009-03-10 01:13:42 +0100
--- ---
<ul> <ul>
{% for page in site.categories.nintendo-wii %} {% for page in site.categories.nintendo-wii %}
<li><a href="{{ page.url }}">{{ page.title }}</a></li> <li><a href="{{ page.url }}">{{ page.title }}</a></li>
@ -25,4 +28,4 @@ Links
===== =====
* [The Homebrew Channel](http://hbc.hackmii.com/) * [The Homebrew Channel](http://hbc.hackmii.com/)
* [WiiBrew Wiki](http://wiibrew.org/wiki/Main_Page) * [WiiBrew Wiki](http://wiibrew.org/wiki/Main_Page)

View File

@ -1,16 +1,19 @@
--- ---
title: Jamba Downloads
language: de
layout: default
created: 2009-04-11 22:06:49 +0200 created: 2009-04-11 22:06:49 +0200
updated: 2009-04-11 22:06:49 +0200 language: de
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/04/11/jamba-downloads-de.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- jamba - jamba
title: Jamba Downloads
toc: false
updated: 2009-04-11 22:06:49 +0200
--- ---
Vor etlicher Zeit hatte ich mal 100,- € Guthaben bei Jamba gewonnen. Beim Versuch, ein Programm auf mein Samsung Z300 Vor etlicher Zeit hatte ich mal 100,- € Guthaben bei Jamba gewonnen. Beim Versuch, ein Programm auf mein Samsung Z300
zu laden (das Z300 gibt's bei Jamba nur unter der T-Mobile-Bezeichnung *ZM60*), zeigte mir Jamba, dass mein Handy zu laden (das Z300 gibt's bei Jamba nur unter der T-Mobile-Bezeichnung *ZM60*), zeigte mir Jamba, dass mein Handy
angeblich keine Software downloaden könne. Der kleinere Bruder, das Z500, hingegen unterstützt das merkwürdigerweise. angeblich keine Software downloaden könne. Der kleinere Bruder, das Z500, hingegen unterstützt das merkwürdigerweise.
@ -49,4 +52,4 @@ Apache-Webserver mit folgender Zeile in einer Datei `.htaccess`:
AddType application/java-archive .jar AddType application/java-archive .jar
Dann braucht man nur noch per GPRS auf den URL der `.jar`-Datei zuzugreifen und der Download startet. Dann braucht man nur noch per GPRS auf den URL der `.jar`-Datei zuzugreifen und der Download startet.

View File

@ -1,17 +1,20 @@
--- ---
title: MSI RG54SE
language: en
layout: default
created: 2009-05-16 22:20:01 +0200 created: 2009-05-16 22:20:01 +0200
updated: 2009-05-16 22:20:01 +0200 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/05/16/msi-rg54se.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- msi - msi
- router - router
title: MSI RG54SE
toc: false
updated: 2009-05-16 22:20:01 +0200
--- ---
Sold under following names: Sold under following names:
* CC&C WA-2204A * CC&C WA-2204A
@ -20,4 +23,4 @@ Sold under following names:
* Canyon WF514v2 * Canyon WF514v2
* GigaFast WF719-CAPR * GigaFast WF719-CAPR
* ZCOMAX WA-2204A * ZCOMAX WA-2204A
* Zonet ZSR1114WE * Zonet ZSR1114WE

View File

@ -1,17 +1,20 @@
--- ---
title: Cisco Catalyst 2950
language: de
layout: default
created: 2009-06-05 09:54:04 +0200 created: 2009-06-05 09:54:04 +0200
updated: 2009-06-05 17:01:15 +0200 language: de
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/06/05/cisco-catalyst-2950-de.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- cisco - cisco
- catalyst - catalyst
title: Cisco Catalyst 2950
toc: false
updated: 2009-06-05 17:01:15 +0200
--- ---
MAC Adresstabelle MAC Adresstabelle
================= =================
@ -171,4 +174,4 @@ Netgear FS108P PoE-Switch
Der gleiche Angriff auf einen *Netgear FS108P* Switch bringt den Switch nur dazu, Pakete an unbekannte MAC-Adressen zu Der gleiche Angriff auf einen *Netgear FS108P* Switch bringt den Switch nur dazu, Pakete an unbekannte MAC-Adressen zu
ignorieren. Somit wäre das eine DoS-Attacke - aber keine Möglichkeit, fremde Daten mitzusniffen. Die Broadcast-Pakete ignorieren. Somit wäre das eine DoS-Attacke - aber keine Möglichkeit, fremde Daten mitzusniffen. Die Broadcast-Pakete
hingegen werden auf allen Ports ausgegeben und fluten somit auch angeschlossene Switches/Router. hingegen werden auf allen Ports ausgegeben und fluten somit auch angeschlossene Switches/Router.

View File

@ -1,17 +1,20 @@
--- ---
title: AudioMate / ALLSOUND
language: en
layout: default
created: 2009-01-26 09:54:04 +0200 created: 2009-01-26 09:54:04 +0200
updated: 2009-06-27 17:01:15 +0200 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/01/26/audiomate-allsound.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- audiomate - audiomate
- allsound - allsound
title: AudioMate / ALLSOUND
toc: false
updated: 2009-06-27 17:01:15 +0200
--- ---
![]({{ site.url }}/assets/audiomate.jpg) ![]({{ site.url }}/assets/audiomate.jpg)
* allnet **ALLSOUND**: [allnet.de](http://www.allnet.de/downloads.php?produkt=ALLSOUND) * allnet **ALLSOUND**: [allnet.de](http://www.allnet.de/downloads.php?produkt=ALLSOUND)
@ -22,4 +25,4 @@ tags:
{% for page in site.categories.audiomate %} {% for page in site.categories.audiomate %}
<li><a href="{{ page.url }}">{{ page.title }}</a></li> <li><a href="{{ page.url }}">{{ page.title }}</a></li>
{% endfor %} {% endfor %}
</ul> </ul>

View File

@ -1,17 +1,20 @@
--- ---
title: Samsung SE-T084M
language: en
layout: default
created: 2009-05-15 15:59:19 +0200 created: 2009-05-15 15:59:19 +0200
updated: 2009-10-26 21:41:59 +0100 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/05/15/samsung-se-t084m.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- samsung - samsung
- drive - drive
title: Samsung SE-T084M
toc: false
updated: 2009-10-26 21:41:59 +0100
--- ---
The SE-T084M is an external USB burner with everything but BluRay burning. The SE-T084M is an external USB burner with everything but BluRay burning.
![]({{ site.url }}/assets/samsung_se-t084m.jpg) ![]({{ site.url }}/assets/samsung_se-t084m.jpg)
@ -43,4 +46,4 @@ You can enable *RPC1* by using [MCSE](http://forum.rpc1.org/viewtopic.php?f=2&t=
Windows XP will continue to show a *X changes left* in the region settings. But this is a software lock. Open *RegEdit* Windows XP will continue to show a *X changes left* in the region settings. But this is a software lock. Open *RegEdit*
and go to `HKEY_LOCAL_MACHINE\Software\Microsoft`. There you'll find a key with strange characters (something like `';t-z%`) and go to `HKEY_LOCAL_MACHINE\Software\Microsoft`. There you'll find a key with strange characters (something like `';t-z%`)
which contains a single REG_QWORD value. Delete the whole key and you'll be back at *5 changes left*. which contains a single REG_QWORD value. Delete the whole key and you'll be back at *5 changes left*.
</div></p> </div></p>

View File

@ -1,20 +1,23 @@
--- ---
title: BIOS Passwörter
language: de
alternatives: alternatives:
- language: en - language: en
url: /know-how/hacking/bios-passwords.html url: /know-how/hacking/bios-passwords.html
layout: default
created: 2008-07-18 01:36:55 +0200 created: 2008-07-18 01:36:55 +0200
updated: 2009-10-30 22:53:14 +0100 language: de
toc: true layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2008/07/18/bios-passwoerter-de.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- bios - bios
- passwords - passwords
title: BIOS Passwörter
toc: true
updated: 2009-10-30 22:53:14 +0100
--- ---
[This page in English.]({% post_url 2009-10-30-bios-passwords %}) [This page in English.]({% post_url 2009-10-30-bios-passwords %})
Da Notebook-Hersteller die Vergesslichkeit von Passwörtern als Problem erkannt haben, ist es oft recht einfach, ein Da Notebook-Hersteller die Vergesslichkeit von Passwörtern als Problem erkannt haben, ist es oft recht einfach, ein
@ -114,4 +117,4 @@ Notrettung
Wenn man noch booten kann, und nur das Passwort für das BIOS-Setup braucht, hilft in den meisten Fällen Christophe Wenn man noch booten kann, und nur das Passwort für das BIOS-Setup braucht, hilft in den meisten Fällen Christophe
Grenier's CmosPwd weiter. Es liest das Passwort aus dem CMOS-Speicher und entschlüsselt es. Für SONY VAIO-Notebooks, Grenier's CmosPwd weiter. Es liest das Passwort aus dem CMOS-Speicher und entschlüsselt es. Für SONY VAIO-Notebooks,
siehe [hier]({% post_url 2008-07-20-sony-vaio %}). siehe [hier]({% post_url 2008-07-20-sony-vaio %}).

View File

@ -1,20 +1,23 @@
--- ---
title: BIOS Passwords
language: en
alternatives: alternatives:
- language: de - language: de
url: /know-how/hacking/bios-passwords-de.html url: /know-how/hacking/bios-passwords-de.html
layout: default
created: 2008-07-16 00:44:43 +0200 created: 2008-07-16 00:44:43 +0200
updated: 2009-10-30 22:53:46 +0100 language: en
toc: true layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2008/07/16/bios-passwords.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- bios - bios
- passwords - passwords
title: BIOS Passwords
toc: true
updated: 2009-10-30 22:53:46 +0100
--- ---
[Diese Seite auf Deutsch.]({% post_url 2009-10-30-bios-passwords-de %}) [Diese Seite auf Deutsch.]({% post_url 2009-10-30-bios-passwords-de %})
Since Notebook-manufacturers know of the problem of forgotten passwords, they often implement easy ways to remove BIOS Since Notebook-manufacturers know of the problem of forgotten passwords, they often implement easy ways to remove BIOS
@ -109,4 +112,4 @@ If everything fails
If you can still boot and only need the password to the BIOS-setup, Christophe Grenier's If you can still boot and only need the password to the BIOS-setup, Christophe Grenier's
[CmosPwd](http://www.cgsecurity.org/wiki/CmosPwd) will help you in most cases. It reads out the CMOS-memory and tries [CmosPwd](http://www.cgsecurity.org/wiki/CmosPwd) will help you in most cases. It reads out the CMOS-memory and tries
to decrypt the password stored there. For SONY Vaio notebooks, look [here]({% post_url 2008-07-20-sony-vaio %}). to decrypt the password stored there. For SONY Vaio notebooks, look [here]({% post_url 2008-07-20-sony-vaio %}).

View File

@ -1,17 +1,20 @@
--- ---
title: Linksys NSLU2
layout: default
created: 2009-08-10 01:41:46 +0200 created: 2009-08-10 01:41:46 +0200
updated: 2009-12-06 14:01:10 +0100 layout: redirect
toc: true layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/08/10/linksys-nslu2.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- linksys - linksys
- nas - nas
- storage - storage
title: Linksys NSLU2
toc: true
updated: 2009-12-06 14:01:10 +0100
--- ---
**NSLU2** means *Network Storage Link for USB 2.0 Disk Drives*. Also see [here](http://en.wikipedia.org/wiki/NSLU2). **NSLU2** means *Network Storage Link for USB 2.0 Disk Drives*. Also see [here](http://en.wikipedia.org/wiki/NSLU2).
![NSLU2]({{ site.url }}/assets/nslu2.jpg) ![NSLU2]({{ site.url }}/assets/nslu2.jpg)
@ -153,4 +156,4 @@ I compiled their [iStat Server](http://code.google.com/p/istatd/) on my Slug and
Download: [istatd_0.5.4_armel.deb]({{ site.url }}/assets/istatd_0.5.4_armel.deb) Download: [istatd_0.5.4_armel.deb]({{ site.url }}/assets/istatd_0.5.4_armel.deb)
[^1]: both found in `/boot` on the root partition of the NSLU2-disk [^1]: both found in `/boot` on the root partition of the NSLU2-disk

View File

@ -1,17 +1,20 @@
--- ---
title: MEDION HDDrive2go
language: de
layout: default
created: 2009-06-09 15:43:52 +0200 created: 2009-06-09 15:43:52 +0200
updated: 2009-12-27 20:18:52 +0100 language: de
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/06/09/medion-hddrive2go-de.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- medion - medion
- hdd - hdd
title: MEDION HDDrive2go
toc: false
updated: 2009-12-27 20:18:52 +0100
--- ---
<img src="{{ site.url }}/assets/hddrive2go.jpg" alt="" height="300" /> <img src="{{ site.url }}/assets/hddrive2go.jpg" alt="" height="300" />
@ -76,4 +79,4 @@ Links
* <http://daltrey.org/linux/cypress.html> * <http://daltrey.org/linux/cypress.html>
* <http://www.winhelpline.info/forum/600850-post150.html> * <http://www.winhelpline.info/forum/600850-post150.html>
* <http://daltrey.org/tw/tiki-index.php?page=CypressAt2lp> * <http://daltrey.org/tw/tiki-index.php?page=CypressAt2lp>
* <http://www.cypress.com/products/?gid=9&fid=14&rpn=CY7C68300C> * <http://www.cypress.com/products/?gid=9&fid=14&rpn=CY7C68300C>

View File

@ -1,18 +1,21 @@
--- ---
title: AVM Fritz!Box 7270
layout: default
created: 2009-12-19 18:40:34 +0100 created: 2009-12-19 18:40:34 +0100
updated: 2010-01-05 00:19:18 +0100 layout: redirect
toc: true layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/12/19/avm-fritz!box-7270.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- avm - avm
- fritz - fritz
- fritzbox - fritzbox
- settings - settings
title: AVM Fritz!Box 7270
toc: true
updated: 2010-01-05 00:19:18 +0100
--- ---
**Homepage:** <http://www.avm.de/de/Produkte/FRITZBox/FRITZ_Box_Fon_WLAN_7270/index.php> **Homepage:** <http://www.avm.de/de/Produkte/FRITZBox/FRITZ_Box_Fon_WLAN_7270/index.php>
Fritz Fun Fritz Fun
@ -132,4 +135,4 @@ Now just insert your desired DNS servers, upload the changed config and you shou
*[FB]: Fritz!Box *[FB]: Fritz!Box
*[DNS]: Domain Name System *[DNS]: Domain Name System
*[ISP]: Internet Service Provider *[ISP]: Internet Service Provider

View File

@ -1,18 +1,21 @@
--- ---
title: SONY PlayStation Portable
language: en
layout: default
created: 2010-01-08 08:47:41 +0100 created: 2010-01-08 08:47:41 +0100
updated: 2010-01-11 21:39:20 +0100 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2010/01/08/sony-playstation-portable.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- sony - sony
- playstation - playstation
- psp - psp
title: SONY PlayStation Portable
toc: false
updated: 2010-01-11 21:39:20 +0100
--- ---
* **Model:** PSP Slim (PSP-2004) * **Model:** PSP Slim (PSP-2004)
* **Battery:** PSP-S110 * **Battery:** PSP-S110
@ -185,4 +188,4 @@ Links
===== =====
* <http://forums.afterdawn.com/thread_view.cfm/591203> * <http://forums.afterdawn.com/thread_view.cfm/591203>
* <http://www.pspmod.com/forums/psp-hardware-guides/28603-guide-using-pandoras-battery-easy-way-but-you-must-have-cfw.html> * <http://www.pspmod.com/forums/psp-hardware-guides/28603-guide-using-pandoras-battery-easy-way-but-you-must-have-cfw.html>

View File

@ -1,19 +1,22 @@
--- ---
title: Synology Telnet password
language: en
layout: default
created: 2016-01-26 19:54:55 +0100 created: 2016-01-26 19:54:55 +0100
updated: 2016-01-26 19:54:55 +0100 language: en
toc: true layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2016/01/26/synology-telnet-password.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- synology - synology
- xpenology - xpenology
- telnet - telnet
- password - password
title: Synology Telnet password
toc: true
updated: 2016-01-26 19:54:55 +0100
--- ---
If you ever had a problem with your Synology DiskStation, you might have If you ever had a problem with your Synology DiskStation, you might have
stumbled upon the emergency telnet access or even the serial port on the PCB. stumbled upon the emergency telnet access or even the serial port on the PCB.
@ -80,4 +83,4 @@ time might be reset to 1 January 1970.
</div></p> </div></p>
By the way: This password doesn't work for SSH after you've setup your Synology. By the way: This password doesn't work for SSH after you've setup your Synology.
After the setup, the `root` password is that of your `admin` user. After the setup, the `root` password is that of your `admin` user.

View File

@ -1,16 +1,19 @@
--- ---
title: TASSIMO Barcodes
language: de
layout: default_nobreaktables
created: 2013-09-08 15:43:52 +0200 created: 2013-09-08 15:43:52 +0200
updated: 2016-04-16 18:37:49 +0200 language: de
toc: true layout: redirect
layout_old: default_nobreaktables
redirect_to: https://blog.mbirth.de/archives/2013/09/08/tassimo-barcodes-de.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- tassimo - tassimo
title: TASSIMO Barcodes
toc: true
updated: 2016-04-16 18:37:49 +0200
--- ---
Im Gegensatz zu anderen Kapselmaschinen, bringen die Kapseln bei Tassimo ihre Zubereitungsanleitung gleich mit: Im Gegensatz zu anderen Kapselmaschinen, bringen die Kapseln bei Tassimo ihre Zubereitungsanleitung gleich mit:
In Form eines Barcodes auf der Kapsel. In Form eines Barcodes auf der Kapsel.
@ -185,4 +188,4 @@ Links
* [Tassimo Patent US7231869](http://www.google.com/patents/US7231869?printsec=description&dq=coffee+barcode) * [Tassimo Patent US7231869](http://www.google.com/patents/US7231869?printsec=description&dq=coffee+barcode)
* [Reverse engineering T-Disk barcodes for Tassimo coffee makers](http://reverseengineering.stackexchange.com/questions/3919/reverse-engineering-t-disk-barcodes-for-tassimo-coffee-makers) * [Reverse engineering T-Disk barcodes for Tassimo coffee makers](http://reverseengineering.stackexchange.com/questions/3919/reverse-engineering-t-disk-barcodes-for-tassimo-coffee-makers)
* [Tassimo (T-Disc) Barcode von "Großer Tasse"](http://board.gulli.com/thread/739924-s-tassimo-t-disc-barcode-von-grosser-tasse/) * [Tassimo (T-Disc) Barcode von "Großer Tasse"](http://board.gulli.com/thread/739924-s-tassimo-t-disc-barcode-von-grosser-tasse/)
* [Tassimo Heißwasser-Disc mit 4 einstellbaren Mengen](http://www.kaffekompagniet.com/shop/tassimo-hot-water-916p.html) * [Tassimo Heißwasser-Disc mit 4 einstellbaren Mengen](http://www.kaffekompagniet.com/shop/tassimo-hot-water-916p.html)

View File

@ -1,17 +1,20 @@
--- ---
title: Crypto-Virus decrypted
language: en
layout: default
created: 2016-07-08 15:41:41 +0200 created: 2016-07-08 15:41:41 +0200
updated: 2016-07-08 15:41:41 +0200 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2016/07/08/crypto-virus-decrypted.html
tags: tags:
- know-how - know-how
- hacking - hacking
- virus - virus
- cryptovirus - cryptovirus
- cryptor - cryptor
title: Crypto-Virus decrypted
toc: false
updated: 2016-07-08 15:41:41 +0200
--- ---
A friend received the following mail from (supposedly) **FedEx International**: A friend received the following mail from (supposedly) **FedEx International**:
![]({{ site.url }}/assets/cryptovirusmail.png) ![]({{ site.url }}/assets/cryptovirusmail.png)
@ -167,4 +170,4 @@ you still have in that mail with the bogus zip file. Using that, we can download
the PHP script again, which contains the actual key. the PHP script again, which contains the actual key.
After deobfuscating it, you just have to change `$a='e'` to `$a='d'` and run it After deobfuscating it, you just have to change `$a='e'` to `$a='d'` and run it
and it should decrypt all your files again. Problem solved. and it should decrypt all your files again. Problem solved.

View File

@ -1,19 +1,22 @@
--- ---
title: Crossgrade firmware in SmartEye IP camera
language: en
layout: default
created: 2016-11-13 23:31:43 +0100 created: 2016-11-13 23:31:43 +0100
updated: 2016-11-13 23:31:43 +0100 language: en
toc: true layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2016/11/13/crossgrade-firmware-in-smarteye-ip-camera.html
tags: tags:
- know-how - know-how
- hacking - hacking
- firmware - firmware
- ip-camera - ip-camera
- smarteye - smarteye
- wansview - wansview
- instar - instar
title: Crossgrade firmware in SmartEye IP camera
toc: true
updated: 2016-11-13 23:31:43 +0100
--- ---
A few years ago, I got a [Wansview](http://www.wansview.com/) NCH-536MW IP A few years ago, I got a [Wansview](http://www.wansview.com/) NCH-536MW IP
camera. That was one of the first 720p cameras with night-vision, motion and camera. That was one of the first 720p cameras with night-vision, motion and
all features you could wish for. all features you could wish for.
@ -337,4 +340,4 @@ Read more
========= =========
* [forum.hardware.fr](http://forum.hardware.fr/hfr/HardwarePeripheriques/webcam-camera-ip/unique-wansview-camera-sujet_56652_12.htm#t701130) * [forum.hardware.fr](http://forum.hardware.fr/hfr/HardwarePeripheriques/webcam-camera-ip/unique-wansview-camera-sujet_56652_12.htm#t701130)
* [openipcam.com](http://www.openipcam.com/forum/index.php?topic=342.0) * [openipcam.com](http://www.openipcam.com/forum/index.php?topic=342.0)

View File

@ -1,19 +1,21 @@
--- ---
title: TV Hotel Mode
language: en
layout: default
created: 2017-09-26 14:25:43 +0200 created: 2017-09-26 14:25:43 +0200
updated: 2017-09-26 14:25:43 +0200 language: en
toc: true layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2017/09/26/tv-hotel-mode.html
tags: tags:
- know-how - know-how
- hacking - hacking
- tv - tv
- television - television
- hotel - hotel
- hotelmode - hotelmode
- hidden - hidden
- menu - menu
title: TV Hotel Mode
toc: true
updated: 2017-09-26 14:25:43 +0200
--- ---
LG LG
@ -35,4 +37,4 @@ Philips 26HFL5870D and similar
1. Press the following keys in sequence: 1. Press the following keys in sequence:
<kbd>3</kbd> <kbd>1</kbd> <kbd>9</kbd> <kbd>7</kbd> <kbd>5</kbd> <kbd>3</kbd> <kbd>MUTE</kbd> <kbd>3</kbd> <kbd>1</kbd> <kbd>9</kbd> <kbd>7</kbd> <kbd>5</kbd> <kbd>3</kbd> <kbd>MUTE</kbd>

View File

@ -1,20 +1,23 @@
--- ---
title: Toyota Touch 2 Firmware Update
language: en
layout: default
created: 2017-10-21 20:00:00 +0200 created: 2017-10-21 20:00:00 +0200
updated: 2017-10-21 20:00:00 +0200 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2017/10/21/toyota-touch-2-firmware-update.html
tags: tags:
- know-how - know-how
- hacking - hacking
- toyota - toyota
- touch - touch
- touch&go - touch&go
- touch2 - touch2
- firmware - firmware
- software - software
title: Toyota Touch 2 Firmware Update
toc: false
updated: 2017-10-21 20:00:00 +0200
--- ---
What unit do I have? What unit do I have?
==================== ====================
@ -78,6 +81,4 @@ The Update
about 25 seconds. So 30 seconds should be safe.) about 25 seconds. So 30 seconds should be safe.)
1. Turn on the ignition (Don't start the car.) and **WAIT** again. The headunit should boot with 1. Turn on the ignition (Don't start the car.) and **WAIT** again. The headunit should boot with
the new software version. the new software version.
1. Done. 1. Done.

View File

@ -1,15 +1,18 @@
--- ---
title: Monitor Android Traffic with Wireshark (Windows)
layout: default
created: 2014-05-15 17:11:42 +0200 created: 2014-05-15 17:11:42 +0200
updated: 2014-05-15 17:11:42 +0200 layout: redirect
toc: false layout_old: default
redirect_to: https://blog.mbirth.de/archives/2014/05/15/monitor-android-traffic-with-wireshark-windows.html
tags: tags:
- know-how - know-how
- hacking - hacking
- android - android
- wireshark - wireshark
title: Monitor Android Traffic with Wireshark (Windows)
toc: false
updated: 2014-05-15 17:11:42 +0200
--- ---
Preparation Preparation
=========== ===========
@ -32,4 +35,4 @@ Open 3 shells. Run these commands:
3rd shell: 3rd shell:
ncat 127.0.0.1 11233 | "C:\Program Files\Wireshark\Wireshark.exe" -k -i - ncat 127.0.0.1 11233 | "C:\Program Files\Wireshark\Wireshark.exe" -k -i -

View File

@ -1,18 +1,21 @@
--- ---
title: Display density on Android
language: en
layout: default
created: 2015-12-02 17:19:42 +0200 created: 2015-12-02 17:19:42 +0200
updated: 2015-12-02 17:19:42 +0200 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2015/12/02/display-density-on-android.html
tags: tags:
- know-how - know-how
- hacking - hacking
- android - android
- display - display
- resolution - resolution
- lcd - lcd
title: Display density on Android
toc: false
updated: 2015-12-02 17:19:42 +0200
--- ---
Methods Methods
======= =======
@ -114,4 +117,4 @@ you use **both** methods and set them to the same value, everything will look
just fine. just fine.
</div></p> </div></p>
More info at the [xda forum](http://forum.xda-developers.com/nexus-9/general/guide-little-trick-improvimg-nexus-9-t3224931). More info at the [xda forum](http://forum.xda-developers.com/nexus-9/general/guide-little-trick-improvimg-nexus-9-t3224931).

View File

@ -1,16 +1,19 @@
--- ---
title: AudioMate Hardware
layout: default
created: 2009-06-27 00:13:04 +0200 created: 2009-06-27 00:13:04 +0200
updated: 2009-06-26 00:41:29 +0200 layout: redirect
toc: false layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/06/27/audiomate-hardware.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- audiomate - audiomate
- allsound - allsound
title: AudioMate Hardware
toc: false
updated: 2009-06-26 00:41:29 +0200
--- ---
Opened with front panel Opened with front panel
======================= =======================
@ -59,4 +62,4 @@ Back of Front PCB
*[ICs]: Integrated Circuits *[ICs]: Integrated Circuits
*[CPU]: Central Processing Unit *[CPU]: Central Processing Unit
*[CPLD]: Complex Programmable Logic Device *[CPLD]: Complex Programmable Logic Device
*[FIFO]: First In, First Out *[FIFO]: First In, First Out

View File

@ -1,17 +1,20 @@
--- ---
title: AudioMate Firmware
layout: default
created: 2009-01-26 00:47:15 +0100 created: 2009-01-26 00:47:15 +0100
updated: 2016-02-01 17:42:11 +0100 layout: redirect
toc: false layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/01/26/audiomate-firmware.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- audiomate - audiomate
- allsound - allsound
- firmware - firmware
title: AudioMate Firmware
toc: false
updated: 2016-02-01 17:42:11 +0100
--- ---
Download Download
======== ========
@ -93,4 +96,4 @@ A user called "tidy" has found out what the header bytes are meaning and how che
> The checksum is calculated by interpreting the file as a little endian int16 stream, adding up its > The checksum is calculated by interpreting the file as a little endian int16 stream, adding up its
> values, truncating the 16LSBs after every addition and calculating the value that is missing to > values, truncating the 16LSBs after every addition and calculating the value that is missing to
> sum up to 0x10000. I.e. if one calculates the checksum as described over the whole file including > sum up to 0x10000. I.e. if one calculates the checksum as described over the whole file including
> the calculated checksum the result has to be zero. > the calculated checksum the result has to be zero.

View File

@ -1,18 +1,21 @@
--- ---
title: Acer TravelMate 203TX
language: de
layout: default
created: 2008-07-16 08:29:10 +0200 created: 2008-07-16 08:29:10 +0200
updated: 2008-07-16 08:29:10 +0200 language: de
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2008/07/16/acer-travelmate-203tx-de.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- bios - bios
- passwords - passwords
- acer - acer
title: Acer TravelMate 203TX
toc: false
updated: 2008-07-16 08:29:10 +0200
--- ---
1. Öffne die Klappe. 1. Öffne die Klappe.
Hier siehst Du die "Schultern", das QuickAccess-Panel und die Tastatur: Hier siehst Du die "Schultern", das QuickAccess-Panel und die Tastatur:
![]({{ site.url }}/assets/acer203tx1.jpg) ![]({{ site.url }}/assets/acer203tx1.jpg)
@ -37,4 +40,4 @@ tags:
sie einrastet. Danach, setz das QuickAccess-Panel wieder ein (Einsetzen und nach links schieben). Und zu guter sie einrastet. Danach, setz das QuickAccess-Panel wieder ein (Einsetzen und nach links schieben). Und zu guter
Letzt, die "Schultern". Letzt, die "Schultern".
[Zurück zur Übersicht.]({% post_url 2009-10-30-bios-passwords-de %}) [Zurück zur Übersicht.]({% post_url 2009-10-30-bios-passwords-de %})

View File

@ -1,18 +1,21 @@
--- ---
title: Baycom Worldbook II
layout: default
created: 2008-07-20 22:18:02 +0200 created: 2008-07-20 22:18:02 +0200
updated: 2008-07-20 22:18:02 +0200 layout: redirect
toc: false layout_old: default
redirect_to: https://blog.mbirth.de/archives/2008/07/20/baycom-worldbook-ii.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- bios - bios
- passwords - passwords
- baycom - baycom
- worldbook - worldbook
title: Baycom Worldbook II
toc: false
updated: 2008-07-20 22:18:02 +0200
--- ---
1. Open the lid. 1. Open the lid.
1. Remove the keyboard. Proceed as follows: 1. Remove the keyboard. Proceed as follows:
First use a flat screwdriver to get unter the keyboard at the green line. Perhaps you have to push in the small clip First use a flat screwdriver to get unter the keyboard at the green line. Perhaps you have to push in the small clip
@ -29,4 +32,4 @@ tags:
battery housing. battery housing.
1. Replace the keyboard. Make sure it snaps into all clips. Now, the BIOS (incl. the password) should be erased. 1. Replace the keyboard. Make sure it snaps into all clips. Now, the BIOS (incl. the password) should be erased.
[Back to overview.]({% post_url 2009-10-30-bios-passwords %}) [Back to overview.]({% post_url 2009-10-30-bios-passwords %})

View File

@ -1,18 +1,21 @@
--- ---
title: COMPAQ Armada
layout: default
created: 2008-07-20 22:19:00 +0200 created: 2008-07-20 22:19:00 +0200
updated: 2008-07-20 22:19:00 +0200 layout: redirect
toc: false layout_old: default
redirect_to: https://blog.mbirth.de/archives/2008/07/20/compaq-armada.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- bios - bios
- passwords - passwords
- compaq - compaq
- armada - armada
title: COMPAQ Armada
toc: false
updated: 2008-07-20 22:19:00 +0200
--- ---
This is a short one: This is a short one:
1. Remove the battery, the AC cable and the BIOS battery 1. Remove the battery, the AC cable and the BIOS battery
@ -20,4 +23,4 @@ This is a short one:
1. Insert the AC cable into the notebook and **DON'T PRESS ANYTHING** 1. Insert the AC cable into the notebook and **DON'T PRESS ANYTHING**
1. After 5 seconds, the notebook should turn itself on and the password should be gone. 1. After 5 seconds, the notebook should turn itself on and the password should be gone.
[Back to overview.]({% post_url 2009-10-30-bios-passwords %}) [Back to overview.]({% post_url 2009-10-30-bios-passwords %})

View File

@ -1,18 +1,21 @@
--- ---
title: DELL Latitude series
layout: default
created: 2008-07-20 22:26:53 +0200 created: 2008-07-20 22:26:53 +0200
updated: 2008-07-20 22:25:53 +0200 layout: redirect
toc: false layout_old: default
redirect_to: https://blog.mbirth.de/archives/2008/07/20/dell-latitude-series.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- bios - bios
- passwords - passwords
- dell - dell
- latitude - latitude
title: DELL Latitude series
toc: false
updated: 2008-07-20 22:25:53 +0200
--- ---
These ones are something different. DELL notebooks save their BIOS password in an EEPROM-chip so it isn't deleted when These ones are something different. DELL notebooks save their BIOS password in an EEPROM-chip so it isn't deleted when
you short-circuit the BIOS battery or something like that. you short-circuit the BIOS battery or something like that.
@ -47,4 +50,4 @@ breach or because of a BIOS upgrade). The generated universal password doesn't w
Also read the DELL-section under [General strategies]({% post_url 2009-10-30-bios-passwords %}#dell_notebooks). Also read the DELL-section under [General strategies]({% post_url 2009-10-30-bios-passwords %}#dell_notebooks).
[Back to overview.]({% post_url 2009-10-30-bios-passwords %}) [Back to overview.]({% post_url 2009-10-30-bios-passwords %})

View File

@ -1,19 +1,22 @@
--- ---
title: Fujitsu-Siemens Lifebook E-Series
layout: default
created: 2008-07-20 15:33:11 +0200 created: 2008-07-20 15:33:11 +0200
updated: 2008-07-20 15:33:11 +0200 layout: redirect
toc: false layout_old: default
redirect_to: https://blog.mbirth.de/archives/2008/07/20/fujitsu-siemens-lifebook-e-series.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- bios - bios
- passwords - passwords
- fujitsu - fujitsu
- siemens - siemens
- lifebook - lifebook
title: Fujitsu-Siemens Lifebook E-Series
toc: false
updated: 2008-07-20 15:33:11 +0200
--- ---
1. Turn the notebook on its lid, plug out the power cord, remove the battery and the CD-ROM drive 1. Turn the notebook on its lid, plug out the power cord, remove the battery and the CD-ROM drive
1. Remove the screws marked below: 1. Remove the screws marked below:
@ -39,4 +42,4 @@ tags:
says you have to take your notebook to a service point to let it be done. (because the Lifebook E-series is **so** says you have to take your notebook to a service point to let it be done. (because the Lifebook E-series is **so**
secure LOL ) secure LOL )
[Back to overview.]({% post_url 2009-10-30-bios-passwords %}) [Back to overview.]({% post_url 2009-10-30-bios-passwords %})

View File

@ -1,18 +1,21 @@
--- ---
title: SONY VAIO
layout: default
created: 2008-07-20 15:44:48 +0200 created: 2008-07-20 15:44:48 +0200
updated: 2008-07-20 17:34:22 +0200 layout: redirect
toc: false layout_old: default
redirect_to: https://blog.mbirth.de/archives/2008/07/20/sony-vaio.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- bios - bios
- passwords - passwords
- sony - sony
- vaio - vaio
title: SONY VAIO
toc: false
updated: 2008-07-20 17:34:22 +0200
--- ---
In the newer SONY VAIO Notebooks, the BIOS password is no longer stored in the volatile CMOS-area but on an EEPROM. In the newer SONY VAIO Notebooks, the BIOS password is no longer stored in the volatile CMOS-area but on an EEPROM.
Jean Delvare has published [his results](http://khali.linux-fr.org/vaio/eeprom.html) of an analysis of various Sony Jean Delvare has published [his results](http://khali.linux-fr.org/vaio/eeprom.html) of an analysis of various Sony
@ -116,4 +119,4 @@ This is a naked SONY VAIO V505:
*[CD]: Compact Disc *[CD]: Compact Disc
*[FAT]: File Allocation Table *[FAT]: File Allocation Table
*[RAM]: Random Access Memory *[RAM]: Random Access Memory
*[TFT]: Thin Film Transistor *[TFT]: Thin Film Transistor

View File

@ -1,18 +1,21 @@
--- ---
title: DELL Latitude CPi series
layout: default
created: 2008-07-21 19:19:56 +0200 created: 2008-07-21 19:19:56 +0200
updated: 2008-07-21 19:19:56 +0200 layout: redirect
toc: false layout_old: default
redirect_to: https://blog.mbirth.de/archives/2008/07/21/dell-latitude-cpi-series.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- bios - bios
- passwords - passwords
- dell - dell
- latitude - latitude
title: DELL Latitude CPi series
toc: false
updated: 2008-07-21 19:19:56 +0200
--- ---
Thanks to *Heiko Kehr*. (Everything was done according to [this manual](http://www.darkmagic.org/mike/dell-tag/dell/dell.html).) Thanks to *Heiko Kehr*. (Everything was done according to [this manual](http://www.darkmagic.org/mike/dell-tag/dell/dell.html).)
1. You can easily remove the keyboard after loosing the six screws. Pay attention that you lift the keyboard equally on 1. You can easily remove the keyboard after loosing the six screws. Pay attention that you lift the keyboard equally on
@ -41,4 +44,4 @@ Thanks to *Heiko Kehr*. (Everything was done according to [this manual](http://w
![]({{ site.url }}/assets/dellcpi_7.jpg) ![]({{ site.url }}/assets/dellcpi_7.jpg)
[Back to overview.]({% post_url 2009-10-30-bios-passwords %}) [Back to overview.]({% post_url 2009-10-30-bios-passwords %})

View File

@ -1,18 +1,21 @@
--- ---
title: GERICOM Webboy
layout: default
created: 2008-07-21 19:26:28 +0200 created: 2008-07-21 19:26:28 +0200
updated: 2008-07-21 19:26:28 +0200 layout: redirect
toc: false layout_old: default
redirect_to: https://blog.mbirth.de/archives/2008/07/21/gericom-webboy.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- bios - bios
- passwords - passwords
- gericom - gericom
- webboy - webboy
title: GERICOM Webboy
toc: false
updated: 2008-07-21 19:26:28 +0200
--- ---
1. Turn the notebook onto its lid and remove the power plug and battery 1. Turn the notebook onto its lid and remove the power plug and battery
1. Remove the screws of the top left cover and open it. You will find the CPU-Cooler. 1. Remove the screws of the top left cover and open it. You will find the CPU-Cooler.
![The area accessible through the top-left opening on the bottom side]({{ site.url }}/assets/gcwb_1.jpg) ![The area accessible through the top-left opening on the bottom side]({{ site.url }}/assets/gcwb_1.jpg)
@ -26,4 +29,4 @@ tags:
the middle of the CPU) is a death sentence to the CPU. And NEVER boot the notebook without CPU-Cooling! the middle of the CPU) is a death sentence to the CPU. And NEVER boot the notebook without CPU-Cooling!
[Back to overview.]({% post_url 2009-10-30-bios-passwords %}) [Back to overview.]({% post_url 2009-10-30-bios-passwords %})

View File

@ -1,22 +1,25 @@
--- ---
title: IBM PS/2 Aptiva
layout: default
created: 2008-07-21 19:26:56 +0200 created: 2008-07-21 19:26:56 +0200
updated: 2008-07-21 19:26:56 +0200 layout: redirect
toc: false layout_old: default
redirect_to: https://blog.mbirth.de/archives/2008/07/21/ibm-ps2-aptiva.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- bios - bios
- passwords - passwords
- ibm - ibm
- aptiva - aptiva
title: IBM PS/2 Aptiva
toc: false
updated: 2008-07-21 19:26:56 +0200
--- ---
This is a short one: This is a short one:
For skipping the password check, you have to hold down both mousebuttons after power-on until the first beep. For skipping the password check, you have to hold down both mousebuttons after power-on until the first beep.
If this doesn't work, try to press both mousebuttons repeatedly. If this doesn't work, try to press both mousebuttons repeatedly.
[Back to overview.]({% post_url 2009-10-30-bios-passwords %}) [Back to overview.]({% post_url 2009-10-30-bios-passwords %})

View File

@ -1,18 +1,21 @@
--- ---
title: IBM ThinkPad series
layout: default
created: 2008-07-21 19:50:40 +0200 created: 2008-07-21 19:50:40 +0200
updated: 2008-07-21 19:50:40 +0200 layout: redirect
toc: true layout_old: default
redirect_to: https://blog.mbirth.de/archives/2008/07/21/ibm-thinkpad-series.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- bios - bios
- passwords - passwords
- ibm - ibm
- thinkpad - thinkpad
title: IBM ThinkPad series
toc: true
updated: 2008-07-21 19:50:40 +0200
--- ---
Please also see [this homepage](http://www.ja.axxs.net/unlock/) for more information regarding removing passwords from Please also see [this homepage](http://www.ja.axxs.net/unlock/) for more information regarding removing passwords from
IBM ThinkPads. IBM ThinkPads.
@ -319,4 +322,4 @@ The hard disk password is stored on the hard disk.
1. Reinstall the DIMM cover. 1. Reinstall the DIMM cover.
[Back to overview.]({% post_url 2009-10-30-bios-passwords %}) [Back to overview.]({% post_url 2009-10-30-bios-passwords %})

View File

@ -1,17 +1,20 @@
--- ---
title: Toshiba notebooks
layout: default
created: 2008-07-21 19:59:58 +0200 created: 2008-07-21 19:59:58 +0200
updated: 2008-07-21 19:59:58 +0200 layout: redirect
toc: false layout_old: default
redirect_to: https://blog.mbirth.de/archives/2008/07/21/toshiba-notebooks.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- bios - bios
- passwords - passwords
- toshiba - toshiba
title: Toshiba notebooks
toc: false
updated: 2008-07-21 19:59:58 +0200
--- ---
I found three different ways for bypassing the password-check on a Toshiba-notebook. I had no chance to test them, so I I found three different ways for bypassing the password-check on a Toshiba-notebook. I had no chance to test them, so I
can't promise they will work. can't promise they will work.
@ -62,4 +65,4 @@ This is a 25pin male connector which fits onto the printer port. You have to sho
After plugging the modified connector onto the notebook, the BIOS shouldn't ask for any password. After plugging the modified connector onto the notebook, the BIOS shouldn't ask for any password.
[Back to overview.]({% post_url 2009-10-30-bios-passwords %}) [Back to overview.]({% post_url 2009-10-30-bios-passwords %})

View File

@ -1,18 +1,21 @@
--- ---
title: Shameless Rip-Off by pc-doctors.com
layout: default
created: 2010-01-13 02:13:02 +0100 created: 2010-01-13 02:13:02 +0100
updated: 2010-04-02 00:27:30 +0200 layout: redirect
toc: false layout_old: default
redirect_to: https://blog.mbirth.de/archives/2010/01/13/shameless-rip-off-by-pc-doctors.com.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- bios - bios
- passwords - passwords
- ripoff - ripoff
- copycat - copycat
title: Shameless Rip-Off by pc-doctors.com
toc: false
updated: 2010-04-02 00:27:30 +0200
--- ---
I recently found some of my manuals to remove BIOS passwords in a very familiar design on a I recently found some of my manuals to remove BIOS passwords in a very familiar design on a
[totally foreign site](http://www.pc-doctors.com/other/free-info/): [totally foreign site](http://www.pc-doctors.com/other/free-info/):
@ -44,4 +47,4 @@ If anyone wants to pay him a "nice" visit ... [Google him](http://google.com/sea
</div></p> </div></p>
[Back to overview.]({% post_url 2009-10-30-bios-passwords %}) [Back to overview.]({% post_url 2009-10-30-bios-passwords %})

View File

@ -1,17 +1,20 @@
--- ---
title: Backup Savegames on Nintendo DS
language: en
layout: default
created: 2009-03-15 14:34:37 +0100 created: 2009-03-15 14:34:37 +0100
updated: 2009-03-15 22:16:40 +0100 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/03/15/backup-savegames-on-nintendo-ds.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- nintendo - nintendo
- gaming - gaming
title: Backup Savegames on Nintendo DS
toc: false
updated: 2009-03-15 22:16:40 +0100
--- ---
To backup savegames from your cartridges (e.g. for use with a ROM dump on a card like the To backup savegames from your cartridges (e.g. for use with a ROM dump on a card like the
[CycloDS Evolution]({% post_url 2009-03-22-cyclods-evolution %})) there are two ways. [CycloDS Evolution]({% post_url 2009-03-22-cyclods-evolution %})) there are two ways.
@ -45,4 +48,4 @@ Wi-Fi method
I did not test this method, but it needs a working Wi-Fi-connection from your NDS to your Access Point and some PC in I did not test this method, but it needs a working Wi-Fi-connection from your NDS to your Access Point and some PC in
your network. You'll have to setup a FTP server. Download the *NDS Backup Tool WiFi* from [Rudolph](http://www009.upp.so-net.ne.jp/rudolph/nds/Backup/), your network. You'll have to setup a FTP server. Download the *NDS Backup Tool WiFi* from [Rudolph](http://www009.upp.so-net.ne.jp/rudolph/nds/Backup/),
unpack to your microSD and modify the file `NDS_Backup_Tool_Wifi.ini` and enter the IP, Port, Username and Password of unpack to your microSD and modify the file `NDS_Backup_Tool_Wifi.ini` and enter the IP, Port, Username and Password of
your FTP server. The rest of the process should be similar to the above (despite of the switching cartridges). your FTP server. The rest of the process should be similar to the above (despite of the switching cartridges).

View File

@ -1,17 +1,20 @@
--- ---
title: EZFlash 3in1
language: en
layout: default
created: 2009-03-15 15:49:39 +0100 created: 2009-03-15 15:49:39 +0100
updated: 2009-03-15 22:17:41 +0100 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/03/15/ezflash-3in1.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- nintendo - nintendo
- gaming - gaming
title: EZFlash 3in1
toc: false
updated: 2009-03-15 22:17:41 +0100
--- ---
<img src="{{ site.url }}/assets/ez3in1.jpg" alt="" width="200" /> <img src="{{ site.url }}/assets/ez3in1.jpg" alt="" width="200" />
* **Homepage:** [ezflash.cn](http://www.ezflash.cn/home.htm) * **Homepage:** [ezflash.cn](http://www.ezflash.cn/home.htm)
@ -32,4 +35,4 @@ The EZFlash 3in1 is a GBA-cartridge for the Slot2 of the NDS which provides the
*[RAM]: Random Access Memory *[RAM]: Random Access Memory
*[NDS]: Nintendo Dual Screen *[NDS]: Nintendo Dual Screen
*[GBA]: Nintendo GameBoy Advance *[GBA]: Nintendo GameBoy Advance
*[SRAM]: Static Random Access Memory *[SRAM]: Static Random Access Memory

View File

@ -1,17 +1,20 @@
--- ---
title: Wii Downloads
language: en
layout: default
created: 2009-03-10 00:51:47 +0100 created: 2009-03-10 00:51:47 +0100
updated: 2009-03-15 22:18:54 +0100 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/03/10/wii-downloads.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- nintendo - nintendo
- gaming - gaming
title: Wii Downloads
toc: false
updated: 2009-03-15 22:18:54 +0100
--- ---
The *Nintendo Channel* on the [Nintendo Wii]({% post_url 2009-03-10-nintendo-wii %}) allows you to download Demo The *Nintendo Channel* on the [Nintendo Wii]({% post_url 2009-03-10-nintendo-wii %}) allows you to download Demo
versions of NDS games right to your NDS to play. Just do the following: versions of NDS games right to your NDS to play. Just do the following:
@ -20,4 +23,4 @@ versions of NDS games right to your NDS to play. Just do the following:
1. click "Categories" on top 1. click "Categories" on top
1. select **DS Download Service** 1. select **DS Download Service**
1. just select a game, wait for it to download 1. just select a game, wait for it to download
1. follow the on-screen instructions 1. follow the on-screen instructions

View File

@ -1,17 +1,20 @@
--- ---
title: ndstool
language: en
layout: default
created: 2009-03-16 00:48:30 +0100 created: 2009-03-16 00:48:30 +0100
updated: 2009-03-16 00:48:30 +0100 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/03/16/ndstool.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- nintendo - nintendo
- gaming - gaming
title: ndstool
toc: false
updated: 2009-03-16 00:48:30 +0100
--- ---
The `ndstool` can show header information of ROM files as well as extract the game logo or even the whole ROM contents. The `ndstool` can show header information of ROM files as well as extract the game logo or even the whole ROM contents.
It also can recombine the extracted ROM contents to a working ROM again. It also can recombine the extracted ROM contents to a working ROM again.
@ -134,4 +137,4 @@ ARM9 footer found.
Security data CRC (0x1000-0x2FFF) 0x6FFF Security data CRC (0x1000-0x2FFF) 0x6FFF
Segment3 CRC (0x3000-0x3FFF) (NYI) Segment3 CRC (0x3000-0x3FFF) (NYI)
~~~ ~~~

View File

@ -1,17 +1,20 @@
--- ---
title: Extract Sound from ROMs
language: en
layout: default
created: 2009-03-17 20:41:05 +0100 created: 2009-03-17 20:41:05 +0100
updated: 2009-03-17 20:41:05 +0100 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/03/17/extract-sound-from-roms.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- nintendo - nintendo
- gaming - gaming
title: Extract Sound from ROMs
toc: false
updated: 2009-03-17 20:41:05 +0100
--- ---
To extract sounds (or graphics) from a ROM, you'll need the [ndstool]({% post_url 2009-03-16-ndstool %}) To extract sounds (or graphics) from a ROM, you'll need the [ndstool]({% post_url 2009-03-16-ndstool %})
and [ndssndext](http://www.4shared.com/file/68276816/8092229e/ndssndext_v04.html). and [ndssndext](http://www.4shared.com/file/68276816/8092229e/ndssndext_v04.html).
@ -25,4 +28,4 @@ somewhere. This is a sound archive format. Now run this through the `ndssndext`
wine ndssndext.exe sound_data.sdat wine ndssndext.exe sound_data.sdat
This creates a new folder which contains more folders with the actual contents from the `.sdat`-file. These can be MIDI This creates a new folder which contains more folders with the actual contents from the `.sdat`-file. These can be MIDI
files and/or (converted) WAV files. files and/or (converted) WAV files.

View File

@ -1,17 +1,20 @@
--- ---
title: CycloDS Evolution
language: en
layout: default
created: 2009-03-10 01:04:17 +0100 created: 2009-03-10 01:04:17 +0100
updated: 2009-03-22 13:01:57 +0100 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/03/10/cyclods-evolution.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- nintendo - nintendo
- gaming - gaming
title: CycloDS Evolution
toc: false
updated: 2009-03-22 13:01:57 +0100
--- ---
<img src="{{ site.url }}/assets/cyclodsevo.jpg" alt="" width="200" /> <img src="{{ site.url }}/assets/cyclodsevo.jpg" alt="" width="200" />
* **Homepage:** [cyclopsds.com](http://www.cyclopsds.com/) * **Homepage:** [cyclopsds.com](http://www.cyclopsds.com/)
@ -39,4 +42,4 @@ is ~1,7 MiB. There's even a direct link to the latest version of the file:
* <http://cheats.gbatemp.net/latest/user.evoCHEATS.zip> * <http://cheats.gbatemp.net/latest/user.evoCHEATS.zip>
You might also want to trim your `default.evoCheats` file down to 0 Bytes and make it read-only so that only the newer You might also want to trim your `default.evoCheats` file down to 0 Bytes and make it read-only so that only the newer
cheats database is used. cheats database is used.

View File

@ -1,17 +1,20 @@
--- ---
title: Dump Games
language: en
layout: default
created: 2009-03-15 14:41:43 +0100 created: 2009-03-15 14:41:43 +0100
updated: 2009-03-23 01:04:47 +0100 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/03/15/dump-games.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- nintendo - nintendo
- gaming - gaming
title: Dump Games
toc: false
updated: 2009-03-23 01:04:47 +0100
--- ---
Dumping game cartridges is done the same way like [dumping savegames]({% post_url 2009-03-15-backup-savegames %}). Dumping game cartridges is done the same way like [dumping savegames]({% post_url 2009-03-15-backup-savegames %}).
@ -56,4 +59,4 @@ Games which use the WiFi feature mostly store their connection info in this empt
</div></p> </div></p>
A good trimmer is [NDSTokyoTrim](http://techsuki.net/nintendo-ds-rom-trimmer/) which can detect WiFi-games and leaves A good trimmer is [NDSTokyoTrim](http://techsuki.net/nintendo-ds-rom-trimmer/) which can detect WiFi-games and leaves
the space for their settings. the space for their settings.

View File

@ -1,17 +1,20 @@
--- ---
title: Favourite NDS Games
language: en
layout: default
created: 2009-03-23 00:34:05 +0100 created: 2009-03-23 00:34:05 +0100
updated: 2009-10-28 02:04:10 +0100 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/03/23/favourite-nds-games.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- nintendo - nintendo
- gaming - gaming
title: Favourite NDS Games
toc: false
updated: 2009-10-28 02:04:10 +0100
--- ---
Here's a list of my favorite games: Here's a list of my favorite games:
| Game | Genre | Comment | | Game | Genre | Comment |
@ -21,4 +24,4 @@ Here's a list of my favorite games:
| Another Code | Adventure | almost as great as Time Hollow | | Another Code | Adventure | almost as great as Time Hollow |
| Korg DS-10 | Music | | | Korg DS-10 | Music | |
| Crosswords DS | Puzzle | | | Crosswords DS | Puzzle | |
| Picross | Puzzle | | | Picross | Puzzle | |

View File

@ -1,17 +1,20 @@
--- ---
title: Wii Twilight Hack
language: en
layout: default
created: 2008-07-18 22:44:40 +0200 created: 2008-07-18 22:44:40 +0200
updated: 2008-07-18 22:44:40 +0200 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2008/07/18/wii-twilight-hack.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- nintendo - nintendo
- wii - wii
title: Wii Twilight Hack
toc: false
updated: 2008-07-18 22:44:40 +0200
--- ---
The Twilight Hack is described at [Code Retard](http://www.coderetard.com/2008/05/07/install-wii-virtual-console-game-channels-with-wad-installer/). The Twilight Hack is described at [Code Retard](http://www.coderetard.com/2008/05/07/install-wii-virtual-console-game-channels-with-wad-installer/).
It works by using a bug in *Zelda - Twilight Princess*. In short is goes like this: It works by using a bug in *Zelda - Twilight Princess*. In short is goes like this:
@ -23,4 +26,4 @@ It works by using a bug in *Zelda - Twilight Princess*. In short is goes like th
1. get *Zelda - Twilight Princess*, run it at least once on your Wii to create the savegame slot 1. get *Zelda - Twilight Princess*, run it at least once on your Wii to create the savegame slot
1. insert SD card, delete savegame on your Wii and copy the Twilight Hack savegame from your SD card 1. insert SD card, delete savegame on your Wii and copy the Twilight Hack savegame from your SD card
1. now run *Zelda*, load game, walk towards the guy and talk to him 1. now run *Zelda*, load game, walk towards the guy and talk to him
1. the screen goes black and shows the WAD Installer which installs all files found in `/wad` 1. the screen goes black and shows the WAD Installer which installs all files found in `/wad`

View File

@ -1,17 +1,20 @@
--- ---
title: Wii Savegame Editing
language: en
layout: default
created: 2008-07-23 21:31:36 +0200 created: 2008-07-23 21:31:36 +0200
updated: 2008-07-23 21:31:58 +0200 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2008/07/23/wii-savegame-editing.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- nintendo - nintendo
- wii - wii
title: Wii Savegame Editing
toc: false
updated: 2008-07-23 21:31:58 +0200
--- ---
Savegames, as well as almost all other files, are encrypted using some crypto magic. The keys were found and now there Savegames, as well as almost all other files, are encrypted using some crypto magic. The keys were found and now there
are some tools to decrypt and recrypt the savegames called [Segher's Wii.git](http://wiibrew.org/wiki/Segher's_Wii.git). are some tools to decrypt and recrypt the savegames called [Segher's Wii.git](http://wiibrew.org/wiki/Segher's_Wii.git).
@ -24,4 +27,4 @@ After that, find the 3 interesting keys on [HackMii](http://hackmii.com/2008/04/
Create a directory `~/.wii` and put the 3 keys in ***binary*** form in there. (No text file with the values as numbers Create a directory `~/.wii` and put the 3 keys in ***binary*** form in there. (No text file with the values as numbers
and letters but binary files with exactly 16 Bytes per file. Use `ghex2` or such.) and letters but binary files with exactly 16 Bytes per file. Use `ghex2` or such.)
If everything is correct, you can uncompress savegames data.bin using `tachtig` and recompress them using `twintig`. If everything is correct, you can uncompress savegames data.bin using `tachtig` and recompress them using `twintig`.

View File

@ -1,17 +1,20 @@
--- ---
title: Wii MPlayer and Samba
language: en
layout: default
created: 2009-01-18 23:26:15 +0100 created: 2009-01-18 23:26:15 +0100
updated: 2009-01-18 23:26:15 +0100 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/01/18/wii-mplayer-and-samba.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- nintendo - nintendo
- wii - wii
title: Wii MPlayer and Samba
toc: false
updated: 2009-01-18 23:26:15 +0100
--- ---
The [MPlayer Christmas Edition](http://www.elotrolado.net/hilo_mplayer-christmas-edition_1157252) for Wii supports SMB The [MPlayer Christmas Edition](http://www.elotrolado.net/hilo_mplayer-christmas-edition_1157252) for Wii supports SMB
browsing. You can configure the login data of the desired SMB share through the `smb.conf` on the SD card as follows: browsing. You can configure the login data of the desired SMB share through the `smb.conf` on the SD card as follows:
@ -25,4 +28,4 @@ port=445
For it to work, you **MUST** use a dedicated user in Samba. Guest shares won't work. Also make sure you have For it to work, you **MUST** use a dedicated user in Samba. Guest shares won't work. Also make sure you have
**`security=user`** set in your Linux `smb.conf`. For more information see **`security=user`** set in your Linux `smb.conf`. For more information see
[this thread](http://www.tehskeen.com/forums/showpost.php?p=48403&postcount=76) as tehskeen.com. [this thread](http://www.tehskeen.com/forums/showpost.php?p=48403&postcount=76) as tehskeen.com.

View File

@ -1,17 +1,20 @@
--- ---
title: Nintendo Wii Encryption Keys
language: en
layout: default
created: 2009-01-30 12:56:51 +0100 created: 2009-01-30 12:56:51 +0100
updated: 2009-01-30 13:00:54 +0100 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/01/30/nintendo-wii-encryption-keys.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- nintendo - nintendo
- wii - wii
title: Nintendo Wii Encryption Keys
toc: false
updated: 2009-01-30 13:00:54 +0100
--- ---
To use these keys with e.g. [Segher's Wii.git](http://wiibrew.org/wiki/Segher's_Wii.git), you have to put them in binary To use these keys with e.g. [Segher's Wii.git](http://wiibrew.org/wiki/Segher's_Wii.git), you have to put them in binary
files, i.e. use a Hex-Editor and paste these keys so that you get a 16 Byte long file for each key. Segher's tools files, i.e. use a Hex-Editor and paste these keys so that you get a 16 Byte long file for each key. Segher's tools
expect them to be located in `~/.wii/<keyname>`, e.g. `~/.wii/common-key`. expect them to be located in `~/.wii/<keyname>`, e.g. `~/.wii/common-key`.
@ -37,4 +40,4 @@ sd-iv
md5-blanker md5-blanker
=========== ===========
0e65378199be4517ab06ec22451a5793 0e65378199be4517ab06ec22451a5793

View File

@ -1,17 +1,20 @@
--- ---
title: Favourite Wii Games
language: en
layout: default
created: 2009-03-23 00:38:45 +0100 created: 2009-03-23 00:38:45 +0100
updated: 2009-03-23 00:38:45 +0100 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/03/23/favourite-wii-games.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- nintendo - nintendo
- wii - wii
title: Favourite Wii Games
toc: false
updated: 2009-03-23 00:38:45 +0100
--- ---
Here's a list of my favorite Wii games: Here's a list of my favorite Wii games:
| Game | Genre | Comment | | Game | Genre | Comment |
@ -21,4 +24,4 @@ Here's a list of my favorite Wii games:
| Onslaught (WiiWare) | FPS | lots of fun playing this plain and straight forward shooter | | Onslaught (WiiWare) | FPS | lots of fun playing this plain and straight forward shooter |
| World of Goo (WiiWare) | Puzzle | very addictive | | World of Goo (WiiWare) | Puzzle | very addictive |
| Okami | Adventure | really great graphics, nice gameplay | | Okami | Adventure | really great graphics, nice gameplay |
| NfS: Undercover | Racing | made a lot of fun playing it with the GC controller | | NfS: Undercover | Racing | made a lot of fun playing it with the GC controller |

View File

@ -1,17 +1,20 @@
--- ---
title: Mii to NDS Transfer
language: en
layout: default
created: 2009-03-10 01:08:20 +0100 created: 2009-03-10 01:08:20 +0100
updated: 2009-05-22 00:16:54 +0200 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/03/10/mii-to-nds-transfer.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- nintendo - nintendo
- wii - wii
title: Mii to NDS Transfer
toc: false
updated: 2009-05-22 00:16:54 +0200
--- ---
The *Mii Channel* has a hidden **Transfer to DS** option. According to [cubed3.com](http://www.cubed3.com/news/11049) The *Mii Channel* has a hidden **Transfer to DS** option. According to [cubed3.com](http://www.cubed3.com/news/11049)
the only NDS game using this for now is the Japanese title *Aruite Wakaru Seikatsu Rhythm DS*. To enable the feature, the only NDS game using this for now is the Japanese title *Aruite Wakaru Seikatsu Rhythm DS*. To enable the feature,
do this: do this:
@ -20,4 +23,4 @@ do this:
1. push <kbd>A</kbd> once 1. push <kbd>A</kbd> once
1. push <kbd>B</kbd> once 1. push <kbd>B</kbd> once
1. push <kbd>1</kbd> once 1. push <kbd>1</kbd> once
1. hold <kbd>2</kbd> 1. hold <kbd>2</kbd>

View File

@ -1,17 +1,20 @@
--- ---
title: Wii Homebrew Channel
language: en
layout: default
created: 2009-10-07 22:46:34 +0200 created: 2009-10-07 22:46:34 +0200
updated: 2009-10-07 22:48:41 +0200 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/10/07/wii-homebrew-channel.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- nintendo - nintendo
- wii - wii
title: Wii Homebrew Channel
toc: false
updated: 2009-10-07 22:48:41 +0200
--- ---
Install on 4.2e Install on 4.2e
=============== ===============
@ -24,4 +27,4 @@ Install on 4.2e
Wii then try again) Wii then try again)
* select *Yes* * select *Yes*
* follow the instructions (you most probably want to install all 3 options - try to install BootMii as boot2, if it * follow the instructions (you most probably want to install all 3 options - try to install BootMii as boot2, if it
doesn't work, install as IOS) doesn't work, install as IOS)

View File

@ -1,17 +1,20 @@
--- ---
title: USBLoader GX for the Wii
language: en
layout: default
created: 2010-05-08 12:47:47 +0200 created: 2010-05-08 12:47:47 +0200
updated: 2010-05-08 12:47:47 +0200 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2010/05/08/usbloader-gx-for-the-wii.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- nintendo - nintendo
- wii - wii
title: USBLoader GX for the Wii
toc: false
updated: 2010-05-08 12:47:47 +0200
--- ---
* **Homepage:** <http://usbloadergx.koureio.net/> * **Homepage:** <http://usbloadergx.koureio.net/>
@ -24,4 +27,4 @@ Foreign games settings
* If `Error #02` appears, activate the *Error 02 Fix* * If `Error #02` appears, activate the *Error 02 Fix*
* If you only see a black screen after launching the game, make sure, the Game is not Japanese- or English-only. If so, * If you only see a black screen after launching the game, make sure, the Game is not Japanese- or English-only. If so,
change the *Game language* setting to match that of the game. (Some games don't have a fall-back setting for their change the *Game language* setting to match that of the game. (Some games don't have a fall-back setting for their
language, so they will crash if the Wii is set to another language than supported.) language, so they will crash if the Wii is set to another language than supported.)

View File

@ -1,17 +1,20 @@
--- ---
title: Backup Wii games to USB HDD
language: en
layout: default
created: 2009-05-24 19:35:29 +0200 created: 2009-05-24 19:35:29 +0200
updated: 2010-11-14 16:05:02 +0100 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/05/24/backup-wii-games-to-usb-hdd.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- nintendo - nintendo
- wii - wii
title: Backup Wii games to USB HDD
toc: false
updated: 2010-11-14 16:05:02 +0100
--- ---
* [mikeandheth.com](http://www.mikeandheth.com/games/97-connect-wii-usb-hard-drive.html) * [mikeandheth.com](http://www.mikeandheth.com/games/97-connect-wii-usb-hard-drive.html)
* [gbatemp.net](http://wiki.gbatemp.net/wiki/index.php?title=USB_Loader_Releases) --- List of USB Loader programs for the Wii * [gbatemp.net](http://wiki.gbatemp.net/wiki/index.php?title=USB_Loader_Releases) --- List of USB Loader programs for the Wii
* [gbatemp.net](http://wiki.gbatemp.net/wiki/index.php?title=WBFS_Managers) --- List of WBFS Managers (programs to copy game ISO files to USB via your PC) * [gbatemp.net](http://wiki.gbatemp.net/wiki/index.php?title=WBFS_Managers) --- List of WBFS Managers (programs to copy game ISO files to USB via your PC)
@ -107,4 +110,4 @@ Play Call of Duty: Black Ops
============================ ============================
To play CoD:BO (and not get stuck in the *"Loading…"*-screen), you'll need the cIOS rev20b found [here](http://filetrip.net/f12411-cIOS-Installer-Xr20b.html). To play CoD:BO (and not get stuck in the *"Loading…"*-screen), you'll need the cIOS rev20b found [here](http://filetrip.net/f12411-cIOS-Installer-Xr20b.html).
Install using IOS249 from base 57 into slot 249. After that, the game should work. Install using IOS249 from base 57 into slot 249. After that, the game should work.

View File

@ -1,17 +1,20 @@
--- ---
title: DMS4Pro
language: en
layout: default
created: 2008-12-05 00:31:21 +0100 created: 2008-12-05 00:31:21 +0100
updated: 2008-12-05 00:31:21 +0100 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2008/12/05/dms4pro.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- sony - sony
- playstation - playstation
- pstwo - pstwo
- dms4pro - dms4pro
title: DMS4Pro
toc: false
updated: 2008-12-05 00:31:21 +0100
--- ---
**Firmware:** [sksapps.com](http://www.sksapps.com/index.php?page=dms4.html) (Latest is 0.41)
**Firmware:** [sksapps.com](http://www.sksapps.com/index.php?page=dms4.html) (Latest is 0.41)

View File

@ -1,17 +1,20 @@
--- ---
title: OggSync for Windows Mobile
language: en
layout: default
created: 2008-09-12 22:19:31 +0200 created: 2008-09-12 22:19:31 +0200
updated: 2008-09-12 22:19:31 +0200 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2008/09/12/oggsync-for-windows-mobile.html
tags: tags:
- know-how - know-how
- hacking - hacking
- hardware - hardware
- microsoft - microsoft
- windowsmobile - windowsmobile
title: OggSync for Windows Mobile
toc: false
updated: 2008-09-12 22:19:31 +0200
--- ---
**Tested Version:** 4.19 **Tested Version:** 4.19
OggSync connects to `https://oggsync.com/r/r` or `https://oggsync.com/r/e` and sends the entered info (PayPal eMail or OggSync connects to `https://oggsync.com/r/r` or `https://oggsync.com/r/e` and sends the entered info (PayPal eMail or
@ -71,4 +74,4 @@ you own and put this totally complicated PHP script onto it:
<?php <?php
echo 'Pro'; echo 'Pro';
?> ?>
{% endhighlight %} {% endhighlight %}

View File

@ -1,17 +1,20 @@
--- ---
title: Sphairon AR860
layout: default
created: 2009-01-24 17:10:21 +0100 created: 2009-01-24 17:10:21 +0100
updated: 2009-01-24 17:27:46 +0100 layout: redirect
toc: false layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/01/24/sphairon-ar860.html
tags: tags:
- know-how - know-how
- hardware - hardware
- sphairon - sphairon
- ar860 - ar860
- router - router
- dsl - dsl
title: Sphairon AR860
toc: false
updated: 2009-01-24 17:27:46 +0100
--- ---
The AR860 is shipped by e.g. *versatel* - configured as a DSL modem. The AR860 is shipped by e.g. *versatel* - configured as a DSL modem.
Admin accounts Admin accounts
@ -39,4 +42,4 @@ Convert to Router
================= =================
To switch from "Modem" mode to "Router" mode, there's a nice manual over at [versaforum.de](http://www.versaforum.de/forum/showthread.php?t=5378). To switch from "Modem" mode to "Router" mode, there's a nice manual over at [versaforum.de](http://www.versaforum.de/forum/showthread.php?t=5378).
Another manual is at [mhilfe.de](http://wiki.mhilfe.de/index.php?title=Sphairon_AR860). Another manual is at [mhilfe.de](http://wiki.mhilfe.de/index.php?title=Sphairon_AR860).

View File

@ -1,15 +1,18 @@
--- ---
title: hp Laserjet IIIp
layout: default
created: 2009-02-01 17:28:28 +0100 created: 2009-02-01 17:28:28 +0100
updated: 2009-02-01 17:28:28 +0100 layout: redirect
toc: false layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/02/01/hp-laserjet-iiip.html
tags: tags:
- know-how - know-how
- hardware - hardware
- hp - hp
- laserjet - laserjet
title: hp Laserjet IIIp
toc: false
updated: 2009-02-01 17:28:28 +0100
--- ---
Endless feeding Endless feeding
=============== ===============
@ -26,4 +29,4 @@ Now you have different options:
* remove the rubber pads completely (don't wonder about the clicking noise when printing!) * remove the rubber pads completely (don't wonder about the clicking noise when printing!)
* replace the rubber pads * replace the rubber pads
* *my solution:* Put scotch tape on the sticky pads so that they don't stick to the coils anymore * *my solution:* Put scotch tape on the sticky pads so that they don't stick to the coils anymore

View File

@ -1,16 +1,19 @@
--- ---
title: MEDION BIOS settings
layout: default
created: 2009-02-02 02:24:33 +0100 created: 2009-02-02 02:24:33 +0100
updated: 2009-02-08 14:42:42 +0100 layout: redirect
toc: false layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/02/02/medion-bios-settings.html
tags: tags:
- know-how - know-how
- hardware - hardware
- medion - medion
- bios - bios
- settings - settings
title: MEDION BIOS settings
toc: false
updated: 2009-02-08 14:42:42 +0100
--- ---
Some MEDION PCs have hidden BIOS settings. To get to them, get into the BIOS and press <kbd>F11</kbd>. If you're asked for a password, try `am8888egh` or `am8888egc`. Maybe you can even omit the last letter. Some MEDION PCs have hidden BIOS settings. To get to them, get into the BIOS and press <kbd>F11</kbd>. If you're asked for a password, try `am8888egh` or `am8888egc`. Maybe you can even omit the last letter.
According to a MEDION employee, there are only 2 employees who know this password. Also it shouldn't be leaked to the net so that no one fools around with the settings. According to a MEDION employee, there are only 2 employees who know this password. Also it shouldn't be leaked to the net so that no one fools around with the settings.
@ -18,4 +21,4 @@ Well, IMHO everyone should decide for his own whether he wants to risk damaging
More info: [PC Welt forums](http://www.pcwelt.de/forum/showthread.php?t=196865), [Wim's BIOS](http://www.wimsbios.com/phpBB2/viewtopic.php?t=7557) More info: [PC Welt forums](http://www.pcwelt.de/forum/showthread.php?t=196865), [Wim's BIOS](http://www.wimsbios.com/phpBB2/viewtopic.php?t=7557)
*[IMHO]: In My Humble Opinion *[IMHO]: In My Humble Opinion

View File

@ -1,16 +1,19 @@
--- ---
title: Evoluent Vertical Mouse 3
layout: default
created: 2009-02-09 17:50:56 +0100 created: 2009-02-09 17:50:56 +0100
updated: 2009-02-10 00:01:22 +0100 layout: redirect
toc: false layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/02/09/evoluent-vertical-mouse-3.html
tags: tags:
- know-how - know-how
- hardware - hardware
- evoluent - evoluent
- verticalmouse - verticalmouse
- mouse - mouse
title: Evoluent Vertical Mouse 3
toc: false
updated: 2009-02-10 00:01:22 +0100
--- ---
![Evoluent Vertical Mouse 3]({{ site.url }}/assets/vm3_sm.jpg) ![Evoluent Vertical Mouse 3]({{ site.url }}/assets/vm3_sm.jpg)
* **Homepage:** [evoluent.com](http://www.evoluent.com/vm3.html) * **Homepage:** [evoluent.com](http://www.evoluent.com/vm3.html)
@ -51,4 +54,4 @@ My final `xinput` line looks like this:
You could also map 9→6 and 2→7 to have the 2 additional buttons emulate *Wheel left* and *Wheel right*: You could also map 9→6 and 2→7 to have the 2 additional buttons emulate *Wheel left* and *Wheel right*:
# input id: 1 2 3 4 5 6 7 8 9 # input id: 1 2 3 4 5 6 7 8 9
xinput set-button-map <device-id> 1 7 2 4 5 8 9 3 6 xinput set-button-map <device-id> 1 7 2 4 5 8 9 3 6

View File

@ -1,16 +1,19 @@
--- ---
title: Logitech V400
layout: default
created: 2009-02-09 20:24:26 +0100 created: 2009-02-09 20:24:26 +0100
updated: 2009-02-23 01:12:24 +0100 layout: redirect
toc: false layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/02/09/logitech-v400.html
tags: tags:
- know-how - know-how
- hardware - hardware
- logitech - logitech
- mouse - mouse
- usb - usb
title: Logitech V400
toc: false
updated: 2009-02-23 01:12:24 +0100
--- ---
![Logitech V400]({{ site.url }}/assets/logitech_v400.jpg) ![Logitech V400]({{ site.url }}/assets/logitech_v400.jpg)
* **Support:** [logitech.com](http://www.logitech.com/index.cfm/428/144&cl=us,en) * **Support:** [logitech.com](http://www.logitech.com/index.cfm/428/144&cl=us,en)
@ -52,4 +55,4 @@ According to this the default configuration (`xinput set-button-map <device-id>
If you prefer to swap the thumb buttons so that "Up" is *Thumb1* and "Down" is *Thumb2* you can do this using the following command: If you prefer to swap the thumb buttons so that "Up" is *Thumb1* and "Down" is *Thumb2* you can do this using the following command:
# input id: 1 2 3 4 5 6 7 8 9 # input id: 1 2 3 4 5 6 7 8 9
xinput set-button-map <device-id> 1 2 3 4 5 6 7 9 8 xinput set-button-map <device-id> 1 2 3 4 5 6 7 9 8

View File

@ -1,16 +1,19 @@
--- ---
title: Acer Aspire One
layout: default
created: 2008-09-28 19:33:49 +0200 created: 2008-09-28 19:33:49 +0200
updated: 2009-03-29 18:35:53 +0200 layout: redirect
toc: false layout_old: default
redirect_to: https://blog.mbirth.de/archives/2008/09/28/acer-aspire-one.html
tags: tags:
- know-how - know-how
- hardware - hardware
- acer - acer
- aspire - aspire
- netbook - netbook
title: Acer Aspire One
toc: false
updated: 2009-03-29 18:35:53 +0200
--- ---
![Acer Aspire One]({{ site.url }}/assets/aspire-one.jpg) ![Acer Aspire One]({{ site.url }}/assets/aspire-one.jpg)
* **Support page:** [support.acer-euro.com](http://support.acer-euro.com/drivers/notebook/as_one_150.html) * **Support page:** [support.acer-euro.com](http://support.acer-euro.com/drivers/notebook/as_one_150.html)
@ -19,4 +22,4 @@ tags:
{% for page in site.categories.acer-aspire-one %} {% for page in site.categories.acer-aspire-one %}
<li><a href="{{ page.url }}">{{ page.title }}</a></li> <li><a href="{{ page.url }}">{{ page.title }}</a></li>
{% endfor %} {% endfor %}
</ul> </ul>

View File

@ -1,16 +1,19 @@
--- ---
title: SIEMENS Gigaset M34 USB
language: de
layout: default
created: 2009-04-11 23:12:19 +0200 created: 2009-04-11 23:12:19 +0200
updated: 2009-04-11 23:12:19 +0200 language: de
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/04/11/siemens-gigaset-m34-usb-de.html
tags: tags:
- know-how - know-how
- hardware - hardware
- siemens - siemens
- gigaset - gigaset
title: SIEMENS Gigaset M34 USB
toc: false
updated: 2009-04-11 23:12:19 +0200
--- ---
Der [Gigaset M34 USB](http://gigaset.siemens.com/shc/0,1935,de_de_0_69566_rArNrNrNrN,00.html)-DECT-Adapter von Der [Gigaset M34 USB](http://gigaset.siemens.com/shc/0,1935,de_de_0_69566_rArNrNrNrN,00.html)-DECT-Adapter von
SIEMENS funktionierte von meinen getesteten Basisstationen nur an der *Gigaset SX440isdn* in vollem Umfang. An der SIEMENS funktionierte von meinen getesteten Basisstationen nur an der *Gigaset SX440isdn* in vollem Umfang. An der
*Gigaset SLX740isdn* funktioniert er nur als drahtlose ISDN-Karte und an der *Gigaset SL100* nur als VoIP-Telefon. *Gigaset SLX740isdn* funktioniert er nur als drahtlose ISDN-Karte und an der *Gigaset SL100* nur als VoIP-Telefon.
@ -76,4 +79,4 @@ machen, aber ich kann weder Faxe verschicken noch unsere Telefonanlage via B-Kan
*[WLAN]: Wireless Local Area Network *[WLAN]: Wireless Local Area Network
*[AIM]: AOL Instant Messenger *[AIM]: AOL Instant Messenger
*[ISDN]: Integrated Services Digital Network *[ISDN]: Integrated Services Digital Network
*[PPP]: Point-to-Point Protocol *[PPP]: Point-to-Point Protocol

View File

@ -1,15 +1,18 @@
--- ---
title: Analog TFT calibration
layout: default
created: 2009-05-12 14:19:22 +0200 created: 2009-05-12 14:19:22 +0200
updated: 2009-05-12 14:19:22 +0200 layout: redirect
toc: false layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/05/12/analog-tft-calibration.html
tags: tags:
- know-how - know-how
- hardware - hardware
- tft - tft
- calibration - calibration
title: Analog TFT calibration
toc: false
updated: 2009-05-12 14:19:22 +0200
--- ---
If you have connected your TFT via an analog VGA cable, you might have some blurry vision or even flickering If you have connected your TFT via an analog VGA cable, you might have some blurry vision or even flickering
in some cases. If the following picture shows some flickering or looks blurry, your display needs calibration. in some cases. If the following picture shows some flickering or looks blurry, your display needs calibration.
@ -21,4 +24,4 @@ To calibrate your display, go to [Randy Simons' page](http://randysimons.com/pag
2. put your browser in full-screen mode (mostly by pressing <kbd>F11</kbd>) 2. put your browser in full-screen mode (mostly by pressing <kbd>F11</kbd>)
3. issue the auto-calibration on your TFT display (most displays have a specific *"Auto"* button) 3. issue the auto-calibration on your TFT display (most displays have a specific *"Auto"* button)
4. make sure the picture doesn't flicker anymore 4. make sure the picture doesn't flicker anymore
5. exit full-screen mode (<kbd>F11</kbd> again) 5. exit full-screen mode (<kbd>F11</kbd> again)

View File

@ -1,15 +1,18 @@
--- ---
title: Apple iPhone
layout: default
created: 2009-04-20 20:22:56 +0200 created: 2009-04-20 20:22:56 +0200
updated: 2009-05-19 03:57:37 +0200 layout: redirect
toc: false layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/04/20/apple-iphone.html
tags: tags:
- know-how - know-how
- hardware - hardware
- apple - apple
- iphone - iphone
title: Apple iPhone
toc: false
updated: 2009-05-19 03:57:37 +0200
--- ---
<img src="{{ site.url }}/assets/apple_iphone.jpg" alt="Apple iPhone" height="200" /> <img src="{{ site.url }}/assets/apple_iphone.jpg" alt="Apple iPhone" height="200" />
* **Homepage:** [apple.com](http://www.apple.com/iphone/) * **Homepage:** [apple.com](http://www.apple.com/iphone/)
@ -21,4 +24,4 @@ tags:
{% for page in site.categories.apple-iphone %} {% for page in site.categories.apple-iphone %}
<li><a href="{{ page.url }}">{{ page.title }}</a></li> <li><a href="{{ page.url }}">{{ page.title }}</a></li>
{% endfor %} {% endfor %}
</ul> </ul>

View File

@ -1,14 +1,16 @@
--- ---
title: MSI DigiVox A/D USB2.0
layout: default
created: 2009-05-20 11:05:28 +0200 created: 2009-05-20 11:05:28 +0200
updated: 2009-07-17 22:53:23 +0200 layout: redirect
toc: false layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/05/20/msi-digivox-ad-usb2.0.html
tags: tags:
- know-how - know-how
- hardware - hardware
- msi - msi
- digivox - digivox
title: MSI DigiVox A/D USB2.0
toc: false
updated: 2009-07-17 22:53:23 +0200
--- ---
Ubuntu Ubuntu
@ -31,4 +33,4 @@ If you want to try the `totem-gstreamer`, try this:
scan -p -x 0 /usr/share/dvb/dvb-t/de-Berlin > ~/.gstreamer-0.10/channels.conf scan -p -x 0 /usr/share/dvb/dvb-t/de-Berlin > ~/.gstreamer-0.10/channels.conf
(or you could just copy the file over, if you already created one) (or you could just copy the file over, if you already created one)

View File

@ -1,16 +1,19 @@
--- ---
title: SIEMENS SL2-141-I
language: de
layout: default
created: 2009-08-19 01:16:17 +0200 created: 2009-08-19 01:16:17 +0200
updated: 2009-08-19 01:17:31 +0200 language: de
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/08/19/siemens-sl2-141-i-de.html
tags: tags:
- know-how - know-how
- hardware - hardware
- siemens - siemens
- router - router
title: SIEMENS SL2-141-I
toc: false
updated: 2009-08-19 01:17:31 +0200
--- ---
Dieser Router wird von *Alice* ausgeliefert und kommt mit einer hoffnungslos veralteten (3.29a) oder komplett Dieser Router wird von *Alice* ausgeliefert und kommt mit einer hoffnungslos veralteten (3.29a) oder komplett
kastrierten (4.7-irgendwas) Firmware daher. kastrierten (4.7-irgendwas) Firmware daher.
@ -49,4 +52,4 @@ einfach mal den Router neustarten oder evtl. auf Werkseinstellungen zurücksetze
Für den Notfall gäbe es noch ein serielles Interface auf der Platine des Routers. Solange der Bootloader nicht Für den Notfall gäbe es noch ein serielles Interface auf der Platine des Routers. Solange der Bootloader nicht
beschädigt wird, kann man damit in jedem Fall jegliche Firmware aufspielen. Ein JTAG-Interface soll die Platine wohl beschädigt wird, kann man damit in jedem Fall jegliche Firmware aufspielen. Ein JTAG-Interface soll die Platine wohl
auch bieten. auch bieten.

View File

@ -1,16 +1,19 @@
--- ---
title: SanDisk Sansa FUZE
layout: default
created: 2008-12-31 00:04:38 +0100 created: 2008-12-31 00:04:38 +0100
updated: 2009-10-15 09:30:10 +0200 layout: redirect
toc: false layout_old: default
redirect_to: https://blog.mbirth.de/archives/2008/12/31/sandisk-sansa-fuze.html
tags: tags:
- know-how - know-how
- hardware - hardware
- sandisk - sandisk
- sansa - sansa
- fuze - fuze
title: SanDisk Sansa FUZE
toc: false
updated: 2009-10-15 09:30:10 +0200
--- ---
![]({{ site.url }}/assets/sansa_fuze_image_01.png) ![]({{ site.url }}/assets/sansa_fuze_image_01.png)
* **Beginner's Guide to Sansa Players:** [ubuntuforums.org](http://ubuntuforums.org/showthread.php?t=312196) * **Beginner's Guide to Sansa Players:** [ubuntuforums.org](http://ubuntuforums.org/showthread.php?t=312196)
@ -25,4 +28,4 @@ tags:
{% for page in site.categories.sandisk-sansa-fuze %} {% for page in site.categories.sandisk-sansa-fuze %}
<li><a href="{{ page.url }}">{{ page.title }}</a></li> <li><a href="{{ page.url }}">{{ page.title }}</a></li>
{% endfor %} {% endfor %}
</ul> </ul>

View File

@ -1,16 +1,19 @@
--- ---
title: Loewe Concept Plus
language: de
layout: default
created: 2009-11-06 21:46:28 +0100 created: 2009-11-06 21:46:28 +0100
updated: 2009-11-06 21:46:28 +0100 language: de
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/11/06/loewe-concept-plus-de.html
tags: tags:
- know-how - know-how
- hardware - hardware
- loewe - loewe
- tv - tv
title: Loewe Concept Plus
toc: false
updated: 2009-11-06 21:46:28 +0100
--- ---
AV1 und AV2 gleichzeitig AV1 und AV2 gleichzeitig
======================== ========================
@ -27,4 +30,4 @@ Nach dem Entfernen des Pin 16 aus dem Scart-Stecker[^1] kann man jetzt problemlo
umschalten. umschalten.
[^1]: Da ist ein kleiner Widerhaken an der Fahne, den man mit einer geeigneten Zange platt drücken muss, dann kann man die Fahne nach innen herausnehmen. [^1]: Da ist ein kleiner Widerhaken an der Fahne, den man mit einer geeigneten Zange platt drücken muss, dann kann man die Fahne nach innen herausnehmen.

View File

@ -1,16 +1,19 @@
--- ---
title: SIEMENS S1621-Z220-A
language: de
layout: default
created: 2009-12-01 19:32:31 +0100 created: 2009-12-01 19:32:31 +0100
updated: 2009-12-03 09:23:13 +0100 language: de
toc: true layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/12/01/siemens-s1621-z220-a-de.html
tags: tags:
- know-how - know-how
- hardware - hardware
- siemens - siemens
- router - router
title: SIEMENS S1621-Z220-A
toc: true
updated: 2009-12-03 09:23:13 +0100
--- ---
Dieser WLAN-Router wird von Alice unter der Bezeichnung *Alice Modem WLAN 1121* ausgeliefert. Die Standard-IP im Dieser WLAN-Router wird von Alice unter der Bezeichnung *Alice Modem WLAN 1121* ausgeliefert. Die Standard-IP im
Auslieferungszustand ist `192.168.1.1`. Weitere Informationen gibt's im [alice-wiki.de](http://www.alice-wiki.de/Alice_Modem_1121_WLAN). Auslieferungszustand ist `192.168.1.1`. Weitere Informationen gibt's im [alice-wiki.de](http://www.alice-wiki.de/Alice_Modem_1121_WLAN).
@ -221,4 +224,4 @@ Unterseite
*[PCI]: Peripheral Component Interconnect *[PCI]: Peripheral Component Interconnect
*[ADSL]: Asynchronous Digital Subscriber Line *[ADSL]: Asynchronous Digital Subscriber Line
*[CPE]: Customer-Premises Equipment *[CPE]: Customer-Premises Equipment
*[SD-RAM]: Synchronous Dynamic Random Access Memory *[SD-RAM]: Synchronous Dynamic Random Access Memory

View File

@ -1,15 +1,18 @@
--- ---
title: TomTom PNAs
layout: default
created: 2009-06-01 13:23:00 +0200 created: 2009-06-01 13:23:00 +0200
updated: 2009-12-13 02:28:10 +0100 layout: redirect
toc: true layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/06/01/tomtom-pnas.html
tags: tags:
- know-how - know-how
- hardware - hardware
- tomtom - tomtom
- navigation - navigation
title: TomTom PNAs
toc: true
updated: 2009-12-13 02:28:10 +0100
--- ---
**Homepage:** [tomtom.com](http://www.tomtom.com/) **Homepage:** [tomtom.com](http://www.tomtom.com/)
Custom Firmware Custom Firmware
@ -83,4 +86,4 @@ Tested with NavCore 9.014 and 9.024, maps 830 and 840. All combinations show the
*[PNAs]: Personal Navigation Assistants *[PNAs]: Personal Navigation Assistants
*[TTS]: Text to Speech *[TTS]: Text to Speech
*[POIs]: Points of Interest *[POIs]: Points of Interest

View File

@ -1,17 +1,20 @@
--- ---
title: memup Pop Key
layout: default
created: 2009-12-22 00:43:14 +0100 created: 2009-12-22 00:43:14 +0100
updated: 2009-12-22 01:15:54 +0100 layout: redirect
toc: false layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/12/22/memup-pop-key.html
tags: tags:
- know-how - know-how
- hardware - hardware
- memup - memup
- popkey - popkey
- usb - usb
title: memup Pop Key
toc: false
updated: 2009-12-22 01:15:54 +0100
--- ---
* **Homepage:** <http://www.memup.com/>
* **Homepage:** <http://www.memup.com/>
I just bought a 4GB *Pop Key* in a local supermarket. This device not only works as a simple flash disk but also brings a CD-ROM-Partition with a small security software with it. This just calls for modification... I just bought a 4GB *Pop Key* in a local supermarket. This device not only works as a simple flash disk but also brings a CD-ROM-Partition with a small security software with it. This just calls for modification...
@ -25,4 +28,4 @@ With the [SMI UFD Utility](http://ftp.usboffice.kr/files/SMI_UFD_Utility.zip), y
This way, you can make it e.g. a Windows XP or Windows 7 installation device, use it for the [System Rescue CD](http://www.sysresccd.org/Main_Page) or - if you can trick the *U3 LaunchPad* into This way, you can make it e.g. a Windows XP or Windows 7 installation device, use it for the [System Rescue CD](http://www.sysresccd.org/Main_Page) or - if you can trick the *U3 LaunchPad* into
accepting the stick - burn the U3 software to it to make it U3 compatible. accepting the stick - burn the U3 software to it to make it U3 compatible.
*[SMI]: Semiconductor Manufacturing International *[SMI]: Semiconductor Manufacturing International

View File

@ -1,14 +1,16 @@
--- ---
title: SheevaPlug / GuruPlug
layout: default
created: 2009-09-29 15:04:58 +0200 created: 2009-09-29 15:04:58 +0200
updated: 2010-02-24 00:56:29 +0100 layout: redirect
toc: false layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/09/29/sheevaplug-guruplug.html
tags: tags:
- know-how - know-how
- hardware - hardware
- sheevaplug - sheevaplug
- guruplug - guruplug
title: SheevaPlug / GuruPlug
toc: false
updated: 2010-02-24 00:56:29 +0100
--- ---
* [marvell.com](http://www.marvell.com/products/embedded_processors/developer/kirkwood/sheevaplug.jsp) - Manufacturer of the SheevaPlug * [marvell.com](http://www.marvell.com/products/embedded_processors/developer/kirkwood/sheevaplug.jsp) - Manufacturer of the SheevaPlug
@ -18,4 +20,4 @@ tags:
* [openplug.org](http://openplug.org/plugforum/) - English forum about the SheevaPlug * [openplug.org](http://openplug.org/plugforum/) - English forum about the SheevaPlug
* [sheevaplug.de](http://www.sheevaplug.de/forum.html) - German forum about the SheevaPlug * [sheevaplug.de](http://www.sheevaplug.de/forum.html) - German forum about the SheevaPlug
* [computingplugs.com](http://computingplugs.com/index.php/SheevaPlug_Performance) - Performace ratings of the SheevaPlug * [computingplugs.com](http://computingplugs.com/index.php/SheevaPlug_Performance) - Performace ratings of the SheevaPlug
* [open-rd.org](http://www.open-rd.org/) - same architecture as SheevaPlug but with lots of more I/Os * [open-rd.org](http://www.open-rd.org/) - same architecture as SheevaPlug but with lots of more I/Os

View File

@ -1,16 +1,19 @@
--- ---
title: Google Nexus One
layout: default
created: 2010-03-23 14:55:15 +0100 created: 2010-03-23 14:55:15 +0100
updated: 2010-03-23 14:57:19 +0100 layout: redirect
toc: false layout_old: default
redirect_to: https://blog.mbirth.de/archives/2010/03/23/google-nexus-one.html
tags: tags:
- know-how - know-how
- hardware - hardware
- google - google
- nexusone - nexusone
- passion - passion
title: Google Nexus One
toc: false
updated: 2010-03-23 14:57:19 +0100
--- ---
<img src="{{ site.url }}/assets/nexus_one.png" alt="Google Nexus One" height="180" /> <img src="{{ site.url }}/assets/nexus_one.png" alt="Google Nexus One" height="180" />
* **Homepage:** <http://www.google.com/phone/> * **Homepage:** <http://www.google.com/phone/>
@ -19,4 +22,4 @@ tags:
{% for page in site.categories.google-nexus-one %} {% for page in site.categories.google-nexus-one %}
<li><a href="{{ page.url }}">{{ page.title }}</a></li> <li><a href="{{ page.url }}">{{ page.title }}</a></li>
{% endfor %} {% endfor %}
</ul> </ul>

View File

@ -1,18 +1,21 @@
--- ---
redirect_from:
- /know-how/hardware/fortuna-gpsmartbt/
title: Fortuna GPSmart BT
layout: default
created: 2009-02-02 19:07:10 +0100 created: 2009-02-02 19:07:10 +0100
updated: 2010-07-22 09:55:56 +0200 layout: redirect
toc: false layout_old: default
redirect_from:
- /know-how/hardware/fortuna-gpsmartbt/
redirect_to: https://blog.mbirth.de/archives/2009/02/02/fortuna-gpsmart-bt.html
tags: tags:
- know-how - know-how
- hardware - hardware
- fortuna - fortuna
- gpsmart - gpsmart
- gps - gps
title: Fortuna GPSmart BT
toc: false
updated: 2010-07-22 09:55:56 +0200
--- ---
**Homepage:** [fortuna.com.tw](http://www.fortuna.com.tw/gpsmart.htm) **Homepage:** [fortuna.com.tw](http://www.fortuna.com.tw/gpsmart.htm)
<img src="{{ site.url }}/assets/gpsmart.jpg" height="300" alt="Fortuna GPSmart" /> <img src="{{ site.url }}/assets/gpsmart.jpg" height="300" alt="Fortuna GPSmart" />
@ -67,4 +70,4 @@ Sync cable
========== ==========
The MiniUSB port on the GPSmart is not really a USB interface. The GPSmart has a serial interface and also uses the port for power. The MiniUSB port on the GPSmart is not really a USB interface. The GPSmart has a serial interface and also uses the port for power.
The FortunaSync cable uses a [FTDI FT232BM](http://www.ftdichip.com/FTProducts.htm#FT232BM) which also controls pin #4 (see above). This IC converts the serial signals to USB. The FortunaSync cable uses a [FTDI FT232BM](http://www.ftdichip.com/FTProducts.htm#FT232BM) which also controls pin #4 (see above). This IC converts the serial signals to USB.

View File

@ -1,17 +1,20 @@
--- ---
title: MSI P45 Platinum
layout: default
created: 2009-08-10 20:43:58 +0200 created: 2009-08-10 20:43:58 +0200
updated: 2010-10-09 20:02:39 +0200 layout: redirect
toc: false layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/08/10/msi-p45-platinum.html
tags: tags:
- know-how - know-how
- hardware - hardware
- msi - msi
- mainboard - mainboard
- p45 - p45
- platinum - platinum
title: MSI P45 Platinum
toc: false
updated: 2010-10-09 20:02:39 +0200
--- ---
BIOS BIOS
==== ====
@ -54,4 +57,4 @@ AMI BIOS
| `A7512IMS.17A` | 2009-12-24 | | `A7512IMS.17A` | 2009-12-24 |
| `A7512IMS.17B` | 2010-04-30 | | `A7512IMS.17B` | 2010-04-30 |
| `A7512IMS.17D` | 2010-07-01 | | `A7512IMS.17D` | 2010-07-01 |
| `A7512IMS.17E` | 2010-09-24 | | `A7512IMS.17E` | 2010-09-24 |

View File

@ -1,15 +1,17 @@
--- ---
title: SonyEricsson MBW-150
layout: default
created: 2010-10-09 19:02:24 +0200 created: 2010-10-09 19:02:24 +0200
updated: 2010-10-09 19:02:24 +0200 layout: redirect
toc: true layout_old: default
redirect_to: https://blog.mbirth.de/archives/2010/10/09/sonyericsson-mbw-150.html
tags: tags:
- know-how - know-how
- hardware - hardware
- sony - sony
- sonyericsson - sonyericsson
- mbw150 - mbw150
title: SonyEricsson MBW-150
toc: true
updated: 2010-10-09 19:02:24 +0200
--- ---
![SonyEricsson MBW-150]({{ site.url }}/assets/mbw150.jpg) ![SonyEricsson MBW-150]({{ site.url }}/assets/mbw150.jpg)
@ -141,4 +143,4 @@ if ( isset( $_REQUEST['l1'] ) && isset( $_REQUEST['l2'] ) ) {
Under Linux, you can send a notification like this: Under Linux, you can send a notification like this:
wget -O - --quiet "http://www.example.org/notifier/notify.php?l1=This+is+line1&l2=And+this+is+line2" wget -O - --quiet "http://www.example.org/notifier/notify.php?l1=This+is+line1&l2=And+this+is+line2"

View File

@ -1,19 +1,22 @@
--- ---
title: Amazon Kindle
layout: default
created: 2011-04-25 14:36:25 +0200 created: 2011-04-25 14:36:25 +0200
updated: 2011-04-25 14:36:25 +0200 layout: redirect
toc: false layout_old: default
redirect_to: https://blog.mbirth.de/archives/2011/04/25/amazon-kindle.html
tags: tags:
- know-how - know-how
- hardware - hardware
- amazon - amazon
- kindle - kindle
- paperwhite - paperwhite
- voyage - voyage
title: Amazon Kindle
toc: false
updated: 2011-04-25 14:36:25 +0200
--- ---
<ul> <ul>
{% for page in site.categories.amazon-kindle %} {% for page in site.categories.amazon-kindle %}
<li><a href="{{ page.url }}">{{ page.title }}</a></li> <li><a href="{{ page.url }}">{{ page.title }}</a></li>
{% endfor %} {% endfor %}
</ul> </ul>

View File

@ -1,17 +1,20 @@
--- ---
title: DYMO LabelWriter 320 under Ubuntu Linux
layout: default
created: 2011-10-09 22:37:45 +0200 created: 2011-10-09 22:37:45 +0200
updated: 2012-01-20 09:31:29 +0100 layout: redirect
toc: false layout_old: default
redirect_to: https://blog.mbirth.de/archives/2011/10/09/dymo-labelwriter-320-under-ubuntu-linux.html
tags: tags:
- know-how - know-how
- hardware - hardware
- dymo - dymo
- labelwriter - labelwriter
- ubuntu - ubuntu
- linux - linux
title: DYMO LabelWriter 320 under Ubuntu Linux
toc: false
updated: 2012-01-20 09:31:29 +0100
--- ---
This label printer doesn't work out of the box under Linux. There are some instructions over at This label printer doesn't work out of the box under Linux. There are some instructions over at
[ubuntuforums.org](http://ubuntuforums.org/showthread.php?t=861781), but they're missing something [ubuntuforums.org](http://ubuntuforums.org/showthread.php?t=861781), but they're missing something
for the latest Ubuntu *Oneiric Ocelot*. These instructions should work: for the latest Ubuntu *Oneiric Ocelot*. These instructions should work:
@ -30,4 +33,4 @@ for the latest Ubuntu *Oneiric Ocelot*. These instructions should work:
1. now open **System Settings** → **Printer** 1. now open **System Settings** → **Printer**
1. make sure, your LabelWriter is connected 1. make sure, your LabelWriter is connected
1. add a new printer, choose your LabelWriter, when asked for a driver, point it to `ppd/lw320.ppd` from the `dymo-cups-drivers-1.2.0` directory 1. add a new printer, choose your LabelWriter, when asked for a driver, point it to `ppd/lw320.ppd` from the `dymo-cups-drivers-1.2.0` directory
1. start printing, e.g. from [glabels](apt://glabels) 1. start printing, e.g. from [glabels](apt://glabels)

View File

@ -1,16 +1,18 @@
--- ---
title: Stardom SOHORAID SR3610
layout: default
created: 2012-08-20 21:27:36 +0200 created: 2012-08-20 21:27:36 +0200
updated: 2012-08-20 22:27:38 +0200 layout: redirect
toc: false layout_old: default
redirect_to: https://blog.mbirth.de/archives/2012/08/20/stardom-sohoraid-sr3610.html
tags: tags:
- know-how - know-how
- hardware - hardware
- stardom - stardom
- sohoraid - sohoraid
- raid - raid
- sr3610 - sr3610
title: Stardom SOHORAID SR3610
toc: false
updated: 2012-08-20 22:27:38 +0200
--- ---
<img src="{{ site.url }}/assets/sohoraid_sr3610.jpg" alt="Stardom SOHORAID SR3610" height="250" /> <img src="{{ site.url }}/assets/sohoraid_sr3610.jpg" alt="Stardom SOHORAID SR3610" height="250" />
@ -28,4 +30,4 @@ Firmware
* **Download:** [sohoraid_ro3687v.zip]({{ site.url }}/assets/sohoraid_ro3687v.zip) * **Download:** [sohoraid_ro3687v.zip]({{ site.url }}/assets/sohoraid_ro3687v.zip)
To install, download the **RAIDGuide 1.28.1.14** (32-bit or 64-bit version) from [icy-dock.eu](http://www.icy-dock.eu/en/pages/service/driver.php) (use the SR5600 one for 64-bit). To install, download the **RAIDGuide 1.28.1.14** (32-bit or 64-bit version) from [icy-dock.eu](http://www.icy-dock.eu/en/pages/service/driver.php) (use the SR5600 one for 64-bit).
You'll need a RS323 cable to update the firmware. You'll need a RS323 cable to update the firmware.

View File

@ -1,16 +1,19 @@
--- ---
title: Western Digital GreenPower Disks
layout: default
created: 2012-08-20 20:27:16 +0200 created: 2012-08-20 20:27:16 +0200
updated: 2012-08-20 22:27:02 +0200 layout: redirect
toc: true layout_old: default
redirect_to: https://blog.mbirth.de/archives/2012/08/20/western-digital-greenpower-disks.html
tags: tags:
- know-how - know-how
- hardware - hardware
- westerndigital - westerndigital
- greenpower - greenpower
- wdgreen - wdgreen
title: Western Digital GreenPower Disks
toc: true
updated: 2012-08-20 22:27:02 +0200
--- ---
Advanced Format Advanced Format
=============== ===============
@ -60,4 +63,4 @@ Set the desired value as follows:
Please power cycle your drive off and on for the new setting to be taken into account. A reboot will not be enough! Please power cycle your drive off and on for the new setting to be taken into account. A reboot will not be enough!
Do as it says to enable the new setting. Do as it says to enable the new setting.

View File

@ -1,15 +1,18 @@
--- ---
title: TechniSat DigiCorder
layout: default
created: 2013-11-27 00:02:41 +0100 created: 2013-11-27 00:02:41 +0100
updated: 2013-11-27 01:29:09 +0100 layout: redirect
toc: false layout_old: default
redirect_to: https://blog.mbirth.de/archives/2013/11/27/technisat-digicorder.html
tags: tags:
- know-how - know-how
- hardware - hardware
- technisat - technisat
- digicorder - digicorder
title: TechniSat DigiCorder
toc: false
updated: 2013-11-27 01:29:09 +0100
--- ---
Concat Transport Stream Concat Transport Stream
======================= =======================
@ -44,4 +47,4 @@ Notes:
* bitrate 8888k can be reduced * bitrate 8888k can be reduced
* direct piping (`cat movie*.TS4 | avconv -i -`) doesn't work (in Windows) * direct piping (`cat movie*.TS4 | avconv -i -`) doesn't work (in Windows)
* ProjectX doesn't like `avconv -g 100` * ProjectX doesn't like `avconv -g 100`
* without demuxing, AVStoDVD can't sync the tracks * without demuxing, AVStoDVD can't sync the tracks

View File

@ -1,21 +1,23 @@
--- ---
title: DeckLink BlackMagic Quad
language: en
layout: default
created: 2015-10-09 11:16:16 +0100 created: 2015-10-09 11:16:16 +0100
updated: 2015-10-09 11:16:16 +0100 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2015/10/09/decklink-blackmagic-quad.html
tags: tags:
- know-how - know-how
- hardware - hardware
- decklink - decklink
- blackmagic - blackmagic
title: DeckLink BlackMagic Quad
toc: false
updated: 2015-10-09 11:16:16 +0100
--- ---
ffmpeg -f decklink -i "DeckLink SDI (1)@3" -framerate 25 -vf "yadif=0:-1,scale=1280:720,setdar=16/9" -codec:v mpeg4 -r 25.000 -b:v 2000k -maxrate 3500k -c:a libvo_aacenc -b:a 256k -f mpegts udp://10.24.141.132:1234 -vf "scale=320:200" -c:a mp3 -f mpegts udp://10.24.141.132:1235 ffmpeg -f decklink -i "DeckLink SDI (1)@3" -framerate 25 -vf "yadif=0:-1,scale=1280:720,setdar=16/9" -codec:v mpeg4 -r 25.000 -b:v 2000k -maxrate 3500k -c:a libvo_aacenc -b:a 256k -f mpegts udp://10.24.141.132:1234 -vf "scale=320:200" -c:a mp3 -f mpegts udp://10.24.141.132:1235
You can use any of the 4 BlackMagic processors by specifying `DeckLink SDI (1)``DeckLink SDI (4)`. The number after the `@` is the port. You can use any of the 4 BlackMagic processors by specifying `DeckLink SDI (1)``DeckLink SDI (4)`. The number after the `@` is the port.
This example streams the signal on port `@3` in 2 different formats to different ports on `10.24.141.132`. This example streams the signal on port `@3` in 2 different formats to different ports on `10.24.141.132`.
More info on [StackOverflow](http://stackoverflow.com/questions/19212047/ffmpeg-command-line-for-capturing-and-recording-audio-and-video-in-720p-from-d). More info on [StackOverflow](http://stackoverflow.com/questions/19212047/ffmpeg-command-line-for-capturing-and-recording-audio-and-video-in-720p-from-d).

View File

@ -1,18 +1,21 @@
--- ---
title: hp Spectre x360
layout: default
language: en
created: 2016-07-26 11:03:08 +0200 created: 2016-07-26 11:03:08 +0200
updated: 2016-07-26 11:03:08 +0200 language: en
toc: false layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2016/07/26/hp-spectre-x360.html
tags: tags:
- know-how - know-how
- hardware - hardware
- hp - hp
- spectre - spectre
- x360 - x360
- notebook - notebook
title: hp Spectre x360
toc: false
updated: 2016-07-26 11:03:08 +0200
--- ---
![hp Spectre x360 13-4104ng]({{ site.url }}/assets/hp-spectre-x360.jpg) ![hp Spectre x360 13-4104ng]({{ site.url }}/assets/hp-spectre-x360.jpg)
* **Model no.:** 13-4104ng * **Model no.:** 13-4104ng
@ -22,4 +25,4 @@ tags:
{% for page in site.categories.hp-spectre-x360 %} {% for page in site.categories.hp-spectre-x360 %}
<li><a href="{{ page.url }}">{{ page.title }}</a></li> <li><a href="{{ page.url }}">{{ page.title }}</a></li>
{% endfor %} {% endfor %}
</ul> </ul>

Some files were not shown because too many files have changed in this diff Show More