All Projects → happyfish100 → fastkengine

happyfish100 / fastkengine

Licence: other
knowledge base engine

Programming Languages

c
50402 projects - #5 most used programming language
C++
36643 projects - #6 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to fastkengine

ultimate-defi-research-base
Here we collect and discuss the best DeFI & Blockchain researches and tools. Feel free to DM me on Twitter or open pool request.
Stars: ✭ 1,074 (+4569.57%)
Mutual labels:  knowledge-base
CONVEX
As far as we know, CONVEX is the first unsupervised method for conversational question answering over knowledge graphs. A demo and our benchmark (and more) can be found at
Stars: ✭ 24 (+4.35%)
Mutual labels:  knowledge-base
TheRoadOfSO
学习安全运营的记录 | The knowledge base of security operation
Stars: ✭ 286 (+1143.48%)
Mutual labels:  knowledge-base
knowledgeworks api
The API utils for querying CN-DBpedia & CN-Probase, the biggest Chinese knowledge bases
Stars: ✭ 24 (+4.35%)
Mutual labels:  knowledge-base
KMRC-Papers
A list of recent papers regarding knowledge-based machine reading comprehension.
Stars: ✭ 40 (+73.91%)
Mutual labels:  knowledge-base
harika
Offline-, mobile-first graph note-taking app focused on performance with the knowledgebase of any scale
Stars: ✭ 111 (+382.61%)
Mutual labels:  knowledge-base
Zincbase
A batteries-included kit for knowledge graphs
Stars: ✭ 249 (+982.61%)
Mutual labels:  knowledge-base
mind-flow
Another try of blogging or personal knowledge base
Stars: ✭ 22 (-4.35%)
Mutual labels:  knowledge-base
hugo-documentation-theme
📖 Project Docs / Knowledge Base template for Hugo Website Builder. 创建项目文档
Stars: ✭ 101 (+339.13%)
Mutual labels:  knowledge-base
gooseberry
A command line utility to generate a knowledge base from Hypothesis annotations
Stars: ✭ 103 (+347.83%)
Mutual labels:  knowledge-base
Knowledge-Base
record every requirement and solution here
Stars: ✭ 31 (+34.78%)
Mutual labels:  knowledge-base
good-reads
List of inspiring articles, blogs, tutorials and books. Tech stuff.
Stars: ✭ 14 (-39.13%)
Mutual labels:  knowledge-base
KGReasoning
Multi-Hop Logical Reasoning in Knowledge Graphs
Stars: ✭ 197 (+756.52%)
Mutual labels:  knowledge-base
gatsby-theme-primer-wiki
A Gatsby Theme for Wiki/Docs/Knowledge Base, which using Primer style as the UI theme, can work well with Foam or Obsibian or just markdown files.
Stars: ✭ 85 (+269.57%)
Mutual labels:  knowledge-base
unigraph-dev
A local-first and universal knowledge graph, personal search engine, and workspace for your life.
Stars: ✭ 512 (+2126.09%)
Mutual labels:  knowledge-base
barnsworthburning
A commonplace book.
Stars: ✭ 20 (-13.04%)
Mutual labels:  knowledge-base
osmosnote
The knowledge IDE
Stars: ✭ 69 (+200%)
Mutual labels:  knowledge-base
cheat-sheets
This is my personal knowledge-base. Here you'll find code-snippets, technical documentation, and command reference for various tools, and technologies.
Stars: ✭ 619 (+2591.3%)
Mutual labels:  knowledge-base
memo-dev
Knowledge base, Today I Learned, Cheatsheet ... Call this as you want ...
Stars: ✭ 13 (-43.48%)
Mutual labels:  knowledge-base
almanacs
A recipe for everything 🗒️
Stars: ✭ 47 (+104.35%)
Mutual labels:  knowledge-base

FastKEngine is a knowledge engine based keywords matching.

  • Format
