微语

知了小站
2019-10-16 / 29 评论 / 4,350 阅读
本文共 0 个字数,平均阅读时长 ≈ 0分钟
  1. 2019年12月16日 18:12:02 PM

    必应每日壁纸获取:https://api.isoyu.com/bing_images.php 或者 https://bing.biturl.top/?resolution=1920&format=image&index=0&mkt=zh-CN

    Linux · Google Chrome
  2. 2019年12月13日 13:13:06 PM

    发现了一个可以替换windows系统记事本的软件【notepad3】,还挺好用的,记录下下载地址:https://www.rizonesoft.com/downloads/notepad3/?ref=appinn

    Linux · Google Chrome
  3. 2019年12月12日 18:44:04 PM

    谷歌浏览器插件下载网站:https://chrome.zzzmh.cn/#index

    Windows 10 · Google Chrome
  4. 2019年12月12日 18:43:38 PM

    图片工具网站记录:https://www.yasuotu.com/mbuttonColor

    Windows 10 · Google Chrome
  5. 2019年11月13日 15:42:51 PM

    修改mysql密码
    update user set password = PASSWORD('新密码') where user = 'root';

    flush privileges;

    Linux · Google Chrome
  6. 2019年10月28日 10:14:26 AM

    redis 批量删除缓存,-n 代表数据库索引
    redis-cli --scan -n 0 --pattern :: | xargs redis-cli -n 0 del

    Linux · Google Chrome
  7. 2019年10月25日 12:55:10 PM

    Git 修改commit注释
    git commit --amend

    Linux · Google Chrome
  8. 2019年10月23日 14:54:27 PM

    mysql 配置root用户远程连接mysql数据库
    grant all privileges on . to 'root'@'%' identified by '123456' with grant option;
    flush privileges;

    Linux · Google Chrome
  9. 2019年10月22日 14:29:25 PM

    记一个Linux系统中 npm 安装 node-sass 失败的解决方案,1、单独安装:npm install --unsafe-perm node-sass 2、直接使用: npm install --unsafe-perm

    Linux · Google Chrome