How to Install ffmpeg on Windows10 How to install ffmpeg on Windows 10Go this link and download a build package. For the version, choose the newest release version number like 4.3.1. For the Architecture, choose the Windows 64 bit. For 2020-08-10 Others Software
Use GitHub Gracefully 优雅地使用 GitHub官方文档 较常用的检索限制项目名称 in:name <keyword> 项目 README in:readme <keyword> 项目描述 in:description <keyword> 语言 language: java star 数 stars:>1000 fork 数 forks:>500 更新时间 pu 2020-08-01 Others GitHub
Enable USB on Ubuntu Enable USB for VirtualBox on UbuntuDifferent from Windows, if you wants to use usb enabled to VirtualBox, you must edit a config file, which is needn’t on Windows. I can’t remember it and search for w 2020-07-26 Linux Ubuntu
Daily English 06-15 Daily English On BBC Learning English[2020-06-15] Whisper vs Murmur vs Mumble I’m Georgina from BBC Learning English. Do you ever wonder about the differences between whisper, murmur, and mumble? The 2020-06-15 Language English
Daily Python Tips isinstance 每天一个 Python 小知识-isinstance首先来看下 w3schools 的解释: ExampleCheck if the number 5 is an integer: x = isinstance(5, int) Definition and UsageThe isinstance() function returns True if the specified object 2020-05-29 Program Python
Daily Python Tips assert 每天一个 Python 小知识-assert首先来看下 w3schools 的解释 ExampleTest if a condition returns True: x = "hello" #if condition returns True, then nothing happens: assert x == "hello" #if conditio 2020-05-28 Program Python
PicGo 使用 PicGo 搭建便捷的图片上传服务在平时使用 MarkDown 的时候,图片一般是一个痛点,在本地引用图片后转到其他平台就有可能失效,尤其是上传到自己的博客的时候就很麻烦,在线图片可以解决这个问题,但是手动上传也是一件麻烦事,不过,已经有一些好心的程序员写了一个软件来解决这个问题,这里我推荐 PicGo 这款应用。 这款应用完全开源、免费,支持跨平台特性。 GitHub 主页 官方文档 软件 2020-05-28 Others Software
Using Pillow To Convert Comic To pdf Quickly 使用 pillow 库快速将漫画转化为 pdf 便于转发与阅读介绍使用安卓手机阅读一些漫画的时候,因为屏幕较小,查看文字的时候需要放大,很麻烦。博主虽然有一个 iPad4,屏幕够大,但是把这么多图片文件发送到 iPad 上面十分的麻烦,一天,偶然看到了一个 pdf 格式的漫画,在 iPad 上面的阅读体验十分棒,于是博主就打算写一个程序来将大量的漫画图片转化为 pdf 来方便在 iPad 上阅读。 2020-05-27 Program Python
20 Python Skills 20 个 Python 进阶技巧 本来是在查资料,无意间看到了这个知乎文章,感觉内容值得学习,但是排版实在难受,代码和注释混在一起,没有换行,同时解释也很奇怪(感觉是机翻的),当我无法忍受想关闭网页的时候,发现这篇文章是翻译自Medium的文章,但是原文章是英语写的,为了帮到那些英语不太好的 Python 学习者,同时方便自己之后看,于是写了这篇博文(算是笔记吧) 基于 Medium 的文章 2020-04-13 Program Python
Data Binding 使用 DataBinding 精简代码在构建布局的时候,是不是感到要写很多的 findViewById 很浪费时间呢?尤其是布局文件变化的时候,也要在 Activity 中更改很多内容,极大的降低了开发效率,而谷歌在 JetPack 中提供了一种十分有效的方法来精简代码结构,提升开发效率,那就是 DataBinding 下面来介绍 DataBinding 的使用 用到的依赖implementati 2020-02-22 Program Android