12 2021 档案

windows7下安装curl
摘要:Windows 7 上安装 curl-百度经验 (baidu.com) 下载地址 curl 选择64位 然后解压,将解压后的路径设置为系统变量 在cmd中输入>curl --version,若有版本号,则按照成功 阅读全文

posted @ 2021-12-31 09:29 风中狂笑 阅读(1609) 评论(0) 推荐(0) 编辑

Failed to connect to github.com port 443:connection timed out
摘要:解决 Failed to connect to github.com port 443:connection timed out_五味鱼头的草稿纸-CSDN博客 在mac中这样查询代理地址和端口 Mac系统设置代理 - 知乎 (zhihu.com) 还有一个没试过,前面两个帖子已经解决问题 GitH 阅读全文

posted @ 2021-12-30 21:05 风中狂笑 阅读(640) 评论(0) 推荐(0) 编辑

mac下安装homebrew清华大学镜像
摘要:不是很顺利 homebrew | 镜像站使用帮助 | 清华大学开源软件镜像站 | Tsinghua Open Source Mirror 第一步,使用清华大学的镜像,否则会出现这个问题 Mac安装Homebrew的正确姿势 - 简书 (jianshu.com) 使用如下命令 # 手动设置 expor 阅读全文

posted @ 2021-12-29 22:37 风中狂笑 阅读(893) 评论(0) 推荐(0) 编辑

windows下gvim vundle的使用
摘要:官方帮助 Vundle for Windows · VundleVim/Vundle.vim Wiki (github.com) 参考帮助 Windows下 vundle的安装和使用 - QIYUEXIN - 博客园 (cnblogs.com) Requirements Git Curl Git o 阅读全文

posted @ 2021-12-29 09:48 风中狂笑 阅读(190) 评论(0) 推荐(0) 编辑

git不是内部或外部命令,也不是可运行的程序 或批处理文件
摘要:设置环境变量 C:\Git\mingw64\libexec\git-core;C:\Git\bin; 然后在cmd中输入>git --version 出现版本号即可 阅读全文

posted @ 2021-12-28 22:07 风中狂笑 阅读(284) 评论(0) 推荐(0) 编辑

Error: jedi-vim failed to initialize Python: jedi-vim requires Vim with support for Python 2 or 3
摘要:在gvim中安装了这个插件 Error: jedi-vim failed to initialize Python: jedi-vim requires Vim with support for Python 2 or 3 · Issue #1018 · davidhalter/jedi-vim ( 阅读全文

posted @ 2021-12-28 11:22 风中狂笑 阅读(806) 评论(1) 推荐(0) 编辑

gvim中vim-plug插件管理器的使用
摘要:首先是下载插件管理器 junegunn/vim-plug: Minimalist Vim Plugin Manager (github.com) 可以用打开powershell用命令行来下载plug.vim这个文件, 但没啥用,于是我就直接下载这个Plug.vim文件 但是我下载下来之后试了很多次都 阅读全文

posted @ 2021-12-26 16:00 风中狂笑 阅读(1562) 评论(0) 推荐(0) 编辑

mac下vscode中vim光标长按j或k无法快速移动的解决办法
摘要:在mac中按住j或k不动,是没有反应的,需要更改下设置以使得按住以后会连续移动。 解决mac下vscode等应用中vim光标无法快速移动_MacwinWin的博客-CSDN博客 holding down navigation button · Issue #345 · VSCodeVim/Vim ( 阅读全文

posted @ 2021-12-19 19:39 风中狂笑 阅读(2022) 评论(0) 推荐(0) 编辑

vscode setting sync 同步本地配置
摘要:官方的同步方法 Settings Sync in Visual Studio Code 之前写过用插件,settings sync,但官方的就有很好用诶 从vscode左上角齿轮处打开 Turning on Settings Sync# You can turn on Settings Sync u 阅读全文

posted @ 2021-12-18 12:36 风中狂笑 阅读(228) 评论(0) 推荐(0) 编辑

vscode integrated termail not working blank
摘要:vscode的集成terminal一片空白,啥也没有,就像下面图所示 搜索了大半天时间,原来之前为了某个问题,打开了兼容模式 去掉这个兼容模式,以管理员模式打开,于是正常了 阅读全文

posted @ 2021-12-17 21:36 风中狂笑 阅读(41) 评论(0) 推荐(0) 编辑

vscode下的C#控制台应用console
摘要:1、安装vscode和.NET Core 3.1 SDK Visual Studio Code - Code Editing. Redefined Download .NET Core 3.1 SDK (v3.1.416) - Windows x64 Installer (microsoft.com 阅读全文

posted @ 2021-12-17 10:07 风中狂笑 阅读(738) 评论(0) 推荐(0) 编辑

vscode中vim的配置
摘要:用起来还比较合适了,建议使用autohotkey将caplock映射为esc,但目前好像只能每次开机都设置下,不知道为什么 新建一个capslock.ahk的文件 #NoEnv SendMode, Input SetWorkingDir %A_ScriptDir% *CapsLock:: Escap 阅读全文

posted @ 2021-12-16 14:22 风中狂笑 阅读(929) 评论(0) 推荐(0) 编辑

使用C#编制一个控制台应用-竖曲线标高计算
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; namespace 竖曲线计算 { class Program { static void M 阅读全文

posted @ 2021-12-13 14:50 风中狂笑 阅读(89) 评论(0) 推荐(0) 编辑

c#使用GDI绘图
摘要:视屏教程C#基础 17、Winform应用程序_GDI绘图_哔哩哔哩_bilibili 代码如下 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using 阅读全文

posted @ 2021-12-13 14:46 风中狂笑 阅读(496) 评论(0) 推荐(0) 编辑

c#
摘要:Convert.ToInt32 Convert.ToDouble 阅读全文

posted @ 2021-12-07 14:58 风中狂笑 阅读(25) 评论(0) 推荐(0) 编辑

.net 安装与与使用
摘要:Download .NET (Linux, macOS, and Windows) (microsoft.com) Download .NET 6.0 SDK (v6.0.100) - Windows x64 Installer (microsoft.com) 阅读全文

posted @ 2021-12-02 10:02 风中狂笑 阅读(341) 评论(0) 推荐(0) 编辑

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
点击右上角即可分享
微信分享提示