SWTOR – Equivalent to /reloadui

To reload the UI in SWTOR press “CTRL+U” twice!

SWTOR – Sinnvolle Handwerksfähigkeiten-Kombinationen

Hier eine kurze Übersicht über sinnvolle Handwerksfähigkeiten Kombinationen für “Star Wars: The Old Republic”. Als kleiner Hinweis vorweg: “Hacken” kann immer als alternative Sammelfähigkeit genommen werden.

Kunstfertigkeit (Lichtschwertmodifikationen, Aufrüstungen, Fokussen):
Sammeln: Archäologie
Mission: Schatzsuche
Klassen: Sith-Krieger, Sith-Inquisitor, Jedi-Botschafter, Jedi-Ritter,

Synth-Fertigung (Leichte, mittlere und schwere Rüstung für Machtanwender):
Sammeln: Archäologie
Mission: Unterwelthandel
Klassen: Sith-Krieger, Sith-Inquisitor, Jedi-Botschafter, Jedi-Ritter

Biochemie (Medipacks, Stims, Implantate):
Sammeln: Bioanalyse
Mission: Diplomatie
Klassen: Alle

Cybertech (Droidenrüstungen, Ohrstücke, Granaten, Armierung, Modifikationen, Apparate):
Sammeln: Plündern
Mission: Unterwelthandel
Klassen: Soldat, Imperialer Agent, grundsätzlich ist aber für alle Klassen etwas nützliches dabei

Rüstungsbau (Mittlere und Schwere Rüstungen):
Sammeln: Plündern
Mission: Unterwelthandel
Klassen: Kopfgeldjäger, Soldat, Schmuggler, Imperialer Agent

Waffenbau (Blaster, Blastermodifikationen, Nahkampfwaffen):
Sammeln: Archäologie
Mission: Unterwelthandel
Klassen: Imperialer Agent, Soldat, Schmuggler, Kopfgeldjäger

jQuery Mobile “mobileinit” Event

Unlike other jQuery projects, such as jQuery and jQuery UI, jQuery Mobile automatically applies many markup enhancements as soon as it loads (long before document.ready event fires). These enhancements are applied based on jQuery Mobile’s default configuration, which is designed to work with common scenarios, but may or may not match your particular needs. Fortunately, these settings are easy to configure.

When the jQuery Mobile starts to execute, it triggers a mobileinit event on the document object, to which you can bind to apply overrides to jQuery Mobile’s defaults.

That the mobileinit event works  you need to follow this sequence:

  1. Load jQuery
  2. Define mobileinit event
  3. Load jQuery Mobile
Example:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
    <head>
    <title>My Mobile Page</title>  
    <link rel="stylesheet" href="jquery/jquery.mobile-1.0b2.min.css" />
    <script type="text/javascript" src="http://code.jquery.com/jquery-1.6.2.min.js"></script>
    <script>
        $(document).bind( "mobileinit", function(){
            alert("mobileinit fired");         
        });        
    </script>  
    <script src="jquery/jquery.mobile-1.0b2.min.js"></script>
    </head>
    <body>
        ...
    </body>
</html>

Phonegap 1.0 Android and “stopped unexpectedly”

If you can’t launch your phonegap android application in the emulator because of errors like…

“…stopped unexpectedly” or “android.content.res.Resources$NotFoundException: Resource ID #0×0″

…then you need the plugins.xml file to be in your res/xml folder. You can find the folder with the file in the sample android application from the phonegap.zip file.

I tooks me hours to find the solution for this issue and I don’t know why this is not documented. If you are using Dreamweaver CS5.5 to develop phonegap apps take a look at my guide to update Dreamweaver to Phonegap Version 1.0.

Change WordPress 3.2 HTML-Editor Font

A good friend of me was not happy with the new HTML-Editor font in WordPress 3.2. So I wrote him a plugin to bring back the “old” font to WordPress 3.2.

Download

Installation:

  1. Upload the whole plugin-folder to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Write a new post with the HTML-Editor and enjoy

T-Mobile Multi-SIM und SMS-Versand

Wie ich Heute feststellen musste funktioniert der SMS-Versand bei Multi-SIM Karten (zwei Karten, eine Nummer) nur auf einer Karte. Dies kann man aber jederzeit ändern. Einfach von der Karte, mit der man SMS empfangen und versenden möchte, den Code *222# (ganz normal über die Telefonfunktion wählen) abschicken. Nach wenigen Sekunden bekommt man dann die Meldung das der Nachrichtendienst nun aktiviert ist.

Dreamweaver 5.5 update to latest phonegap version (Android) (updated for version 1.0)

For Android, the complex process of installing, configuring, and verifying the Android SDK has always been a bit of a chore. Dreamweaver CS5.5 takes all the pain out of this process by providing an “easy install” option, which will do all of the above for you in the background. But there is one problem. Dreamweaver 5.5 comes with an old version of phonegap and some things didn’t work. Here is a guide to update Dreamweaver CS 5.5 to the latest phonegap version. In my case I updated to version 0.9.5.1.

I wrote this guide for phongap 0.95. For version 1.0 step 7 is very important.

  1. Download latest phonegap version.
  2. Extract the downloaded zip file
  3. Open the “Android” folder in the extracted zip.
  4. Remove version from the filenames:  Rename phonegap.0.9.5.1.jar to phonegap.jar and phonegap.0.9.5.1.js to phonegap.js
  5. Copy and overwrite phonegap.js to C:\Program Files (x86)\Adobe\Adobe Dreamweaver CS5.5\configuration\NativeAppFramework\DWPhoneGap\android\PhoneGapApp\assets\www
  6. Copy and overwrite phonegap.jar to C:\Program Files (x86)\Adobe\Adobe Dreamweaver CS5.5\configuration\NativeAppFramework\DWPhoneGap\android\PhoneGapApp\libs
  7. (Version 1.0 only) Copy the folder “xml”, with the plugins.xml file in it, to C:\Program Files (x86)\Adobe\Adobe Dreamweaver CS5.5\configuration\NativeAppFramework\DWPhoneGap\android\PhoneGapApp\res
  8. In your existing mobile phonegap application, replace the old phonegap.js with the new one. And also delete previously builds binary folders like (“com.yourcompany.application_Android”)