This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Forked from https://gist.github.com/pganssle/0e3a5f828b4d07d79447f6ced8e7e4db | |
# Licensed under MIT License which the author permits to release with. | |
# Copyright 2024 Takumi Sueda | |
# Copyright 2019 Paul Ganssle | |
# A clang-format style that approximates Python's PEP 7 | |
# Useful for IDE integration | |
BasedOnStyle: Google | |
AlwaysBreakAfterReturnType: AllDefinitions | |
AllowShortIfStatementsOnASingleLine: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set -ue -o | |
APP_ID="clion" | |
APP_NAME="CLion" | |
APP_VER="2017.3.4" | |
APP_DIR="/home/sueda/jetbrains" | |
sudo bash -c "cat > /usr/share/applications/${APP_ID}.desktop" <<EOF | |
[Desktop Entry] | |
Version=${APP_VER} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python | |
"""This is an improved image_to_ansi.py. | |
It's 7x faster than original version. | |
WTFPL is preserved for saying thank you to original developer, Mr. Elliott. | |
""" | |
__author__ = 'Micah Elliott http://MicahElliott.com; Kevin Lange <k@dakko.us>; Takumi Sueda <puhitaku@gmail.com>' | |
__version__ = '0.1' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
githubへ登録 | |
=========== | |
git remote add origin git@github.com:<username>/<application_name>.git | |
git push origin master | |
初期設定 | |
======= | |
git config --global user.name "Foo Bar" | |
git config --global user.email "foo@bar.com" |