Sonntag, 6. August 2023

Picasa - Keine Karten-Anzeige, trotz GPS-Informationen in den Bildern, Probleme mit [objectError]

Gebt in der Windows-Suche (Windows-Taste + s) regedit ein. Es öffnet sich der Registry-Editor. Unter HKey_Current_User > Software > Microsoft > Internet Explorer > Main > FeatureControl > Feature_Browser_Emulation müsst ihr einen DWORD-Wert mit dem Namen picasa3.exe und dem Wert 2af8 hinzufügen. 


Hat nicht gereicht, stattdessen 0 eingeben und nun fkt es wieder.




 https://www.mysysadmintips.com/windows/clients/875-google-picasa-3-maps-module-no-longer-works-object-error


Issue

Places sidebar stopped working in Google Picasa 3. The following error is displayed instead of a map:

Google Picasa 3 maps module error

[object Error]
You are using a browser that is not supported by the Google Maps JavaScript API. Consider changing your browser.

Resolution

Close Picasa and perform the following steps:

  • Open Registry Editor (regedit.exe)
  • Navigate to: HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BROWSER_EMULATION
  • Create a new DWORD entry with name: picasa3.exe and Hexadecimal value: 2af8 (Decimal: 11000).

Open Picasa and embedded maps module should now work.

Update 05/2022

Due to Goole Maps backend change, the fix stopped working. A very similar error message is now being displayed instead of the map:

You are using a browser that is not supported by the Google Maps JavaScript API. Please consider changing your browser.
Error: The Google Maps JavaScript API does not support this browser.

Credit goes to José Miguel Parreño in the Disqus comments below and www.picxl.de. It seems that all you need to restore the fix (unclear for how long) is to follow the same instructions, but instead of value: 2af8, enter 0.

Samstag, 22. April 2023

Regex mit Total Commander, Dateinamen ändern

Change 20230409_150627.mp4 to  2023-04-09_15-06-27.mp4


Search for: (\d{4})(\d{2})(\d{2})_(\d{2})(\d{2})(\d{2})(.*)

Replace: $1-$2-$3_$4-$5-$6$7


\d Dezimalzeichen

{2} genau zweimal

() lässt sich mit $ referenzieren


https://www.ghisler.ch/wiki/index.php/Regular_Expressions

https://helgeklein.com/blog/renaming-multiple-files-with-regular-expressions-in-total-commander/