• Activity
  • Votes
  • Comments
  • New
  • All activity
  • Showing only topics with the tag "personal information management". Back to normal view
    1. Alternatives to Markdown for writing short documentation/TODOs?

      Hi guys, I often find myself writing small text files for projects, like a bit of documentation or TODOs. I have a proper system in place for larger projects, but would love to be able to scribble...

      Hi guys,

      I often find myself writing small text files for projects, like a bit of documentation or TODOs. I have a proper system in place for larger projects, but would love to be able to scribble down things for larger ones.

      As big of a fan of Markdown as I am, I find that it's often inappropriate for these kinds of tasks. For example, I find myself mimicking a task list with multiple-paragraph list items.

      What do you guys use? Do you know of any Markdown alternatives that give you a bit more control over the layout?

      Thanks!

      14 votes
    2. How do you manage your tasks, keep focused

      I'm currently in a "how can I improve and refocus" and wanted to see what this group thinks since either seems we have some pretty thoughtful and techy people here. I have toyed around for years...

      I'm currently in a "how can I improve and refocus" and wanted to see what this group thinks since either seems we have some pretty thoughtful and techy people here.

      I have toyed around for years with different techniques. I got really into GTD and used several apps focused on that even writing my own JavaScript app to use with Google sheets.

      I've used spreadsheets, OneNote, Wunderlist, plain text files.

      What do you use to keep your tasks moving forward and how do you use these tools to manage your tasks and get work done? I found spreadsheets are nice because you can do a lot of scratch work but it's hard to "check them off' but many "check them off" tools don't give you a lot of scratch workspace. OneNote is cool but I can't stand the Microsoft environment and it doesn't seem to give a lot of indication how best to use the tool. Maybe I should do a training....

      10 votes
    3. 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
    4. 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