×

Falcon

  • 直接显示StackOverflow的答题日期, 增加评论区回复的时间显示 ,修改时间显示到小时分。

    // ==UserScript== // @name 直接显示StackOverflow的答题日期, 增加评论区回复的时间显示 ,修改时间显示到小时分。 // @namespace http://tampermonkey.net/ // @version 0.1 // @description directly sh...

    2020-05-24 20:21 Falcon 阅读
  • 在VS Code 中使用Vue (VScode 官方 文档)

    Vue.js is a popular JavaScript library for building web application user interfaces and Visual Studio Code has built-in support for the Vue.js building blocks of HTML,&nb...

    2020-05-24 19:03 Falcon 阅读
  • WordPress Hooks 的触发顺序

    Skip Through This Post! Mission Start! 61 Actions Fire on the front page: 238-ish Filters that fire on the front page: What I’ve learned from this experiment&hel...

    2020-05-22 12:20 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 阅读