搜索 “Cursor” ,共找到 74 项结果
×
  • git-stash 用法小结

    发现有一个类是多余的,想删掉它又担心以后需要查看它的代码,想保存它但又不想增加一个脏的提交。这时就可以考虑git stash。 使用git的时候,我们往往使用分支(branch)解决任务切换问题,例如,我们往往会建一个自己的分支去修改和调试代码, 如果别人或者自己发现原有的分支上有个不得不修改的bug,我们往往会把完成一半的代码commit提交到本地仓...

    2020-01-23 06:58 Falcon 阅读
  • 树莓派3b 安装openwrt

    https://downloads.openwrt.org/releases/19.07.0/targets/brcm2708/bcm2710/openwrt-19.07.0-brcm2708-bcm2710-rpi-3-squashfs-factory.img.gz 插入并启动树莓派3B+,顺便接上键盘和显示器,你会看...

    2020-01-19 18:25 Falcon 阅读
  • [科普向]2.4G信道怎么选?

    今天我们来讲讲路由器信道的问题,这里主要讲2.4G频段的信道怎么选。            首先,我们来看下2.4G信道划分图!      由于地区的不同,有些设备不支持11以上的信道,所以我们重点选择1到11信道来讲解。  &n...

    2020-01-19 05:20 Falcon 阅读
  • A (Mostly) Complete Guide to the WordPress Rewrite API

    The WordPress, Rewrite API is like a mythical creature. Not many know it exists, and few still know how to tame it. In this article, we’ll cover the basics of...

    2020-01-09 04:56 Falcon 阅读
  • TinyMCE自定义键盘快捷键

    Keyboard shortcuts and text editors are nigh-inseparable in the world of content editing productivity. You’ll be hard-pressed to find any WYSIWYG text editor without a solid...

    2020-01-03 03:08 Falcon 阅读
  • kali 使用x11vnc

    Solution: I would recommend using x11vnc as it provides the actual desktop experience rather than a virtual one. To install x11vnc enter the following comma...

    2020-01-01 05:03 Falcon 阅读
  • 彻底弄懂 Nginx location 匹配

    Nginx 的 location 实现了对请求的细分处理,有些 URI 返回静态内容,有些分发到后端服务器等,今天来彻底弄懂它的匹配规则 一个最简单的 location 的例子如下 server { server_name website.com; location /admin/ { # The configurati...

    2019-12-30 03:46 Falcon 阅读
  • CentOS 8.0配置阿里云yum源和epel源

    # cat /etc/redhat-release # cd /etc/yum.repos.d # vim CentOS-AppStream.repo baseurl=https://mirrors.aliyun.com/centos/$releasever/AppStream/$basearch/os/ # vim CentOS-Base....

    2019-12-16 10:47 Falcon 阅读
  • OSChina 周六乱弹 —— 别听他们的,你不胖你只是毛茸茸的

    Osc乱弹歌单(2019)请戳(这里) 【今日歌曲】 @且无需多言 :分享Rise Against的单曲《Audience Of One (Ghost Note Symphonies)》: 硬核朋克不插电版本,隐藏在喧嚣下的柔情! 《Audience Of One (Ghost Note Symphonies)》- Rise Against...

    2019-12-13 18:43 小小编辑 阅读
  • 使用Supervisor管理任务

    安装:yum install supervisor 修改配置文件:vi /etc/supervisord.conf [unix_http_server] file=/var/run/supervisor.sock ; UNIX socket 文件,supervisorctl 会使用 ;chmod=0700...

    2019-12-07 00:30 Falcon 阅读