×

Falcon

  • Random Number Functions In Swift 4.2+

    In Swift 4.2. and after, the way you work with random numbers has changed. Instead of using the imported C function arc4random(), you can now use Swift’s own native func...

    2020-01-08 07:40 Falcon 阅读
  • 在Xcode11上开发“面向低于iOS13版本的App”时的一些注意点,提示'UIScene' is only available in iOS 13.0...

    比如公司现在新开一个项目,使用此App的最低版本要求是iOS12。 (也就是说这个App上架后,只有iPhone的iOS版本是12以上的用户才能在App Store里面看到并下载) 这个时候如果我们使用的是最新版Xcode11并且只按默认配置开发的话,会出现以下错误: 'ConnectionOptions' is only available in i...

    2020-01-06 04:24 Falcon 阅读
  • css选择器中:first-child与:first-of-type

    css选择器中:first-child与:first-of-type是比较容易混淆的概念,这里用案例介绍它们具体的区别。 :first-child 选择器是css2中定义的选择器,从字面意思上来看也很好理解,就是第一个子元素。比如有段代码: <div> <p>第一个子元素</p> <h1&...

    2020-01-05 02:45 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 阅读
  • WordPress Hook Order Of Execution

    In order to build anything for WordPress, you know that action and filter hooks are the way to go. But hooks are still a bit of a mystery because we don’t really have any con...

    2020-01-02 04:44 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 阅读
  • Writing speed: How long does it take to write something?

    Is it normal to write so slowly? How can I write more quickly? These are the questions my coaching clients always ask. Like most people, it seems, they think they write more slowly...

    2019-12-31 15:00 Falcon 阅读
  • 2019最后一天

    和2019道别吧! 等下次,等将来,等不忙……等来等去,2019年,只剩一天了……谁也无法预知未来,很多事可能一等就等成了永远!别输在一个“等”字上。2020年,加油!

    2019-12-31 09:58 Falcon 阅读
  • 彻底弄懂 Nginx location 匹配

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

    2019-12-30 03:46 Falcon 阅读
  • Xcode installation from xip file

    It is not possible to know everything, but it is quite accessible to learn something new everyday. Recently I decided to upgrade my Xcode on my Mac laptop, I sent installed Xcode...

    2019-12-28 15:35 Falcon 阅读