[[base id=###]]

[[question id=###]]
  question1
  question2
  ...

[[answer key1=value1 ...]]
    the answer can be multi-lines

  • Notice
  the charset is UTF-8.

  multi questions correspond to one answer, question matchs success
  when all required keywords of a question are matched.

  you should segment Chinese words manually.

  the conditions like "key1=value1 key2=value2" in the answer is optional,
  eg. [[answer]] for no additional condition. the key and value can be quoted with
  double or single quotation marks. eg. [[answer uname="Linux"]]. value can be a
  function like FUNC(param1, param2, ...), support functions:
    IN(), such as: IN(Darwin,FreeBSD)

  the answer is composite when [[answer ...]] occurs many times after one [[question]].

  question keywords:
    * with a pipe line (|) for match any one of the keywords, eg.
      (core dump) location|position
      core-dump (location | position)

      hint: the second question use round brackets to ignore spaces with pipe line (|)

    * keywords quoted within  [ and ] are optional keywords, [...] must be
      the last part of the question. eg.
      file size descending [list | show]

    * multi English words as a matching keyword when:
        I.  minus sign (-) between multi words, such as core-dump, out-of-memory
        II. quoted with round brackets, such as (core dump), (out of memory)
      eg. "core-dump" matchs "core dump", "coredump" and "core-dump", but NOT match "dump core".

    * config file similars.txt for similar keywords which split by space or tab, such as:
      set setting config configure configuration
      OOM (out of memory) (out memory)
  • Example

[[base id=1101000000]]

[[question id=123]]
  如何 生成 core-dump
  core-dump 设置

[[answer]]
 1. ulimit -c 查看内核core dump文件的大小限制,输出为0表示不能生成core dump文件,此时需要进行如下设置:
 ulimit -c unlimited 

 [[answer uname=Linux]]
 如果ulimit -c unlimited  执行失败,需要设置系统文件/etc/security/limits.conf,注释掉如下行即可:
  *   soft    core            0
  *   hard    core            100000

 2. 通过sysctl检查和设置内核参数:
 kernel.core_pattern: 生成的core dump文件名,最好包含全路径
 fs.suid_dumpable:设置为1或2

 检查命令:
 [[cmd required/]] sysctl kernel.core_pattern fs.suid_dumpable

 设置命令:
 [[cmd required]]
 sudo sysctl -w kernel.core_pattern=/tmp/core.%p
 sudo sysctl -w fs.suid_dumpable=1
 [[/cmd]]

 [[answer uname=Darwin]]
 2. 通过sysctl检查和设置内核参数:
 kern.corefile: 生成的core dump文件名,最好包含全路径,例如:/cores/core.%P
 kern.coredump:设置为1
 kern.sugid_coredump:设置为1

 检查命令:
 [[cmd required/]] sysctl kern.corefile kern.coredump kern.sugid_coredump

 设置命令:
 [[cmd required]]
 sudo sysctl -w kern.corefile=/cores/core.%P
 sudo sysctl -w kern.coredump=1
 sudo sysctl -w kern.sugid_coredump=1
 [[/cmd]]


[[question id=124]]
  core-dump 位置

[[answer]]
 执行命令:

 [[answer uname=Linux]]
 [[cmd required/]] sysctl kernel.core_pattern

 [[answer uname=Darwin]]
 [[cmd required/]] sysctl kern.corefile

[[answer]]
  输出的是core dump文件位置


[[question id=125]]
  时间 降序 文件|目录|显示|列举|ls

[[answer]]
 ls 带上参数-t即可,例如:
 [[cmd required/]] ls -lt [filename]


[[question id=126]]
  时间 升序 文件|目录|显示|列举|ls

[[answer]]
 ls 带上参数-rt即可,例如:
 [[cmd required/]] ls -lrt [filename]

[[question id=127]]
  文件|目录|ls 大小 降序 [显示|列举]

[[answer]]
 ls 带上参数-S即可,例如:
 [[cmd required/]] ls -lS [filename]


[[question id=128]]
  文件|目录|ls 大小 升序 [显示|列举]

[[answer]]
 ls 带上参数-rS即可,例如:
 [[cmd required/]] ls -lrS [filename]


[[question id=129]]
  显示|列举 文件|目录
  ls

[[answer]]
 ls用于列举文件和目录,常用命令:
 显示详细文件列表:
 [[cmd/]] ls -l [filename]

 人性化地显示详细文件列表(文件大小显示非常直观):
 [[cmd/]] ls -lh [filename]

 每行只列出一个文件/目录名(shell脚本中常用做法):
 [[cmd/]] ls -1 [filename]

 [[answer uname=Linux]]
 ll 命令等价于 ls -l


[[question id=130]]
  删除 文件|目录
  rm

[[answer]]
 rm用于删除文件和目录,rm带上-r参数可以删除目录。常用命令:
 不询问删除文件:
 [[cmd/]] rm -f <filename>

 删除目录和子目录以及目录下的所有文件:
 [[cmd/]] rm -r <filepath>

 注意:文件和目录删除后不可恢复,请谨慎使用以上命令,尤其是rm -rf
       rm -rf 后面的filepath最好明确指定路径名称,尽量不要使用 *
       切勿尝试执行:rm -rf /


[[question id=131]]
  删除 空 目录
  rmdir

[[answer]]
 rmdir用于删除空目录,命令示例:
 [[cmd required/]] rmdir <filepath>

上述知识库示例中对应的近义词列表:

文件 文档 file
目录 directory dir
时间 日期 time date datetime
显示 展示 show
列举 列出 排列 list
降序 倒序 倒排 descending descend desc
升序 正序 顺序 ascending ascend asc
如何 怎样 how how-to
生成 产生 产出 形成 generate produce
大小 尺寸 size
位置 地方 哪儿 哪里 那儿 那里 position  location place
设置 设定 配置 set setting config configure configuration
删除 移除 delete remove
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].