npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@kurone-kito/dantalion-cli

v0.19.2

Published

CLI frontend that calculates the personality from the birthday.

Downloads

129

Readme

🦁 Dantalion: CLI version

npm version lerna

“Dantalion” is the seventy-first demon in the demonological grimoire, the Lesser Key of Solomon. He teaches all kinds of academic knowledge, but he can also read and manipulate others’ hearts.

If you can predict the other person’s character, you can increase the possibility of controlling the other person’s will. This package provides a function that infers the personality details from the specified birthday. By using this package, you can quickly implement birthday divination in your Node.js apps. Its calculation is using the method of Four Pillars of Destiny (Ba-Zi).

Note

  • This package can specify a birthday within the range from February 1, 1873, to December 31, 2050.
  • This package does not consider time zones. If you are not satisfied with the inferred personality, moving the date back and forth may solve.

Usage

  • Require: Node.js >= v12.1
  • OS independent (It's a terminal app)

Install

npm install -g @kurone-kito/dantalion-cli

Get the personality

If you want the human-readable result (Markdown)

NOTE: It omits some minor information.

dantalion personality 1993-10-09
# Dantalion: The personality of the person whose birthday is Sat Oct 09 1993 and how to handle them.

## Major categories of personality

There are three main types of humans personality: “Focused on authority”, “Focused on economically”, and “Focused on humanely”.

### Focused on economically

    * This personality type is the pursues efficiency, with the underlying ego being for the sake of one's own wealth.
    * They tend to be specs-oriented and tend to disrespect brands. However, some rare people consider brands to be a kind of specs and place importance on them.
    * They cannot listen to long conversations very well. So they try to understand only the main points and tend to think or say, “in a nutshell...”.

:
:

If you want the JSON formatted result

dantalion personality --raw 1993-10-09
{
  "cycle": 10,
  "inner": "555",
  "lifeBase": "application",
  "outer": "789",
  "potential": ["Io", "Ii"],
  "workStyle": "125"
}

Get detailed information on personality

If you want the human-readable result (Markdown)

NOTE: It omits some minor information.

dantalion details 555
# Dantalion: Details of people whose personality type is classified as 555, and how to handle them.

## Major categories of personality

There are three main types of humans personality: “Focused on authority”, “Focused on economically”, and “Focused on humanely”.

### Focused on economically

    * This personality type is the pursues efficiency, with the underlying ego being for the sake of one's own wealth.
    * They tend to be specs-oriented and tend to disrespect brands. However, some rare people consider brands to be a kind of specs and place importance on them.
    * They cannot listen to long conversations very well. So they try to understand only the main points and tend to think or say, “in a nutshell...”.

    :
    :

If you want the JSON formatted result

dantalion details --raw 555
{
  "affinity": {
    "biz": {
      "100": 0,
      "108": 3,
      "125": 2,
      "555": 3,
      "789": 1,
      "888": 2,
      "919": 1,
      "000": 0,
      "001": 2,
      "012": 2,
      "024": 0,
      "025": 0
    },
    "love": {
      "100": 0,
      "108": 0,
      "125": 3,
      "555": 2,
      "789": 2,
      "888": 2,
      "919": 0,
      "000": 2,
      "001": 2,
      "012": 3,
      "024": 0,
      "025": 2
    }
  },
  "brain": "left",
  "communication": "fix",
  "management": "hope",
  "motivation": "skillUp",
  "position": "quick",
  "response": "action",
  "vector": "economically"
}

Get the types list of personality

dantalion details
# Dantalion: List of available personality type codes

    * 000
    * 001
    * 012
    * 024
    * 025
    * 100
    * 108
    * 125
    * 555
    * 789
    * 888
    * 919

See also

License

MIT