×

Falcon

  • 《软技能——代码之外的生存指南》

    这本书是在逛知乎的时候发现的,说的神乎其神的,也没多想就买了本,并在一个周六的下午看完了,读的过程倒是很轻松,速度也挺快,因为毕竟是一本励志书,多少有点“鸡汤”。总体来说,这本书可圈可点,有干货,也有“鸡汤”,主要分为职业、自我营销、学习、生产力、理财、健身、精神七大模块,不论是不是码农,取其精华来安利一下自己...

    2020-05-20 06:38 Falcon 阅读
  • 关于Vimium 的 Tips and Tricks

    Moving in the Vomnibar’s list When the Vomnibar is open and there is a list of items, you can move down and up through them with the <Tab>/<Shift>&l...

    2020-05-19 08:11 Falcon 阅读
  • Go by Example

    Go is an open source programming language designed for building simple, fast, and reliable software. Go by Example is a hands-on introduction to Go using annotated examp...

    2020-05-16 15:04 Falcon 阅读
  • 30分钟上手GO语言--基础语法

    本章主要分成三个部分:第一部分包括基本语法和数据结构;第二部分讨论方法和接口;第三部分介绍并发机制。 包、变量和函数 先看一个例子Packages.go: package main import ( "fmt" "math/rand" ) func add(x int, y int) int { retu...

    2020-05-16 08:48 Falcon 阅读
  • [N1盒子] N1盒子armbian蓝牙连接详细步骤

    论坛里没有搜到特别详细的N1盒子连接蓝牙的教程,一些帖子提到但是要么不详细,要么对照操作无法成功,昨晚在刷了xiangsm提供的最新Armbian_5.77系统后,听说蓝牙驱动问题已经解决,于是决定尝试连接蓝牙,中间遇到一些坑,特地记录一下,供各位参考。1. 首先下载Armbian-5.77镜像包,因为做服务器用,所以我选的是debian无桌面版。https...

    2020-05-13 00:01 Falcon 阅读
  • 斐讯 N1、P1 安装 armbian 变身电脑主机

    0、前言 之前折腾过把 N1 刷成 armbian 桌面版,斐讯 N1、P1 安装 armbian 变身电脑主机可以当一台小电脑使用。后来觉得我没这个需求,所以就没去用它了。 现在我想把 N1 刷成 armbian 服务器版,不需要桌面环境。因为我觉得,我用小钢炮最主要也是用 docker 和 smb 而已,那这个我用 armbian 也可以实现,而且刷...

    2020-05-12 23:26 Falcon 阅读
  • php進行gzip壓縮,hyper-cache的做法

    使用gzencode函数压缩,需要检查函数是否存在,因为可能php并没安装或启用该扩展。 if (isset($options['gzip_on_the_fly']) && $hyper_cache_gzip_accepted && function_exists('gzencode')) { he...

    2020-05-12 17:17 Falcon 阅读
  • IIS7.0中GZIP启用动态内容压缩等问题

    以下內容出處:http://www.vuln.cn/1183IIS7.0下开启gzip教程,网上一搜一大把,但大家都能发现一个问题,教程都是复制粘贴的结果,如果我的教程和网上一样我就不会写了,我主要强调几点网上很少介绍到的。 在II7.0中的gzip压缩与II6的功能差距还是比较大的,II6中定义压缩的文件类型是以文件后缀来区别的,而II7中则是根据mim...

    2020-05-12 16:52 Falcon 阅读
  • WordPress 插件开发最佳实践

    Here are some best practices to help organize your code so it works well alongside WordPress core and other WordPress plugins. Avoid Naming Collisions #Avoid Naming Collision...

    2020-05-08 03:14 Falcon 阅读
  • WordPress 插件起步模板

    Instead of starting from scratch for each new plugin you write, you may want to start with a boilerplate. One advantage of using a boilerplate is to have consistency...

    2020-05-08 03:13 Falcon 阅读