A-Treasure-Chest

Reading time ~5 minutes

Contents

科学上网GLaDOS

  • 项目地址:https://github.com/glados-network/GLaDOS
  • 邀请码:XHPEW-U932V-7GM32-KEMTG
  • 教育版有一年免费!edu邮箱绑定后点网站footer部分的for education
  • 超级良心的项目!速度快!客户端的界面简洁好看,LOGO也好可爱!

Podcast

存放在网络上,结合RSS feed订阅功能的“广播”。 可选收听姿势:了解更多

iTunes 应该是目前市面上拥有最完整 podcast 目录的地方
iPhone 有内建的 Podcast App (下方第三个图标),串接 iTunes 目录让使用者搜寻内容

My Subscription List

试听了很多网上的推荐节目,结合自身“网络安全”专业及感兴趣的内容,和大家分享一下我的收听清单。

IRL: Because Online Life Is Real Life

An original podcast from Mozilla Corporation.
Host Veronica Belmont shares real stories of life online and real talk about the future of the Web.
  • 每集30-40分钟
  • 无论是隐私泄露,封闭平台,黑客攻击,虚假新闻还是网络欺凌,我们都有能力改变互联网的进程,让每个人都保持健康,奇妙和精彩。
  • 官网首页中单集Show Notes > Transcript有台本可参阅。不怕听不懂了!还可以顺便学英语!:relaxed:

Sophos Podcasts

Network Security Podcasts
专业 IT 安全与保护公司 Sophos,全球总部位于英国牛津近郊
  • 每集20-30分钟
  • 纯正的英式发音和网络安全内容。公司首页
  • 貌似是很难连接上,虽然BUPT能直接上Google等,但这个还是需要VPN

Tech News Briefing - WSJ Podcasts

 WSJ = Wall Street Journal 华尔街日报
 Host: Tanya Bustos
  • 每集10分钟左右
  • 最新技术新闻:报道领先的公司,新产品,消费趋势和网络问题。Home

Merriam-Webster’s Word Of The Day

  • 每天一个单词,约2-3分钟
  • 单集备注中就能阅读大部分的内容

Others

 以下两只是很多人推荐的经典节目,内容感觉不错,只是我可能还需要多修炼一下英语,先订阅着了:worried:

  • Hidden Brain(NPR)
  • More or Less: Behind the Statistics(BBC)

 有空再探索一下优秀的中文播客(求推荐!

Kali-Vmware

Vmware安装Kali

Python调用Matlab

基础教程

Linux服务器搭建Gitlab

  • 教程: https://about.gitlab.com/install/?version=ce#ubuntu

  • gitlab限制上传大小文件

    解决git push的error: pack-objects died of signal 13,可能的原因有两个:

    • 客户端:加大 http.postBuffer 的值

      $ git config http.postBuffer 52428800 # 单位是字节, 52428800 = 1024 * 1024 * 50 即 50 M
      
    • 服务端:可能原因有gitlab本身,或gitlab使用的nginx;解决方法参考

  • 增加存储:修改/etc/gitlab/gitlab.rb文件(官方教程

    解决git push的error: unpack failed: error No space left on device

    git_data_dirs({
      "default" => { "path" => "/var/opt/gitlab/git-data" },  //默认存储目录
      "alternative" => { "path" => " /storage" }     //备用存储目录
    })
    

    默认情况下仓库数据存储在 /var/opt/gitlab/git-data目录下,仓库存放在子目录 repositories里。

  • 解决.git文件过大

    $ git reflog expire --expire=now --all && git gc --prune=now --aggressive
    

强化学习背景知识

Deep-Reinforcement-Learning Continue reading

SHAP源码之Masker

Published on May 22, 2022

SHAP源码之Benchmark示例

Published on April 30, 2022