• Activity
  • Votes
  • Comments
  • New
  • All activity
  • Showing only topics with the tag "personal information management". Back to normal view
    1. On the rise and fall of Delicious, the online bookmarking service

      Online/digital bookmarking and excerpting is something that really interests me because I think most if not all existing options for it fall very short of the functionality I wish existed, and...

      Online/digital bookmarking and excerpting is something that really interests me because I think most if not all existing options for it fall very short of the functionality I wish existed, and that I think could exist.

      One of the first online bookmarking services I used was Delicious, and for a few years it was irreplaceable for me. However it languished after it was bought by Yahoo and then resold, and since then I’ve observed its slow and steady decline from afar.

      The purpose of this post is twofold:

      1. I want to know the current state of online bookmarking for you. I’m curious to know if it’s as much of an unmet need in anyone else’s life as it seems to be in mine.
        • Were you once a bookmarker and gave up due to the seeming futility of it?
        • Have you never been interested in bookmarking and/or don’t see the point of it?
        • Are you an active bookmarker, and if so what tools or workflows do you use, and what kinds of content do you bookmark?
      2. I thought I would share some of the research I did into Delicious’ various design iterations over the years via the Internet Archive. It’s a cool birds-eye survey of how the service’s ethos, goals and design changed over time. Beyond the value it provides as a case study, I think there are greater lessons and insights that can be gained from observing the rise and fall of what was once such a beloved online service.

      As a sidenote, I also found this explanation of Delicious' approach to tagging to be very interesting: del.icio.us/help/tags | 21 February 2006

      I hadn't realized that Delicious was actually the first to introduce the concept of user-controlled tags for bookmarks:

      When Delicious was first launched, it was the first use of the term "tag" in the modern sense, and it was the first explicit opportunity where website users were given the ability to add their own tags to their bookmarks so that they could more easily search for them at a later time. This major breakthrough was not much noticed as most thought the application at the time "cool" but obvious. – Source

      Edit: I hope it's alright to edit a post this many hours after having submitted it. There were a few important updates that I really wanted to include here.

      18 votes
    2. My random notes for Nim lang

      -> Nim notes <- Some background I am learning a new programming language Nim. As many would do, I also take my own notes as I am learning it, running little example by myself, etc. .. but I doing...

      -> Nim notes <-


      Some background

      I am learning a new programming language Nim. As many would do, I also take my own notes as I am learning it, running little example by myself, etc.

          .. but I doing that a bit differently.

      • I take notes in Emacs Org mode. Org mode has a feature set called Org Babel. That allows one to document the code snippets, and also run them directly in that document, and insert their output results below them -- Notes in Org

        This also helps me document regression of the language behavior between different Nim versions of any, as the exact outputs are documented too. After each major Nim update, I press a single binding (C-v C-v b) in Emacs, and all the output blocks get recalculated.

      • But not everyone uses Emacs and Org mode. So to be able to share them to a wider audience, I need to export (Org term) that to a format like HTML, PDF, or Markdown..

      • Hugo is a really fast static site generator that uses Markdown as one of the primary content formats. It parses that to HTML using a Go Markdown library called Blackfriday.

      • As my notes are in Org mode, and converting them to HTML via Hugo needs them to be in Blackfriday compatible Markdown (which is almost like GitHub flavored Markdown), I starting working on an Emacs Org mode package ox-hugo about a year back. Using that, this Markdown file is generated. Hugo natively supports a subset of Org, but I needed to write this package to use the full power of Org mode.

      • Hugo then takes that Markdown and generates the final Nim notes page in HTML.


      In the end, I have something that ties together all things of my interest: Nim, Emacs, Org mode and Hugo :)

      8 votes