需要输入验证码才能留言

  • zongren 2019/05/08 回复 编辑 删除

    macOS禁用iTunes备份

    defaults write com.apple.iTunes DeviceBackupsDisabled -bool true
    

    启用

    defaults write com.apple.iTunes DeviceBackupsDisabled -bool false
    
  • 宗仁 2018/10/19 回复 编辑 删除

    开启x5内核设置界面
    http://debugx5.qq.com/

  • zongren 2018/09/27 回复 编辑 删除

    获取android id

    adb shell settings get secure android_id
    
  • zongren 2018/09/15 回复 编辑 删除

    android shell遍历两个数组

    array=(
      Vietnam
      Germany
      Argentina
    )
    array2=(
      Asia
      Europe
      America
    )
    
    for index in ${!array[*]}; do 
      echo "${array[$index]} is in ${array2[$index]}"
    done
    

    资料来源:stackoverflow

  • zongren 2018/09/07 回复 编辑 删除

    输出换行

    echo -e "this is \n new line"
    sed -i 's/test/new \
    new line/g' test.file
    
  • zongren 2018/09/06 回复 编辑 删除

    监听actionbar点击事件

        View actionBar = findViewById(R.id.action_bar);
        if (actionBar != null) {
          actionBar.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
              if (adapter.getItemCount() > 1) {
                recyclerView.smoothScrollToPosition(0);
              }
            }
          });
        }
    
  • zongren 2018/08/27 回复 编辑 删除

    Android Studio Gradle Sync的时候出现以下错误

    Cause: error in opening zip file
    

    解决方法,删除~/.gradle/wrapper/下对应版本的gradle,重新Sync,估计是文件损坏之类的吧。。。

  • zongren 2018/07/28 回复 编辑 删除

    执行sudo npm install命令发生以下错误

    gyp WARN EACCES user "root" does not have permission to access the dev dir "/usr/lib/node_modules
    

    将命令加上参数--unsafe-perm

  • 宗仁 2018/07/18 回复 编辑 删除
    C:\Windows\System32\cmd.exe /c start "Android Studio" /affinity 0x01 "C:\Program Files\Android\Android Studio\bin\studio64.exe"
    

    0x01表示使用第一个核心
    0x03表示使用第一个和第二个核心

  • 宗仁 2018/06/15 回复 编辑 删除

    splits 导致 lintVitalRelease 错误

  • zongren 2018/06/10 回复 编辑 删除

    launcher activity设置成exported=false,导致安装的app无法打开。。。

  • zongren 2018/06/09 回复 编辑 删除

    Android Studio 3.1.2 gradle sync失败,提示找不到google相关的依赖,通过设置DNS

    1.2.4.8
    114.114.114.114
    

    解决

  • zongren 2018/05/18 回复 编辑 删除

    @Juby    很坑的。。如果是公共的staticman,无法处理垃圾评论,只有单独的staticman才可以添加垃圾信息屏蔽工具

  • Juby 2018/05/12 回复 编辑 删除

    我也好想用staticman,试了一下没成功TT

  • 宗仁 2017/06/12 回复 编辑 删除

    @宗仁    啦啦啦啦啦啦

  • 宗仁 2017/06/12 回复 编辑 删除

    更改键值,屏蔽垃圾评论

  • 宗仁 2017/06/08 回复 编辑 删除

    可以处理垃圾评论了(其实是人工处理…)

  • 宗仁 2017/05/10 回复 编辑 删除

    悄悄打开了评论。。

  • 宗仁 2017/04/30 回复 编辑 删除

    竟然有人无聊到一直发垃圾评论

  • 宗仁 2017/04/08 回复 编辑 删除

    DONE:新增了评论搜索功能,点击顶部评论进入

  • 宗仁 2017/04/07 回复 编辑 删除

    通过编辑~/.profile文件,添加以下内容

    export PATH=$PATH:/your/new/path/here
    

    可以修改PATH变量
    然后通过. ~/.profilesource ~/.profile更新

  • 宗仁 2017/04/07 回复 编辑 删除

    DONE:增加留言板,方便发布笔记

  • 宗仁 2017/04/07 回复 编辑 删除

    TODO:增加搜索评论的功能

  • 宗仁 2017/04/07 回复 编辑 删除

    使用ipconfig /flushdns清空DNS缓存