V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  lululau  ›  全部回复第 3 页 / 共 103 页
回复总数  2056
1  2  3  4  5  6  7  8  9  10 ... 103  
~/.gitconfig:

[user]
email = [email protected]
name = Zhang San
[includeIf "hasconfig:remote.*.url:*://*gitlab.mycompany.com*/**"]
path = .gitconfig_mycompany

~/.gitconfig_mycompany:

[user]
email = [email protected]
name = Zhang San
171 天前
回复了 ccOfd 创建的主题 生活 我们市那边, 中考出成绩了,
冷知识:中考和高考看的不是分数;所以你当年的分数和今天的分数没有可比性
178 天前
回复了 WhiteSJ 创建的主题 汽车 有小孩真的需要一辆车吗?
一线城市,打车比自己开车方便,自己开车去医院一般是,孩子妈妈带孩子先下车进医院,自己排队等停车,孩子都看完医生开完药了,还没排到进停车场。。。
184 天前
回复了 xiaoyuesanshui 创建的主题 Apple MBP 该侧重 M2/3/4 还是大 RAM 和存储
如果文档是指文字表格幻灯片文档的话,那这个需求最好的选择是 M3 MBA ,MBP 更厚更重,更好的性能和更好的屏幕都用不上
Time Machine 速度跟磁盘速度没太大关系
你先试试打开:sudo sysctl debug.lowpri_throttle_enabled=0
cp -r project_a project_a2
还自然排序,有够扯的

man 2 getdirentries

getdirentries() reads directory entries from the directory referenced by
the file descriptor fd into the buffer pointed to by buf, in a filesystem
independent format. Up to nbytes of data will be transferred. Nbytes
must be greater than or equal to the block size associated with the file,
see stat(2). Some filesystems may not support getdirentries() with
buffers smaller than this size.

The data in the buffer is a series of dirent structures (see dir(5)) The
order of the directory entries vended out via getdirentries() is not
specified. Some filesystems may return entries in lexicographic sort
order and others may not.
摩托车不算机动车吗,堵车的话,四轮机动车堵,两轮的机动车就不堵了?什么原理?
208 天前
回复了 AaronNia 创建的主题 软件 marginnote 4 又要收费,如何看待新版功能?
哪里每年更新一个版本了。。。从 3 到 4 用了 4 年时间吧,而且也没觉得有什么重要的新功能。。。
Magit: 我不是针对谁,我是说,在座的各位都是垃圾,我让小弟上就行了,Neogit, 你先上
Neogit: 好的,老大。git clone -b neogit https://github.com/lululau/nvchad-starter.git ~/.config/nvim && cp ~/.config/nvim/magit /usr/local/bin/; cd $PROJECT_DIR; magit
从 OS X 10.4 Tiger 一路上升来的,没感觉到明显的卡顿
219 天前
回复了 czd670 创建的主题 Apple Mac 远程 Mac,什么方案比较靠谱?
最靠谱的方式通过 VPN 放到一个网里,然后 ssh 还是 VNC 就随意了

