November 23, 2009

[SOLVED]Paketdatei war nicht richtig signiert


NM I got it working I just had to

adb remount

adb shell rm /system/sd/app/*Maps*

adb shell rm /system/sd/app/*maps*

adb shell rm /system/sd/dalvik-cache/*Maps*

adb shell rm /system/sd/dalvik-cache/*maps*

adb shell rm /data/app/*Maps*

adb shell rm /data/app/*maps*

adb shell rm /data/dalvik-cache/*Maps*

adb shell rm /data/dalvik-cache/*maps*

adb shell rm /system/app/*Maps*

adb shell rm /system/app/*maps*

adb uninstall com.google.android.apps.maps

that let me uninstall and install the new maps.


forum.xda-developers.com

How can I count the number of occurrences of a substring within a string?


If you want a count of a certain character (X) within a string, you can use the tr/// function like so:
    $string="ThisXlineXhasXsomeXx'sXinXit":
$count = ($string =~ tr/X//);
print "There are $count Xs in the string";

This is fine if you are just looking for a single character. However, if you are trying to count multiple character substrings within a larger string, tr/// won't work. What you can do is wrap a while loop around a pattern match.
    $string="-9 55 48 -2 23 -76 4 14 -44";
$count++ while $string =~ /-\d+/g;
print "There are $count negative numbers in the string";


perl.com

November 7, 2009

My Thunderbird extensions list

Generated: Sat Nov 07 2009 01:14:44 GMT+0100
User Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.8.1.23) Gecko/20090812 Lightning/0.9 Thunderbird/2.0.0.23
Build ID: 2009081210

Enabled Extensions: [43]

My Firefox extensions list

Generated: Sat Nov 07 2009 01:05:09 GMT+0100

User Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 GTB5 (.NET CLR 3.5.30729)

Build ID: 20091102152451



Enabled Extensions: [45]

 

November 3, 2009

[SOLVED]In dem Ordner in dem die Anwendung heruntergeladen wurde können keine neuen Dateien erstellt oder gespeichert werden.

Anleitung:

1. DLMWin7HP64DE.exe (oder vergleichbare .exe-Datei) herunterladen, jedoch nicht ausführen.

2. DLMWin7HP64DE.exe » Eigenschaften » Reiter Kompabilität » Checkbox Programm als ein Administrator ausführen

3. DLMWin7HP64DE.exe » Als Administrator ausführen und warten, bis alle Dateien heruntergeladen worden sind

4. Win7-HP-Retail-de-de-x64.exe (oder vergleichbare .exe-Datei) » Als Administrator ausführen

5. Trotz fehlerhaftem Entpacken der Dateien (siehe o.g. Fehlermeldung) fortfahren

6. Oscdimg herunterladen, die .zip-Datei entpacken und deren Inhalt nach C:/Windows/System32 kopieren

7. Den durch 4. erstellten Ordner expandedSetup nach C:/ kopieren

8. Start » cmd » Als Administrator ausführen

9. Eingabe: Oscdimg.exe -u2 -b"C:\expandedSetup\boot\etfsboot.com" -h "C:\expandedSetup" C:\7.iso

10. Windows 7 USB/DVD Download Tool herunterladen und installieren

11. Windows 7 USB/DVD Download Tool ausführen, den Anweisungen folgen und unter Schritt 3 die auf C: liegende 7.iso-Datei einbinden

Sollte diese Methode bei jemandem Erfolg haben, insbesondere auf Hinsicht auf die Funktion der Product Keys, würde ich mich freuen, wenn er dies hier preisbigt.

social.answers.microsoft.com