Skip to content

Instantly share code, notes, and snippets.

View maboloshi's full-sized avatar
💭
I may be slow to respond.

沙漠之子 maboloshi

💭
I may be slow to respond.
  • 12:51 (UTC +08:00)
View GitHub Profile
@maboloshi
maboloshi / locals.js
Created February 11, 2019 05:18
[GitHub 汉化插件] 翻译数据库文件 from https://github.com/SickleSky/github-hans
var I18N = {};
I18N.conf = {
/**
* 要翻译的页面正则
*/
rePageClass: /\b(vis-public|page-(dashboard|profile|account|new-repo|create-org)|homepage|signup|session-authentication|oauth)\b/,
/**
* 匹配 pathname 页面的正则
@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/icon_16x16@2x.png &> /dev/null
sips -z 32 32 $1 --out $iconset_dir/icon_32x32.png &> /dev/null
sips -z 64 64 $1 --out $iconset_dir/icon_32x32@2x.png &> /dev/null
@maboloshi
maboloshi / Download a single file from a private GitHub repo.md
Created November 2, 2019 10:36
[Download a single file from a private GitHub repo] #github #curl

Download a single file from a private GitHub repo.

Relying on basic authentication

#
#依靠基本身份验证从github企业获取原始内容的单一代码。
#无需创建访问令牌并将其合并到url中。
#
#
#填空:
@maboloshi
maboloshi / Reg2Bat.vbs
Last active October 21, 2022 09:22
[Reg2Bat]一个将reg格式的注册表文件 转成bat文件的vbs脚本原作者:http://slore.blogbus.com/logs/52627038.html,修改作者:http://bbs.wuyou.net/forum.php?mod=viewthread&tid=386057
'------------------------------------------------------------------------------
'名称:Reg2Bat_By Slore(生成同名bat文件,支持XP、WIN7、WIN7X64).vbs
'功能:REG文件转换为同名的BAT、CMD文件。
'原文http://slore.blogbus.com/logs/52627038.html
' REG命令功能有限,仅支持常用类型。
' (REG_SZ、REG_DWORD、REG_BINARY、
' REG_EXPAND_SZ、REG_MULTI_SZ)
'
' By Slore 【修改by 代码飞扬】
' 更新于:2017年2月16日
#!/bin/bash
#
#Author: atrandys
#
#
function blue(){
echo -e "\033[34m\033[01m$1\033[0m"
}
function green(){
echo -e "\033[32m\033[01m$1\033[0m"
@maboloshi
maboloshi / gist:ab9beafa89be01123bf277130339606f
Last active February 13, 2022 12:39 — forked from parano/gist:1868242
Excel表格密码保护的解除方法 (仅适用于旧版 .xls 文件格式)
表格受密码保护时,我们修改数据Excel弹出“您试图更改的单元格或图表受保护,因而是只读的。
若要修改受保护单元格或图表,请先使用‘撤消工作表保护’命令(在‘审阅’选项卡的‘更改’组中)来取消保护。
可能会提示输入密码。这时候我们可以用VBA宏代码破解法来破解表格保护密码:
第一步:打开该文件,先解除默认的“宏禁用”状态,方法是点击工具栏下的“选项”状态按钮,
打开“Microsoft Office安全选项”窗口,选择其中的“启用此内容”,“确定”
再切换到“视图”选项卡,点击“宏”→“录制宏”,出现“录制新宏”窗口,在“宏名”定义一个名称为:
PasswordBreaker,点击“确定”退出;
第二步:再点击“宏”→“查看宏”,选择“宏名”下的“PasswordBreaker”并点击“编辑”,
打开“Microsoft Visual Basic”编辑器,用如下内容替换右侧窗口中的所有代码:

借助git快速批量转换CRLF到LF


换行符的差异

  • windows下每行结尾为回车+换行(CR+LF),即 \r\n
  • unix和macOS下每行结尾为换行LF,即 \n
  • classic macOS(最后一个版本为1999年发布的Mac OS 9,可忽略)下为回车,即 \r

设置jetbrain系IDE

settings > Editor > Code Style > Line Separator > unix and macOS (\n)

@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 / README.md
Last active November 1, 2021 02:57
[hexo-deployer-git](https://github.com/hexojs/hexo-deployer-git) 使用说明文件

hexo-deployer-git

Build Status NPM version Coverage Status Build status

Git deployer plugin for [Hexo].

Notice: Fatal HttpRequestException Error on pushing to GitHub?

Update Git for Windows to the latest version. (Details)

Installation