Skip to content

Instantly share code, notes, and snippets.

View chgc's full-sized avatar
🎯
Focusing

Kevin Yang chgc

🎯
Focusing
View GitHub Profile
@poychang
poychang / 10to62.cs
Last active August 18, 2022 09:00
[10 進制數轉換成 62 進制] #dotnet
void Main()
{
Converter.FromDecimalTo62Hex(10).Dump();
Converter.From62HexToDecimal("a").Dump();
Converter.FromDecimalTo62Hex(100).Dump();
Converter.From62HexToDecimal("1C").Dump();
}
// Define other methods and classes here
@petrbel
petrbel / .travis.yml
Last active October 26, 2019 10:29 — forked from iedemam/gist:9830045
Travis-CI submodules
# Use https (public access) instead of git for git-submodules. This modifies only Travis-CI behavior!
# disable the default submodule logic
git:
submodules: false
# use sed to replace the SSH URL with the public URL, then init and update submodules
before_install:
- sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules
- git submodule update --init --recursive