最新 最热

数据库Go-sqlx实战

一. 命令行安装go get github.com/jmoiron/sqlx二. model设计package modelimport "time"type User_Sqlx struct { UserId int `db:"user_id"` UserName string `db......

2022-10-20
0

用 watch 命令的 Linux 观察命令和任务

watch 命令是 procps-ng 包的一部分,所以如果你是在 Linux 上,你已经安装了它。

2021-09-27
0

Mac电脑 - 解决 brew install 报错Error: /usr/local/Homebrew is not writable. 的问题

问题背景brew install autojumpError: /usr/local/Homebrew is not writable. You should change theownership and permissions of /usr/local/Homebrew back to youruser ...

2021-06-01
0

Octave配置问题

https://sourceforge.net/projects/aquaterm/

2020-03-03
0

Mac 下安装及配置 ProxyChains-NG 实现终端下代理

使用 Homebrew 安装brew install proxychains-ng配置vim /usr/local/etc/proxychains.conf 增加如下配置:image.png

2019-08-20
0

mac os 安装 brew

Install BrewInstall Homebrew$ cd /usr/local/$ mkdir homebrew$ sudo chown -R $(whoami) /usr/local/homebrew$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githu...

2019-03-14
0

Leetcode 226. Invert Binary Tree

Invert a binary tree. 4 / 2 7 / / 1 3 6 9to 4 / 7 2 / / 9 6 3 1Trivia:This problem was inspired by...

2018-01-12
0