Skip to content

Instantly share code, notes, and snippets.

View aucker's full-sized avatar
🎯
Focusing

Aucker aucker

🎯
Focusing
View GitHub Profile
@aucker
aucker / beginners_ubuntu.md
Created March 15, 2023 07:33 — forked from bkanhu/beginners_ubuntu.md
A Beginners Guide on Things To Do After Installing Ubuntu.

Beginners Ubuntu

A Beginners Guide To Things To Do After Installing Ubuntu.

1. Check For Updates

sudo apt update && sudo apt upgrade

2. Enable additional repositories for more software

Ubuntu has several repositories from where it provides software for your system. Enabling all these repositories will give you access to more software and proprietary drivers.

@aucker
aucker / nlp-resource.md
Last active April 17, 2023 13:09
Some resources about NLP I find, papers, GitHub repos, etc.

NLP resources🤓

Knowledge Graph

  1. Agriculture Knowledge Graph 这个框架在非常多的研究生学位论文中出现,总体框架已经搭好,需要修改其中的知识图谱源数据,然后更新一下相应的页面,一个看似很有工作量的论文就出来了,尤其是在构建章节。这个仓库里的东西很丰富,在构建的时候主要可以参考这个。 图片示例
  2. Knowledge graph builder and consultant 又一个问答相关的知识图谱,通过使用LTP工具进行分词、语义、三元组抽取等操作。主要利用爬虫相关技术获取数据,之后再将数据装入Neo4j中进行可视化。最终问答界面示例如下:示例.

Models

  1. ALBERT
@aucker
aucker / README.md
Created October 20, 2023 19:36 — forked from paolocarrasco/README.md
How to understand the `gpg failed to sign the data` problem in git

Problem

You have installed GPG, then tried to commit and suddenly you see this error message after it:

error: gpg failed to sign the data
fatal: failed to write commit object

Debug

@aucker
aucker / effective_modern_cmake.md
Created October 24, 2023 00:23 — forked from mbinna/effective_modern_cmake.md
Effective Modern CMake

Effective Modern CMake

Getting Started

For a brief user-level introduction to CMake, watch C++ Weekly, Episode 78, Intro to CMake by Jason Turner. LLVM’s CMake Primer provides a good high-level introduction to the CMake syntax. Go read it now.

After that, watch Mathieu Ropert’s CppCon 2017 talk Using Modern CMake Patterns to Enforce a Good Modular Design (slides). It provides a thorough explanation of what modern CMake is and why it is so much better than “old school” CMake. The modular design ideas in this talk are based on the book [Large-Scale C++ Software Design](https://www.amazon.de/Large-Scale-Soft

@aucker
aucker / Git_Behind_Proxy.md
Last active November 24, 2023 13:26 — forked from ozbillwang/Git_Behind_Proxy.md
Configure Git to use a proxy (https or SSH+GIT)