Skip to content

Instantly share code, notes, and snippets.

@starfalling
starfalling / osx_dmg_package
Last active April 5, 2022 09:55
mac osx 程序自动打包为 dmg 文件的脚本
set -e
title='千尋影視' # dmg 文件 mount 了之后在文件系统中显示的名称
background_picture_name='mac-dmg-bg.png' # dmg 文件在 mount 了之后界面中显示的背景图片路径
application_name='千尋影視.app' # 应用程序的名称
# Developer ID 证书的名称(名字的一部分即可,但是需要能在 Keychain Access 中唯一定位到该证书)
developer_id='Developer ID Application: Shanghai Truecolor Multimedia'
# dmg 窗口相关的一些设置,需要根据实际情况做变更
window_left=200 # 窗口位置的 x 坐标
@starfalling
starfalling / hyperf-hot-restart-in-dev.php
Last active March 7, 2022 05:42
hyperf hot restart in development
<?php
declare(strict_types=1);
/**
* 使用方式:
* 1. 把文件放置到项目的 bin 目录中,更名为 dev.php
* 2. 开发中启动项目时,使用 dev.php 进行启动,而不是使用 hyperf.php 进行启动
*/