631 Matching Annotations
  1. Aug 2021
    1. 削弱角色能力带来的另一个问题,那就是游戏很难提供强大的敌人攻击机制设计或是懒得设计,从而降低战斗质量

      .c2

    1. DevOps keeps production fresh. SRE keeps production healthy.

      SRE works from Production backward. DevOps works from development forward. Somewhere in the middle, they meet.

    1. What went well in the last sprint? What helped us reach our goals? What was successful in the last sprint? What do I want to use more regularly?

      .c2

    1. If you want more, you can do so by directly specifying TextMate theme color rules

      code

      {
        "editor.tokenColorCustomizations": {
          "[Noctis]": {
            "textMateRules": [
              {
                "scope": "markup.list",
                "settings": { "fontStyle": "" }
              },
              {
                "scope": "text.markdown.notes.tag",
                "settings": { "fontStyle": "italic" }
              }
            ]
          }
        }
      }
      

      Inspect the scope using the command "Developer: Inspect Editor Tokens and Scopes"

    1. For this team I picked some pointers from James Bach’s Heuristic Test Strategy Model (http://www.satisfice.com/tools/htsm.pdf) and Elisabeth Hendricksson’s Test Heuristics Cheat Sheet (http://testobsessed.com/wp-content/uploads/2011/04/testheuristicscheatsheetv1.pdf).
      • [[Heuristic Test Strategy Model.pdf]]
      • [[Test Heuristics Cheat Sheet.pdf]]
    1. 国家发改委等 14 部门发布全国家庭应急物资储备建议清单(可进入《北京市居民家庭应急物资储备建议清单》下载附件)

      [[北京市居民家庭应急物资储备建议清单 - 2020.pdf]] source

    1. Neural Network Test Can you re-use the test suite if your entire software is replaced with an opaque neural network?

      What is Neural Network Test?

      Can you re-use the test suite if your entire software is replaced with an opaque neural network?

  2. Jul 2021
    1. sudo codesign --remove-signature "/Applications/Discord.app/Contents/Frameworks/Discord Helper (Renderer).app"

      Run xcode-select --install first. This will fix permissions to create the virtual camera.

    1. 那既然是使用最后两个点计算,这里又为什么需要 [1m] 呢?这个 [1m] 不是用来计算的,是用来限制找 t-2 个点的时间的,比如,如果中间丢了很多数据,那么显然这个点的计算会很不准确,irate 在计算的时候会最多向前在 [1m] 找点,如果超过 [1m] 没有找到数据点,这个点的计算就放弃了。
    2. rate 函数可以帮我们用这段时间([1m])的总 packet 数量,除以时间 [1m] ,就得到了一个“平均值”,以此作为曲线来绘制。

      moving average

  3. Apr 2021
    1. 异地居住期间需跨地市(地区)转诊转院的,参保人员可通过电话将相关转诊转院证明(居住地医疗保险定点二级及以上医院(二级专科医院限专科疾病))、联系方式、社保卡等材料传真至参保地医保经办机构进行备案。

      长居异地在居住地开具转诊证明

    1. 从分享链接中提取:进入支付宝小程序→点击右上角「更多」→分享→复制链接,得到短链接如:https://ur.alipay.com/2IcAMP在 PC 端浏览器中访问短链接,页面第一次跳转后快速按 Esc,在浏览器地址栏得到长链接
  4. Mar 2021
    1. A stub secret key that references your card’s serial number is stored locally in ~/.gnupg/private-keys-v1.d.

      A simple solution is just removing all the stubbed files:

      cd ~/.gnupg/private-keys-v1.d
      grep -Il shadowed-private-key * | xargs rm