随笔分类 -  程序开发

1 2 3 4 5 ··· 10 下一页
摘要:按 Ctrl+Shift+P 搜 user settings 出来 Setttings界面后, 再搜 vim.handleKeys "vim.handleKeys": { "<C-a>": false, "<C-c>": false, "<C-v>": false, "<C-x>": false, 阅读全文
posted @ 2026-04-14 19:20 dewxin 阅读(2) 评论(0) 推荐(0)
摘要:本文由ChatGPT生成 You don’t actually need GLAD specifically—but you do need *something like it when using modern OpenGL. Here’s why. The core problem: Open 阅读全文
posted @ 2026-04-14 15:40 dewxin 阅读(3) 评论(0) 推荐(0)
摘要:本文由 ChatGPT 生成 Here’s a clean, practical way to set up C/C++ debugging in VS Code on Windows (since you’re using cl.exe and MSVC). 🧰 1. Install requi 阅读全文
posted @ 2026-04-13 01:43 dewxin 阅读(8) 评论(0) 推荐(0)
摘要:随着版本的更新,.net平台 已经可以使用dotnet run ./TEST.cs 直接运行单一的C#文件,但有时候我们又想调试代码,这该怎么办呢? 首先,我们需要确定dotnet生成的可执行文件的位置, 这里在linux中可以使用 locate TEST , TEST就是 C#文件的名字。 #:s 阅读全文
posted @ 2026-04-05 14:53 dewxin 阅读(3) 评论(0) 推荐(0)
摘要:Install Mono sudo apt install mono-devel If you built Mono from source and installed into /usr/local, make sure: headers: /usr/local/include/mono-2.0 阅读全文
posted @ 2026-04-02 16:36 dewxin 阅读(5) 评论(0) 推荐(0)
摘要:https://askubuntu.com/questions/29284/how-do-i-mount-shared-folders-in-ubuntu-using-vmware-tools Experts. I've successfully installed VMware tools for 阅读全文
posted @ 2026-04-02 14:54 dewxin 阅读(10) 评论(0) 推荐(0)
摘要:本文 通过 询问 ChatGPT 获得信息。 首先,我们需要获得Mono源码 , 进入Github下载页面点击下载 然后 我们可以在VMware中安装Ubuntu系统,接着将下好的 源码压缩文件拷贝进去,然后解压。 解压完成后,我们 运行 下面的脚本来获得debug版本的mono ./autogen 阅读全文
posted @ 2026-04-01 15:45 dewxin 阅读(3) 评论(0) 推荐(0)
摘要:转自 https://blog.csdn.net/qq_34160841/article/details/113058756 一般在虚拟机下安装ubuntu系统时,开始分配的硬盘空间会比较小,随着使用的增加发现硬盘不够用了,那应该怎么办呢?重装系统?显然不是,只需要给虚拟机系统硬盘扩容即可。虚拟机系 阅读全文
posted @ 2026-03-31 22:35 dewxin 阅读(42) 评论(0) 推荐(0)
摘要:/DEBUG (Generate debug info) /DEBUG[:{FASTLINK|FULL|NONE}] The /DEBUG linker option creates a debugging information file for the executable. /DEBUG 用于 阅读全文
posted @ 2026-03-26 21:39 dewxin 阅读(4) 评论(0) 推荐(0)
摘要:/c (Compile Without Linking) 只编译不链接。 Compile or assemble the source files, but do not link. Compiling with /c creates .obj files only. You must call L 阅读全文
posted @ 2026-03-26 21:20 dewxin 阅读(5) 评论(0) 推荐(0)
摘要:Variables Basics Jam variables are lists of zero or more elements, with each element being a string value. An undefined variable is indistinguishable 阅读全文
posted @ 2026-03-24 09:42 dewxin 阅读(6) 评论(0) 推荐(0)

1 2 3 4 5 ··· 10 下一页