question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Taken from @lightdot’s comment over at #180

The separator situation in Chromium/Chrome is unfortunate. Users have requested them on several occasions but apparently they won’t be added.

There are how-to’s online that suggest mitigating the lack of functionality by adding specially crafted bookmarks, using bookmarklets. These seem to be very popular with Chromium/Chrome users.

Bookmark JSON for the horizontal “separator”:

            {
               "date_added": "<TIMESTAMPINMS>",
               "id": "<ID>",
               "meta_info": {
                  "last_visited_desktop": "<TIMESTAMPINMS>"
               },
               "name": "───────────",
               "type": "url",
               "url": "https://separator.mayastudios.com/index.php?t=horz"
            }

generated XBEL:

<bookmark href="https://separator.mayastudios.com/index.php?t=horz" id="<FLCID>"><title>───────────</title></bookmark>

In Vivaldi, separators are supported by the browser. Unsurprisingly, their actual format is a hack, similar to the above. From Vivaldi’s Bookmark file:

            {
               "date_added": "<TIMESTAMPINMS>",
               "id": "<ID>",
               "meta_info": {
                  "Description": "separator"
               },
               "name": "---",
               "type": "url",
               "url": "http://bookmark.placeholder.url"
            }

generated XBEL:

<bookmark href="http://bookmark.placeholder.url/" id="<FLCID>"><title>---</title></bookmark>

So we have those two, and from Firefox, JSON:

{"guid":"<GUID>","title":"","index":<INDEX>,"dateAdded":<UNIXTIMESTAMP>,"lastModified":<UNIXTIMESTAMP>,"id":<ID>,"typeCode":3,"type":"text/x-moz-place-separator"}

generated XBEL:

<bookmark href="data:" id="<FLCID>"><title/></bookmark>

Translating the above three hackish separators to XBEL’s <separator> element and back would IMHO be safe and cover a lot of users.

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Reactions:3
  • Comments:12 (5 by maintainers)

github_iconTop GitHub Comments

1reaction
godfuturecommented, Aug 5, 2022

Now that I have all separators in place, I replaced Fireofox sync for bookmarks with floccus. Currently working just fine.

Thanks a lot!

1reaction
tessuscommented, Mar 15, 2022

Thanks for the info!

Read more comments on GitHub >

github_iconTop Results From Across the Web

Centrifuge & Separator Service, Parts & Remanufactured ...
Separators, Inc. services, repairs, remanufactures, and carries parts for name brand centrifuges from Alfa Laval, Westfalia, and Tetra Pak.
Read more >
High Speed Centrifugal Separators - Alfa Laval
Alfa Laval centrifuge portfolio for precise food and beverage clarification; to gentle biopharm cell harvesting, to efficient marine, oil and gas separation ...
Read more >
Separators - an overview | ScienceDirect Topics
Separators are used to separate steam and liquid water at core exit of BWRs or at the top of PWR SGs. A two-phase...
Read more >
Separator Definition & Meaning - Merriam-Webster
The meaning of SEPARATOR is one that separates; especially : a device for separating liquids of different specific gravities (such as cream ...
Read more >
What Are The Different Types of Oil and Gas Separators?
An oil and gas production separator is a pressure vessel that is used for separating the fluid components of an oil and gas...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found