Skip to content

Instantly share code, notes, and snippets.

View maboloshi's full-sized avatar

沙漠之子 maboloshi

  • 15:20 (UTC +08:00)
View GitHub Profile
@maboloshi
maboloshi / .zshrc
Last active December 19, 2021 04:14
[Mac 相关设置]
export PATH="/usr/local/sbin:$PATH:$HOME/bin"
export ZSH="$HOME/.oh-my-zsh"
ZSH_THEME="agnosterzak_black"
# 大小写敏感
# CASE_SENSITIVE="true"
# Uncomment the following line to use hyphen-insensitive completion.
@maboloshi
maboloshi / Set_Proxy.md
Last active July 18, 2024 09:04
[软件 Proxy 设置] #proxy #git #ssh #chrome #Sublime-Text-4

软件 Proxy 设置

Proxy 一般有2种协议,一种是 HTTP/HTTPS 协议,一种是 SOCKS 协议。优先使用 SOCKS 协议的 SOCKS5 版本。[2种协议的区别 待补充外部引用]

一般各平台的代理客户端除了提供一个本地的 socks5 Proxy ,还会提供一个本地的 http Proxy 。 在客户端相应设置中查看 socks5 协议监听的端口,HTTP Proxy 设置中查看 http 协议监听的端口。

注意:不少客户端提供混合模式,即socks5http端口号是同一个,所以不用费尽心思在软件设定中找单独的 http 端口设置功能了。

Chrome 浏览器 Proxy 设置

@maboloshi
maboloshi / png2icons.sh
Created February 15, 2019 11:46
[快速生成 Mac App icns 图标 -- PNG2ICONS ] 需要准备一个 1024x1024 的png图片, 使用`png2icons.sh xxx.png`. 出处:http://www.jianshu.com/p/e74047f7cc91
#!/bin/bash
iconset_dir=tmp-$RANDOM.iconset
mkdir $iconset_dir
## 全部拷贝到命令行回车执行,执行结束之后去tmp.iconset查看十张图片是否生成好
sips -z 16 16 $1 --out $iconset_dir/icon_16x16.png &> /dev/null
sips -z 32 32 $1 --out $iconset_dir/[email protected] &> /dev/null
sips -z 32 32 $1 --out $iconset_dir/icon_32x32.png &> /dev/null
sips -z 64 64 $1 --out $iconset_dir/[email protected] &> /dev/null
@maboloshi
maboloshi / get_latest_release_number.sh
Last active February 17, 2019 12:38 — forked from lukechilds/get_latest_release.sh
[Shell - Get latest release number from repository on GitHub ] 从GitHub上的存储库获取最新版本号, 不适用不规范发布 #github #shell
get_latest_release_number() {
curl --silent "https://github.com/$1/releases/latest" | sed 's#.*tag/\(.*\)".*#\1#'
}
# Usage
# $ get_latest_release_number "creationix/nvm"
# v0.34.0
@maboloshi
maboloshi / Generating_Access_Token.md
Last active February 18, 2019 13:19
[为github创建私人访问令牌] #github

Generating Access Token

As of 2013-05-16, you can generate API Access Tokens via the Web UI or via the GitHub API. All other authorization methods is deprecated.

Web

@maboloshi
maboloshi / 重建win7的ESP(即EFI)分区.md
Last active October 8, 2019 07:10
[重建win7的ESP(即EFI)分区] 可用于给黑苹果创建EFI分区 #windows #shell

重建win7的ESP(即EFI)分区

进入diskpart模式

# CMD中键入
diskpart

选择目标磁盘

@maboloshi
maboloshi / RSS_add_to_Inoreader.js
Last active August 9, 2024 02:36 — forked from ttttmr/RSS_to_Inoreader.js
[一键订阅Inoreader书签脚本] 可用于在浏览器创建一个"一键订阅至Inoreader"的脚本书签按钮
javascript: (function () {
let rsshub_host = 'https://rsshub.app';
let cnblog = 'https://www.cnblogs.com/';
let csdn = 'https://blog.csdn.net/';
let jianshu_user = '/jianshu/user/';
let zhihu_user = '/zhihu/people/activities/';
let zhihu_collection = '/zhihu/collection/';
let zhihu_zhuanlan = '/zhihu/zhuanlan/';
let bilibili_user = '/bilibili/user/video/';
[Version]
Signature="$Windows NT$"
[DefaultInstall]
AddReg=SublimeText3
[SublimeText3]
hkcr,"*\\shell\\SublimeText3",,,"Edit With Sublime Text"
hkcr,"*\\shell\\SublimeText3","Icon",0x20000,"%1%\sublime_text.exe, 0"
hkcr,"*\\shell\\SublimeText3\\command",,,"""%1%\sublime_text.exe"" ""%%1"" %%*"

摘译自 robots.thoughtbot.com

launchctl 命令加载,卸载开机自动运行的服务,在 OS X 中,服务本身存储在 .plist 文件中(即 property list),这些文件的位置一般在 ~/Library/LaunchAgents/Library/LaunchAgents。可以使用 launchctl load $PATH_TO_LISTunload them with launchctl unload $PATH_TO_LIST 命令来加载/卸载他们。加载就是允许这个程序开机执行,卸载反之。

如果你使用 Homebrew 安装过 mysql 那么下面的安装后提示你可能比较熟悉

To have launchd start mysql at login:
   ln -sfv /usr/local/opt/mysql/*.plist ~/Library/LaunchAgents
Then to load mysql now: