Browse Hacker News like a haxor: A Hacker News command line interface (CLI).

Overview

Imgur

Build Status

PyPI version PyPI License

haxor-news

Coworker who sees me looking at something in a browser: "Glad you're not busy; I need you to do this, this, this..."

Coworker who sees me staring intently at a command prompt: Backs away, slowly...

-Source

Check out the haxor-news discussion in this Hacker News post.

haxor-news brings Hacker News to the terminal, allowing you to view/filter the following without leaving your command line:

  • Posts
  • Post Comments
  • Post Linked Web Content
  • Monthly Hiring and Freelancers Posts
  • User Info
  • Onions

haxor-news helps you filter the large number of comments that popular posts generate.

  • Want to expand only previously unseen comments?
    • -cu/--comments_unseen
  • How about recent comments posted in the past 60 minutes?
    • -cr/--comments_recent
  • Filter comments matching a regex query?
    • -cq/--comments_query [query]

Imgur

Job hunting or just curious what's out there? Filter the monthly who's hiring and freelancers post:

remote_web_jobs.txt">
$ hn hiring "(?i)(Node|JavaScript).*(remote)" > remote_web_jobs.txt

Combine haxor-news with pipes, redirects, and other command line utilities. Output to pagers, write to files, automate with cron, etc.

haxor-news comes with a handy optional auto-completer with interactive help:

Imgur

Index

General

Features

Installation and Tests

Misc

Syntax

Usage:

$ hn  [params] [options]

Auto-Completer and Interactive Help

Optionally, you can enable fish-style completions and an auto-completion menu with interactive help:

$ haxor-news

If available, the auto-completer also automatically displays comments through a pager.

Within the auto-completer, the same syntax applies:

haxor> hn  [params] [options]

Imgur

Imgur

Customizable Highlighting

You can control the ansi colors used for highlighting by updating your ~/.haxornewsconfig file.

Color options include:

'black', 'red', 'green', 'yellow',
'blue', 'magenta', 'cyan', 'white'

For no color, set the value(s) to None.

Imgur

Commands

Imgur

View Posts

View the Top, Best, Show, Ask, Jobs, New, and Onion posts.

Usage:

$ hn [command] [limit]  # post limit default: 10

Examples:

$ hn top
$ hn show 20

Imgur

View a Post's Linked Web Content

After viewing a list of posts, you can view a post's linked web content by referencing the post #.

The HTML contents of the post's link are formatted for easy-viewing within your terminal. If available, the formatted output is sent to a pager.

See the View in a Browser section to view the contents in a browser instead.

Usage:

