Those are my blogs
and also my life
服务器安装R
2021-11-20 R
1. Install conda 1.1 查看最新版本的下载链接,使用wget获取 wget https://repo.anaconda.com/archive/Anaconda3-5.3.1-Linux-x86_64.sh 1.2 利用bash安装,按回车或yes知道安装完成 bsh ... Read More
VS code install and settings.
2021-11-12 VSCode
1. Extensions: LaTeX Workshop Markdown Preview Enhanced 2. setting.json { "workbench.colorTheme": "Monokai", ... Read More
Sublime text 3 install and settings on WIN10.
2021-11-12 Sublime
1. Install Softwares Sublime text 3 Texlive SumatraPDF Add paths to system environment variables, including E:\Sublime3\ E:\Sublime3\SumatraPDF\ ... Read More
Python | Using ctypes to access C code from Python.
2020-04-10 Pyhon C ctypes
This blog introduce how to use ctypes to access C code from Python. 1 C code Here, we use the same C code as my previous blog: #include <math.h> ... Read More
Python | Make a Python C Extension Module Using Python/C API.
2020-04-05 Pyhon C Python/C API Package
This blog introduce how to make a Python C extension module by using Python/C API. The demo package used here can be found on my Github repository. 1 ... Read More
Create my blog.
2020-03-29 Hugo
今天建立了blog,以下是对该过程的一个回顾与总结。 1 Git以及Hugo安装及配置 这一块在网上有很多教程,也没遇到什么难点,在此略过。 2 使用Hugo建立本地Blog 这一块主要参考Oh oh的博客进行建立,具体过程如下: 2.1 创建站点 首先创建站点: # cd d:blog hogo ... Read More