• Re: Where are the bookmarks in MyPal browser ver. 29.1.1 ?

    From Master Bates@21:1/5 to hardy@homerun.net on Mon Oct 24 02:30:00 2022
    On 24/10/2022 02:54, hardy@homerun.net wrote:
    Searched the Web. Can't find the answer.
    Scratch your small cock to see if it comes up.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From hardy@homerun.net@21:1/5 to All on Sun Oct 23 20:54:35 2022
    Searched the Web. Can't find the answer.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From hardy@homerun.net@21:1/5 to hardy@homerun.net on Sun Oct 23 22:23:42 2022
    On Sun, 23 Oct 2022 20:54:35 -0500, hardy@homerun.net wrote:

    Searched the Web. Can't find the answer.

    Found them.

    C:\Documents and Settings\John\Application Data\Mypal\Profiles\v4xcmr38.default\bookmarkbackups

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From JJ@21:1/5 to hardy@homerun.net on Mon Oct 24 10:25:01 2022
    On Sun, 23 Oct 2022 20:54:35 -0500, hardy@homerun.net wrote:
    Searched the Web. Can't find the answer.

    Have you checked the software's documentation?

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Paul@21:1/5 to hardy@homerun.net on Mon Oct 24 08:32:44 2022
    On 10/23/2022 11:23 PM, hardy@homerun.net wrote:
    On Sun, 23 Oct 2022 20:54:35 -0500, hardy@homerun.net wrote:

    Searched the Web. Can't find the answer.

    Found them.

    C:\Documents and Settings\John\Application Data\Mypal\Profiles\v4xcmr38.default\bookmarkbackups


    The answer to this, depends to some extent on what you
    plan to do with the information.

    Bookmarkbackups contains things like jsonlz4 representations.
    These are mostly readable in a text editor like Notepad.
    But, the information is not ready for human consumption,
    and would require certain tools to help format the info
    and make it 100% readable and correct. lz4 is a "nuisance
    compressor", which provides relatively poor compression
    properties, and serves no useful purpose. It's intent seems
    to be the obfuscation of the info in the file, more than
    anything else.

    Most browsers in this browser family, support "Export Bookmarks"
    and "Import Bookmarks" items. Sometimes, one of those is
    easier to find than the other.

    Export Bookmarks is in HTML format, and ready to Import
    into another browser that supports the importation as HTML.
    That's the portable format for bookmarks files.
    But, you must be *careful*, as the importation policy
    can be "Replace", rather than the more desirable "Merge".
    You may have to sum two HTML files together, then Import,
    so that nothing is lost, and the original list plus the
    new list are in there together.

    The binary looking stuff in the file, is a small icon that
    sits to the left of each item in the menu. The rest of it
    should look like text.

    If you do something like this (while browser is shut down):

    sqlite3.exe places.sqlite .dump > places_dump.txt

    that will also have bookmark information in it. Since,
    on occasion, the browser family seems to *lose* bookmarks
    entirely, my expectation is that the damage happened
    in places.sqlite, and the bookmarkbackups is how you would
    restore the bookmarks. There should be some kind of menu
    item, to import a backup jsonlz4 file and use that
    as the one and only bookmark list.

    My places.sqlite lost a bunch of stuff recently, on Seamonkey browser.
    As an example of the bad dining habits of sqlite databases.
    Databases don't really like to be started up and shut down
    every five seconds, and yet some of the Mozilla software
    is doing that sort of thing. This places a premium on
    *error free* DIMMs on the motherboard. Shitty DIMMS do not help
    in this regard. It could also be undiscovered software bugs
    in the application of sqlite.dll causing this issue.

    Sqlite puts up with a lot of abuse, as it's used by millions
    of people every day, and the software calling it, is none
    too kind to it.

    Paul

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From hardy@homerun.net@21:1/5 to All on Mon Oct 24 13:24:46 2022
    On Mon, 24 Oct 2022 08:32:44 -0400, Paul <nospam@needed.invalid>
    wrote:

    On 10/23/2022 11:23 PM, hardy@homerun.net wrote:
    On Sun, 23 Oct 2022 20:54:35 -0500, hardy@homerun.net wrote:

    Searched the Web. Can't find the answer.

    Found them.

    C:\Documents and Settings\John\Application
    Data\Mypal\Profiles\v4xcmr38.default\bookmarkbackups


    The answer to this, depends to some extent on what you
    plan to do with the information.

    Bookmarkbackups contains things like jsonlz4 representations.
    These are mostly readable in a text editor like Notepad.
    But, the information is not ready for human consumption,
    and would require certain tools to help format the info
    and make it 100% readable and correct. lz4 is a "nuisance
    compressor", which provides relatively poor compression
    properties, and serves no useful purpose. It's intent seems
    to be the obfuscation of the info in the file, more than
    anything else.

    Most browsers in this browser family, support "Export Bookmarks"
    and "Import Bookmarks" items. Sometimes, one of those is
    easier to find than the other.

    Export Bookmarks is in HTML format, and ready to Import
    into another browser that supports the importation as HTML.
    That's the portable format for bookmarks files.
    But, you must be *careful*, as the importation policy
    can be "Replace", rather than the more desirable "Merge".
    You may have to sum two HTML files together, then Import,
    so that nothing is lost, and the original list plus the
    new list are in there together.

    The binary looking stuff in the file, is a small icon that
    sits to the left of each item in the menu. The rest of it
    should look like text.

    If you do something like this (while browser is shut down):

    sqlite3.exe places.sqlite .dump > places_dump.txt

    that will also have bookmark information in it. Since,
    on occasion, the browser family seems to *lose* bookmarks
    entirely, my expectation is that the damage happened
    in places.sqlite, and the bookmarkbackups is how you would
    restore the bookmarks. There should be some kind of menu
    item, to import a backup jsonlz4 file and use that
    as the one and only bookmark list.

    My places.sqlite lost a bunch of stuff recently, on Seamonkey browser.
    As an example of the bad dining habits of sqlite databases.
    Databases don't really like to be started up and shut down
    every five seconds, and yet some of the Mozilla software
    is doing that sort of thing. This places a premium on
    *error free* DIMMs on the motherboard. Shitty DIMMS do not help
    in this regard. It could also be undiscovered software bugs
    in the application of sqlite.dll causing this issue.

    Sqlite puts up with a lot of abuse, as it's used by millions
    of people every day, and the software calling it, is none
    too kind to it.

    Paul


    That is much more than I ever wanted to know. :o)

    I'm using a program that does not allow anything to be written to the
    C:. It's kind of like a sandbox thingy. So, when I want to add new
    bookmarks while browsing, I have to back them up to another drive or
    USB stick. After rebooting with the sandbox off, I then import the
    new bookmark file from the source I saved them to.

    Anyway, I was just curious where in the heck I was 'importing' them
    to.

    Thanks for answering. I left your answer intact in case it helps
    someone else down the line sometime.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)