harttle.github.io
                                
                                
                                
                                    harttle.github.io copied to clipboard
                            
                            
                            
                        Harttle Land 的源码和文章
# Vim中如何快速进行光标移动? | Harttle Land [http://harttle.land/2015/11/07/vim-cursor.html](http://harttle.land/2015/11/07/vim-cursor.html)
# Shell 的相关概念和配置方法 | Harttle Land 使用Linux的过程中少不了使用各种各样的Shell,而根据启动环境的不同,Shell会读取不同的配置文件。本文便来详细介绍这些不同名字的配置文件在何时会被Shell读取。什么是 ShellShell(Unix Shell)是一种命令行解释器,是Un... [https://harttle.land/2016/06/08/shell-config-files.html](https://harttle.land/2016/06/08/shell-config-files.html)
# Effective C++ 25:考虑实现一个不抛异常的swap | Harttle Land 提供一个更加高效的,不抛异常的公有成员函数(比如`Widget::swap`)。在你类(或类模板)的同一命名空间下提供非成员函数`swap`,调用你的成员函数。如果你写的是类而不是类模板,请偏特化`std::swap`,同样应当调用你的成员函数。调用... [https://harttle.land/2015/08/23/effective-cpp-25.html](https://harttle.land/2015/08/23/effective-cpp-25.html)
# Vim初级:配置和使用 | Harttle Land Vim是从vi发展出来的一个文本编辑器。代码补全、编译及错误跳转等方便编程的功能特别丰富,在程序员中被广泛使用。和Emacs并列成为类Unix系统用户最喜欢的编辑器。文档参见:http://vimdoc.sourceforge.net/htmldoc... [https://harttle.land/2013/11/08/vim-config.html](https://harttle.land/2013/11/08/vim-config.html)
# 表单提交:button input submit 的区别 [http://harttle.land/2015/08/03/form-submit.html](http://harttle.land/2015/08/03/form-submit.html)
# 在VIM下写C++能有多爽? - Harttle Land [http://harttle.land/2015/07/18/vim-cpp.html](http://harttle.land/2015/07/18/vim-cpp.html)
# Chrome 80 跨域 Cookie 变化的影响和应对方案 | Harttle Land 根据 时间线 Chrome 80 稳定版本将在 2020-02-04 发布。它的 变更列表 中有两项 Cookie 安全 相关的变更,对非安全连接下的 Cookie 设置和 Cookie 跨于发送做了更多限制。这意味着通过 Cookie 跨域跟踪用户... [https://harttle.land/2020/01/27/secure-cookies.html](https://harttle.land/2020/01/27/secure-cookies.html)
# Web开发中跨域的几种解决方案 | Harttle Land [http://harttle.land/2015/10/10/cross-origin.html](http://harttle.land/2015/10/10/cross-origin.html)
# C++11有哪些新特性? | Harttle Land C++是一门伟大的语言,永远给程序员最大的设计自由,未使用的特性从不产生副作用,新版本永远完全兼容旧版本。C++11先前被称作C++0x,即ISO/IEC 14882:2011,是C++编程语言的一个标准。 之前的C++标准包括C++98、C++0... [https://harttle.land/2015/10/08/cpp11.html](https://harttle.land/2015/10/08/cpp11.html)
# Vim 寄存器完全手册 | Harttle Land 常见文本编辑器都会提供剪切板来支持复制粘贴,Vim 也不例外。不同的是 Vim 提供了 10 类共 48 个寄存器,提供无与伦比的寄存功能。最常用的 y 操作将会拷贝到默认的匿名寄存器中,我们也可以指定具体拷贝到哪个寄存器中。一般来讲,可以用 [https://harttle.land/2016/07/25/vim-registers.html](https://harttle.land/2016/07/25/vim-registers.html)