$ hn view [#]

Example:

$ hn view 1
$ hn view 8

Imgur

View and Filter a Post's Comments

View All Comments

After viewing a list of posts, you can view a post's comments by referencing the post #.

Examples:

$ hn view 8 -c
$ hn view 8 --comments > comments.txt

Paged Comments

If running with the auto-completer, comments are automatically paginated. To get the same pagination without the auto-completer, append | less -r:

$ hn view 8 -c | less -r

Imgur

Filter on Unseen Comments

Filter comments to expand only those you have not yet seen. Unseen comments are denoted with a [!] and are fully expanded.

Seen comments will be truncated with [...] and will be shown to help provide context to unseen comments.

Examples:

$ hn view 8 -cu
$ hn view 8 --comments_unseen | less -r

Imgur

Filter on Recent Comments

Filter comments to expand only those posted within the past 60 minutes.

Older comments will be truncated with [...] and will be shown to help provide context to recent comments.

Examples:

$ hn view 8 -cr | less -r
$ hn view 8 --comments_recent

Imgur

Filter with Regex

Filter comments based on a given regular expression query.

Examples:

programmer.txt">
$ hn view 2 -cq "(?i)programmer" | less -r
$ hn view 2 --comments_regex_query "(?i)programmer" > programmer.txt

Case insensitive regex: (?i)

Imgur

Hide Non-Matching Comments

When filtering comments for unseen, recent, or with regex, non-matching comments are collapsed to provide context. To instead hide non-matching comments, pass the -ch\--comments_hide flag. Hidden comments will be displayed as ..

Example:

$ hn view 8 -cu -ch | less -r

Imgur

Filter the Monthly Hiring Post

Hacker News hosts a monthly hiring post where employers post the latest job openings.

Usage:

$ hn hiring [regex filter]

Examples:

remote_jobs.txt">
$ hn hiring ""
$ hn hiring "(?i)JavaScript|Node"
$ hn hiring "(?i)(Node|JavaScript).*(remote)" > remote_jobs.txt

Case insensitive regex: (?i)

Imgur

To search a different monthly hiring post other than the latest, use the hiring post id.

Usage:

$ hn hiring [regex filter] [post id]

Filter the Freelancers Post

Hacker News hosts a monthly freelancers post where employers and freelancers post availabilities.

Usage:

$ hn freelance [regex filter]

Examples:

remote_jobs.txt">
$ hn freelance ""
$ hn freelance "(?i)JavaScript|Node"
$ hn freelance "(?i)(Node|JavaScript).*(remote)" > remote_jobs.txt

Case insensitive regex: (?i)

Imgur

To search a different monthly hiring post other than the latest, use the hiring post id.

Usage:

$ hn freelance [regex filter] [post id]

Combine With Pipes and Redirects

Output to pagers, write to files, automate with cron, etc.

Examples:

remote_jobs.txt">
$ hn view 1 -c | less
$ hn freelance "(?i)(Node|JavaScript).*(remote)" > remote_jobs.txt

Imgur

View User Info

Usage:

$ hn user [user id]

Imgur

View Onions

Usage:

$ hn onion [limit]  # post limit default: all

Imgur

View in a Browser

View the linked web content or comments in your default browser instead of your terminal.

Usage:

$ hn  [params] [options] -b
$ hn  [params] [options] --browser

Windows Support

haxor-news has been tested on Windows 10.

Pager Support

Pager support on Windows is more limited as discussed in the following ticket. Users can direct output to a pager with the | more command:

$ hn view 1 -c | more

Config File

On Windows, the .haxornewsconfig file can be found in %userprofile%. For example:

C:\Users\dmartin\.haxornewsconfig

cmder and conemu

Although you can use the standard Windows command prompt, you'll probably have a better experience with either cmder or conemu.

Installation

Pip Installation

PyPI version PyPI

haxor-news is hosted on PyPI. The following command will install haxor-news:

$ pip install haxor-news

You can also install the latest haxor-news from GitHub source which can contain changes not yet pushed to PyPI:

$ pip install git+https://github.com/donnemartin/haxor-news.git

If you are not installing in a virtualenv, run with sudo:

$ sudo pip install haxor-news

Once installed, run the optional haxor-news auto-completer with interactive help:

$ haxor-news

Run commands:

$ hn  [params] [options]

Virtual Environment Installation

It is recommended that you install Python packages in a virtualenv to avoid potential issues with dependencies or permissions.

To view haxor-news virtualenv installation instructions, click here.

Mac OS X 10.11 El Capitan Users

There is a known issue with Apple and its included python package dependencies (more info at https://github.com/pypa/pip/issues/3165). We are investigating ways to fix this issue but in the meantime, to install haxor-news, you can run:

$ sudo pip install haxor-news --upgrade --ignore-installed six

Supported Python Versions

  • Python 2.6
  • Python 2.7
  • Python 3.3
  • Python 3.4
  • Python 3.5
  • Python 3.6
  • Python 3.7

Supported Platforms

  • Mac OS X
    • Tested on OS X 10.10
  • Linux, Unix
    • Tested on Ubuntu 14.04 LTS
  • Windows
    • Tested on Windows 10

Developer Installation

If you're interested in contributing to haxor-news, run the following commands:

$ git clone https://github.com/donnemartin/haxor-news.git
$ pip install -e .
$ pip install -r requirements-dev.txt
$ haxor-news
$ hn  [params] [options]

Continuous Integration

Build Status

Continuous integration details are available on Travis CI.

Unit Tests and Code Coverage

Run unit tests in your active Python environment:

$ python tests/run_tests.py

Run unit tests with tox on multiple Python environments:

$ tox

Documentation

Source code documentation will soon be available on Readthedocs.org. Check out the source docstrings.

Run the following to build the docs:

$ scripts/update_docs.sh

Contributing

Contributions are welcome!

Review the Contributing Guidelines for details on how to:

  • Submit issues
  • Submit pull requests

Credits

Contact Info

Feel free to contact me to discuss any issues, questions, or comments.

My contact info can be found on my GitHub page.

License

I am providing code and resources in this repository to you under an open source license. Because this is my personal repository, the license you receive to my code and resources is from me and not my employer (Facebook).

License

Copyright 2015 Donne Martin

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Comments
  • Error

    Error "wrong color format 'reverse'"

    Installed haxor-news today on Arch. I get this error

    8:36:35 [email protected] ~ haxor-news
    Traceback (most recent call last):
      File "/usr/bin/haxor-news", line 11, in <module>
        load_entry_point('haxor-news==0.4.1', 'console_scripts', 'haxor-news')()
      File "/usr/lib/python3.6/site-packages/haxor_news/main.py", line 25, in cli
        haxor = Haxor()
      File "/usr/lib/python3.6/site-packages/haxor_news/haxor.py", line 110, in __init__
        self._create_cli()
      File "/usr/lib/python3.6/site-packages/haxor_news/haxor.py", line 153, in _create_cli
        style_factory = StyleFactory(self.theme)
      File "/usr/lib/python3.6/site-packages/haxor_news/style.py", line 31, in __init__
        self.style = self.style_factory(name)
      File "/usr/lib/python3.6/site-packages/haxor_news/style.py", line 49, in style_factory
        class CliStyle(Style):
      File "/usr/lib/python3.6/site-packages/pygments/style.py", line 101, in __new__
        ndef[0] = colorformat(styledef)
      File "/usr/lib/python3.6/site-packages/pygments/style.py", line 58, in colorformat
        assert False, "wrong color format %r" % text
    AssertionError: wrong color format 'reverse'
    
    bug 
    opened by AntouanK 8
  • Error 'failed to create process' when user profile folder contains a blank space

    Error 'failed to create process' when user profile folder contains a blank space

    I think that this is more an observation than an issue as such.

    I installed haxor-news, on a Windows 10 machine, and the installation process was seamless, but when I tried to launch it, it constantly keeps telling me that it "failed to create process".

    After a while, and reading a couple of blogs, and stackoverflow articles, I came to the realization/discovery that the root of my problem was that my username contains an empty space (that is "Antonio Gil") and for some reason, that I don't fully understand, that little details was causing the issue.

    The fix? I just changed the first line of both scipts (haxor-news-script.py and hn-script.py) from:

    #!c:\users\antonio gil\appdata\local\programs\python\python35\python.exe
    

    to

    #!"c:\users\antonio gil\appdata\local\programs\python\python35\python.exe"
    

    And that was all to get haxor-news work as expected.

    Probably it was just a "newbie error" (never use python, or pip before), but I guess that it should be great to consider that detail.

    Best regards!

    bug 
    opened by antonio-gil 8
  • Test failures on NixOS

    Test failures on NixOS

    When I run the tests on NixOS, I get the following output:

    test_cli (unittest.loader.ModuleImportFailure) ... ERROR
    test_F10 (test_keys.KeysTest) ... ERROR
    test_F2 (test_keys.KeysTest) ... ERROR
    test_toolbar_off (test_toolbar.ToolbarTest) ... ERROR
    test_toolbar_on (test_toolbar.ToolbarTest) ... ERROR
    test_clear_item_cache (test_config.ConfigTest) ... ok
    test_config (test_config.ConfigTest) ... ok
    test_load_hiring_and_freelance_ids (test_config.ConfigTest) ... FAIL
    test_load_hiring_and_freelance_ids_from_cache_or_defaults (test_config.ConfigTest) ... ok
    test_load_hiring_and_freelance_ids_invalid_url (test_config.ConfigTest) ... ERROR
    test_save_and_load_item_ids (test_config.ConfigTest) ... ERROR
    test_view_comment_clear_cache (test_config.ConfigTest) ... ok
    test_add_comment_pagination (test_haxor.HaxorTest) ... ERROR
    test_exit_command (test_haxor.HaxorTest) ... ERROR
    test_run_command (test_haxor.HaxorTest) ... ERROR
    test_arg_freelance (test_completer.CompleterTest) ... ok
    test_arg_hiring (test_completer.CompleterTest) ... ok
    test_arg_limit (test_completer.CompleterTest) ... ok
    test_arg_user (test_completer.CompleterTest) ... ok
    test_arg_view (test_completer.CompleterTest) ... ok
    test_blank (test_completer.CompleterTest) ... ok
    test_command (test_completer.CompleterTest) ... ok
    test_completing_option (test_completer.CompleterTest) ... ok
    test_fuzzy (test_completer.CompleterTest) ... ok
    test_multiple_options (test_completer.CompleterTest) ... ok
    test_no_completions (test_completer.CompleterTest) ... ok
    test_option_freelance (test_completer.CompleterTest) ... ok
    test_option_hiring (test_completer.CompleterTest) ... ok
    test_option_user (test_completer.CompleterTest) ... ok
    test_option_view (test_completer.CompleterTest) ... ok
    test_subcommand (test_completer.CompleterTest) ... ok
    test_ask (test_hacker_news.HackerNewsTest) ... ok
    test_best (test_hacker_news.HackerNewsTest) ... ok
    test_format_comment (test_hacker_news.HackerNewsTest) ... ok
    test_format_index_title (test_hacker_news.HackerNewsTest) ... ok
    test_format_item (test_hacker_news.HackerNewsTest) ... ok
    test_format_markdown (test_hacker_news.HackerNewsTest) ... ok
    test_headlines_message (test_hacker_news.HackerNewsTest) ... ok
    test_hiring_and_freelance (test_hacker_news.HackerNewsTest) ...
    

    Do you know how to get unittest to print the errors and a stack trace?

    @matthiasbeyer haxor-news is broken on unstable

    opened by dotlambda 5
  • The latest pip version is breaking the design

    The latest pip version is breaking the design

    Pip version: 10.0.0 Python version: 3.6.5 && 2.7.14 Operating system: macOS 10.13.5

    Description: for dist in pip.get_installed_distributions(): AttributeError: 'module' object has no attribute 'get_installed_distributions'

    What I've run: pip.get_installed_distributions()

    question response-needed 
    opened by say2sankalp 4
  • Update latest monthly hiring post ids (June 2018)

    Update latest monthly hiring post ids (June 2018)

    Ask HN: Who is hiring? https://news.ycombinator.com/item?id=TBD

    Ask HN: Freelancer? Seeking freelancer? https://news.ycombinator.com/item?id=TBD

    Ask HN: Who wants to be hired? https://news.ycombinator.com/item?id=TBD

    If you'd like to contribute on a bite-sized issue, feel free to submit a pull request for next month's set of hiring post ids.

    Check out these PRs as a reference:

    • https://github.com/donnemartin/haxor-news/pull/23
    • https://github.com/donnemartin/haxor-news/pull/49
    • https://github.com/donnemartin/haxor-news/pull/64

    "Ask HN: Who wants to be hired?" isn't hooked up yet.

    enhancement help wanted 
    opened by donnemartin 4
  • Command for exiting 'haxor' terminal

    Command for exiting 'haxor' terminal

    Hi...

    I think it would be a good thing to have a command that can help exit from the haxor command line.

    Currently F10 is the key used for this purpose. However, in some terminals the key may be bound to some other function. Like in my case I am using the GNOME Terminal (3.6.2) that comes with Linux Mint. In this pressing F10 opens the file menu.

    Ctrl+C, exit, halt, quit don't work for quiting the haxor command line to get to the original command line. It would be great if such a functionality could be added.

    feature-request 
    opened by jashgala 4
  • Error in tests/run_test.py

    Error in tests/run_test.py

    I just ran the master and got this

    python tests/run_tests.py 
    ...................F.E........................................................
    ======================================================================
    ERROR: test_load_hiring_and_freelance_ids_invalid_url (test_config.ConfigTest)
    ----------------------------------------------------------------------
    Traceback (most recent call last):
      File "/Users/sankalp/Dev/haxor-news/tests/test_config.py", line 60, in test_load_hiring_and_freelance_ids_invalid_url
        os.remove('./downloaded_settings.py')
    FileNotFoundError: [Errno 2] No such file or directory: './downloaded_settings.py'
    
    ======================================================================
    FAIL: test_load_hiring_and_freelance_ids (test_config.ConfigTest)
    ----------------------------------------------------------------------
    Traceback (most recent call last):
      File "/Users/sankalp/Dev/haxor-news/tests/test_config.py", line 53, in test_load_hiring_and_freelance_ids
        assert self.hn.config.hiring_id != who_is_hiring_post_id
    AssertionError
    
    ----------------------------------------------------------------------
    Ran 76 tests in 7.678s
    
    FAILED (failures=1, errors=1)
    
    

    I need a good eye to understand whats wrong here!!

    duplicate enhancement 
    opened by say2sankalp 3
  • Changing the default colors

    Changing the default colors

    Hi,

    I am trying to configure the colors used by the haxor-news shell.

    It looks like you are using prompt_toolkit and pygmentize, but the style name seems to be hardcoded with "vim" as value. What is the intended method of configuring this setting?

    question 
    opened by kchr 3
  • Update README URLs based on HTTP redirects

    Update README URLs based on HTTP redirects

    Created with https://github.com/dkhamsing/frankenstein

    GitHub Corrected URLs

    | Was | Now | | --- | --- | | https://github.com/mitsuhiko/click | https://github.com/pallets/click |

    HTTPS Corrected URLs

    | Was | Now | | --- | --- | | http://codecov.io/github/donnemartin/haxor-news/branch.svg?branch=master | https://codecov.io/github/donnemartin/haxor-news/branch.svg?branch=master | | http://img.shields.io/license-apache-blue.svg | https://img.shields.io/license-apache-blue.svg |

    opened by ReadmeCritic 3
  • Need to sanitize comments

    Need to sanitize comments

    UnicodeEncodeError: 'charmap' codec can't encode character '\u200a' in position 14: character maps to <undefined> windows 7, using cmd and python 3.5

    while browsing comments, when reaching an unsupported character the entire screen fills up with a trace of the error

    bug 
    opened by pussinboot 3
  • Fix #167: Update latest monthly hiring post ids

    Fix #167: Update latest monthly hiring post ids

    Update bot values with February 2019 posts.

    Not sure where the value for "Ask HN: Who wants to be hired?" should be put?

    • the value is 19055164 for that
    opened by pahakalle 2
Releases(0.4.2)
  • 0.4.2(Apr 9, 2017)

    Changelog

    0.4.2 (2017-04-08)

    Bug Fixes

    • #94 - Update to prompt-toolkit 1.0.0, which includes a number of performance improvements (especially noticeable on Windows) and bug fixes.
    Source code(tar.gz)
    Source code(zip)
  • 0.4.1(May 30, 2016)

    Changelog

    0.4.1 (2016-05-30)

    Bug Fixes

    • #62 - Fix prompt-toolkit v1.0.0 hanging while autocompleting the hn view command. Revert back to prompt-toolkit v0.52. This bug only happens on Windows.
    Source code(tar.gz)
    Source code(zip)
  • 0.4.0(May 30, 2016)

    Changelog

    0.4.0 (2016-05-30)

    Features

    • #52 - Add exit and quit commands, which can be used instead of ctrl-d.
    • #53 - Allow clicking of urls in some terminals to open in a browser.

    Bug Fixes

    • #36 - Fix crash caused by Unicode comments on Windows.
    • #59 - Update to prompt-toolkit 1.0.0, which includes a number of performance improvements (especially noticeable on Windows) and bug fixes.
    • Fix some comments and docstrings.

    Updates

    • #48, #50 - Update latest monthly hiring post ids.
    • #56 - Update packaging dependencies based on semantic versioning.
    • Fix Config docstrings.
    • Update README:
      • Update intro
      • Add Hacker News discussion of haxor-news
      • Update comments discussion and examples
      • Update TODO
      • Fix urls based on redirects
      • Remove buggy Codecov graph
      • Add note about OS X 10.11 pip installation issue
    • Add Gemnasium dependencies management.
    • Update links in CONTRIBUTING.
    Source code(tar.gz)
    Source code(zip)
  • 0.3.1(May 24, 2016)

Owner
Donne Martin
Tech Lead @facebook
Donne Martin
A startpage configured aesthetically with terminal-esque link formatting

Terminal-y Startpage Setup Clone the repository, then make an unformatted.txt file following the specifications in example.txt. Run format.py Open ind

belkarx 13 May 01, 2022
A simple command line virtual operating system, written in python

Virtual operating system A simple virtual operating system written in python. (Under development). Currently, the following commands are supported: Co

B.Jothin kumar 7 Nov 15, 2022
A simple CLI productivity tool to quickly display the syntax of a desired piece of code

Iforgor Iforgor is a customisable and easy to use command line tool to manage code samples. It's a good way to quickly get your hand on syntax you don

Solaris 21 Jan 03, 2023
moviepy-cli: Command line interface for MoviePy.

Moviepy-cli is designed to apply several video editing in a single command with Moviepy as an alternative to Video-cli.

Kentaro Wada 23 Jun 29, 2022
CLI para o projeto Compilado (Newsletter e Podcast do Código Fonte TV)

Compilado CLI Automatização de tarefas através de linha de comando para a geração de assets para episódios do Compilado, a newsletter e podcast do can

Gabriel Froes 18 Nov 21, 2022
MiShell is a multi-platform, multi-architecture project based on the first version (MiShell32)

MiShell is a multi-platform, multi-architecture project based on the first version (MiShell32), which offers super super small reverse shell payloads great for injection in buffer overflow vulnerabil

Kamyar Hatamnezhad 0 Oct 27, 2022
Command-line parsing library for Python 3.

Command-line parsing library for Python 3.

36 Dec 15, 2022
Convert shellcode into :sparkles: different :sparkles: formats!

Bluffy Convert shellcode into ✨ different ✨ formats! Bluffy is a utility which was used in experiments to bypass Anti-Virus products (statically) by f

pre.empt.dev 305 Dec 17, 2022
A simple Python library that allows you to customize your CLI based output on Linux

Terminal-Colored-Print About A small module that allows to simply decorate strings on Linux terminals. I personally use it for multi-threaded project,

Francesco Milano 0 Dec 13, 2021
Python CLI for accessing CSCI320 PDM Database

p320_14 Python CLI for accessing CSCI320 PDM Database Authors: Aidan Mellin Dan Skigen Jacob Auger Kyle Baptiste Before running the application for th

Aidan Mellin 1 Nov 23, 2021
CLI tool to develop StarkNet projects written in Cairo

OpenZeppelin Nile ⛵ Navigate your StarkNet projects written in Cairo. Getting started Create a folder for your project and cd into it: mkdir myproject

OpenZeppelin 305 Dec 30, 2022
🐍The nx-python plugin allows users to create a basic python application using nx commands.

🐍 NxPy: Nx Python plugin This project was generated using Nx. The nx-python plugin allows users to create a basic python application using nx command

StandUP Communications 74 Aug 31, 2022
Find your broken links, so users don't.

PyAnchor Dead links are an annoyance for websites with an extensive amount of content. A side from the negative impact on SEO, dead links are an annoy

Ricky White 61 Dec 14, 2022
Tablicate - Python library for easy table creation and output to terminal

Tablicate Tablicate - Python library for easy table creation and output to terminal Features Column-wise justification alignment (left, right, center)

3 Dec 14, 2022
PyDropper - pick colors everywhere

PyDropper - pick colors everywhere Downloads Settings PyDropper is an eyedropper

Herman Brunberg 2 Jan 04, 2022
Tmux Based Dropdown Dashboard For Python

sextans It's a private configuration and an ongoing experiment while I use Archlinux. A simple drop down dashboard based on tmux. It includes followin

秋葉 4 Dec 22, 2021
🌈 Lightweight Python package that makes it easy and fast to print terminal messages in colors. 🌈

🌈 Colorist for Python 🌈 Lightweight Python package that makes it easy and fast to print terminal messages in colors. Prerequisites Python 3.9 or hig

Jakob Bagterp 1 Feb 05, 2022
Albert launcher extension for converting units of length, mass, speed, temperature, time, current, luminosity, printing measurements, molecular substance, and more

unit-converter-albert-ext Extension for converting units of length, mass, speed, temperature, time, current, luminosity, printing measurements, molecu

Jonah Lawrence 2 Jan 13, 2022
CLI tool to fix linked references for dates.

Fix Logseq dates This is a CLI tool to fix the date references following a change in date format since the current version (0.4.4) of Logseq does not

Isaac Dadzie 5 May 18, 2022
Fast as FUCK nvim completion. SQLite, concurrent scheduler, hundreds of hours of optimization.

Fast as FUCK nvim completion. SQLite, concurrent scheduler, hundreds of hours of optimization.

i love my dog 2.8k Jan 05, 2023