macOS 如何自动锁屏和一键锁屏?保护隐私

嗨,我是芦苇Z。本文是 macOS 新手入门系列。

在日常使用 Mac 时,临时离开座位时,屏幕上往往还打开着重要的文档、聊天记录、甚至工作账号。如果此时不锁定屏幕,可能泄露隐私,或可能造成文件误操作。 在日常办公、上课或共享环境中,“一键锁屏”就是最简单有效的防护措施。好消息是,macOS 提供了多种便捷的锁屏方式,你可以根据习惯和设备自由选择。

Liquid 获取数组或字符串的长度

size 返回字符串中所包含的字符数或者数组中所包含的条目数量。size 还支持“点标记”。举例:

过滤器方式:

{{ my_array | size }}

使用“点标记”:

{% if site.pages.size > 10 %}
  This is a big website!
{% endif %}

Python 自动给重名文件名添加序号

检查给定的文件路径是否已经重名,并自动添加序号,递增数字。

Code on Github Gist

def auto_rename_exist_filename(file_path):
    """
    For example: a.txt, a(1).txt, a(2).txt
    Source: https://gist.github.com/nodewee/9ae9b0b461b4bcaf30bc2b84ca8c4743.js
    """
    if not os.path.exists(file_path):
        return file_path

    dir_path = os.path.dirname(file_path)
    src_filename = os.path.basename(file_path)
    [file_title, ext_name] = os.path.splitext(src_filename)

    pattern = r"\((\d+?)\)$"
    r = re.search(pattern, file_title)
    if r:
        serial = str(int(r.groups()[0]) + 1)
        new_title = re.sub(pattern, "(" + serial + ")", file_title)
    else:
        new_title = file_title + "(1)"

    new_filepath = os.path.join(dir_path, new_title + ext_name)

    if os.path.exists(new_filepath):
        return auto_rename_exist_filename(new_filepath)
    else:
        return new_filepath