VPN 也有两种方案:1. 公司有 VPN Server 2. 家里装个有外网 IP 的宽带,在家里开个 VPN Server
222 天前
回复了 liv22 创建的主题 长沙 120w 是买长沙还是广州?
120W ?买个充电头还要考虑在什么地方买?这么考究吗😅
把系统管理(包括 Homebrew 安装)的 Python 挂载到 pyenv 管理:
```
if [ -z "$HOMEBREW_PREFIX" ]; then
if [ -e "/opt/homebrew/bin/brew" ]; then
HOMEBREW_PREFIX="/opt/homebrew"
else
HOMEBREW_PREFIX="/usr/local"
fi
fi

mkdir -p ~/.pyenv/versions

if [ -e "$HOMEBREW_PREFIX/Cellar/python@2" ]; then
ln -nfs $HOMEBREW_PREFIX/Cellar/python@2/2*(On[1]) ~/.pyenv/versions/
ln -nfs $HOMEBREW_PREFIX/Cellar/python@2/2*(On[1]) ~/.pyenv/versions/2
fi

if [ -e "$HOMEBREW_PREFIX/Cellar/[email protected]" ]; then
ln -nfs $HOMEBREW_PREFIX/Cellar/[email protected]/3*(On[1]) ~/.pyenv/versions/
ln -nfs $HOMEBREW_PREFIX/Cellar/[email protected]/3*(On[1]) ~/.pyenv/versions/3
ln -nfs $HOMEBREW_PREFIX/Cellar/[email protected]/3*(On[1]) ~/.pyenv/versions/3.12
fi

if [ -e "$HOMEBREW_PREFIX/Cellar/[email protected]" ]; then
ln -nfs $HOMEBREW_PREFIX/Cellar/[email protected]/3*(On[1]) ~/.pyenv/versions/3.11
fi

if [ -e "$HOMEBREW_PREFIX/Cellar/[email protected]" ]; then
ln -nfs $HOMEBREW_PREFIX/Cellar/[email protected]/3*(On[1]) ~/.pyenv/versions/3.10
fi


if [ -e "$HOMEBREW_PREFIX/Cellar/[email protected]" ]; then
ln -nfs $HOMEBREW_PREFIX/Cellar/[email protected]/3*(On[1]) ~/.pyenv/versions/3.9
fi

if [ -e "$HOMEBREW_PREFIX/Cellar/[email protected]" ]; then
ln -nfs $HOMEBREW_PREFIX/Cellar/[email protected]/3*(On[1]) ~/.pyenv/versions/3.8
fi

cd ~/.pyenv/versions/3/bin
cp -Rf python3.12 python3
cp -Rf python3 python
cp -Rf pip3.12 pip3
cp -Rf pip3 pip
cp -Rf pydoc3.12 pydoc3
cp -Rf python3.12-config python3-config
cp -Rf 2to3-3.12 2to3
cp -Rf idle3.12 idle3
ln -nfs wheel3.12 wheel3

if [ -e ~/.pyenv/versions/3.11 ]; then
cd ~/.pyenv/versions/3.11/bin
cp -Rf python3.11 python3
cp -Rf python3 python
cp -Rf pip3.11 pip3
cp -Rf pip3 pip
cp -Rf pydoc3.11 pydoc3
cp -Rf python3.11-config python3-config
cp -Rf 2to3-3.11 2to3
cp -Rf idle3.11 idle3
ln -nfs wheel3.11 wheel3
fi

if [ -e ~/.pyenv/versions/3.10 ]; then
cd ~/.pyenv/versions/3.10/bin
cp -Rf python3.10 python3
cp -Rf python3 python
cp -Rf pip3.10 pip3
cp -Rf pip3 pip
fi

if [ -e ~/.pyenv/versions/3.9 ]; then
cd ~/.pyenv/versions/3.9/bin
cp -Rf python3.9 python3
cp -Rf python3.9 python
cp -Rf pip3.9 pip3
cp -Rf pip3.9 pip
fi

if [ -e ~/.pyenv/versions/3.8 ]; then
cd ~/.pyenv/versions/3.8/bin
cp -Rf python3.8 python3
cp -Rf python3.8 python
cp -Rf pip3.8 pip3
cp -Rf pip3.8 pip
fi
```
247 天前
回复了 fusi 创建的主题 Visual Studio Code 想找一种 vscode 扩展
我也是这么用的,不过是在 Emacs 里:

```
(let ((result '()))
(dolist (elem (append lx/dirs lx/demo-files lx/config-files lx/org-files lx/cheatsheets lx/server-files) result)
(let ((kbd (nth 0 elem))
(func-name (nth 1 elem))
(dir (nth 2 elem)))
(eval `(lx/make-open-file-function ,func-name ,dir))
(add-to-list 'result kbd t)
(add-to-list 'result (intern (format "lx/open-file-%s" func-name)) t)))
(apply 'spacemacs/set-leader-keys result))
```

我觉得你可以尝试自己实现一下,顺便也就学会用 vscode 了
249 天前
回复了 lucasj 创建的主题 程序员 推荐几个你一直在用的开源项目工具
1  2  3  4  5  6  7  8  9  10 ... 103  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   1616 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 43ms · UTC 16:28 · PVG 00:28 · LAX 08:28 · JFK 11:28
Developed with CodeLauncher
♥ Do have faith in what you're doing.