This file contains hidden or 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
on run {input, parameters} | |
do shell script "say -v Kyoko " & (quoted form of (input as string)) | |
return input | |
end run |
This file contains hidden or 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
[alias] | |
graph = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all | |
graph-log = log --all --decorate --graph |
This file contains hidden or 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
# Macro for Unity YAML-based asset files. | |
[attr]unityyaml merge=unityyamlmerge diff -text | |
# Macro for all binary files that should use Git LFS. | |
[attr]lfs filter=lfs diff=lfs merge=lfs -text | |
# Default to auto-normalized line endings. | |
* text=auto | |
# Code |
This file contains hidden or 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
export LC_ALL=en_US.UTF-8 | |
export PATH="/usr/local/bin:$PATH" | |
export TERM="xterm-256color" | |
alias ..='cd ..' | |
alias ll='ls -alF' | |
POWERLEVEL9K_MODE="nerdfont-complete" | |
source /usr/local/share/powerlevel10k/powerlevel10k.zsh-theme |
This file contains hidden or 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
{ | |
"name": "test-app", | |
"productName": "test-app", | |
"version": "1.0.0", | |
"description": "My Electron application description", | |
"main": ".webpack/main", | |
"scripts": { | |
"start": "electron-forge start", | |
"package": "electron-forge package", | |
"make": "electron-forge make", |
This file contains hidden or 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
syntax on " enable syntax highlighting | |
colorscheme desert " set `desert` as default colour scheme | |
set autoindent " indent when moving to the next while writing code | |
set encoding=utf-8 " show output in UTF-8 as YouCompleteMe requires | |
set expandtab " expand tabs into spaces | |
set fileencoding=utf-8 " save file with UTF-8 encoding | |
set fileformat=unix " save file with LF line endings | |
set number " show line numbers | |
set shiftwidth=4 " shift lines by 4 spaces for indent | |
set showmatch " show the matching part of the pair for [] {} & () |
This file contains hidden or 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
import java.io.IOException; | |
import java.io.InputStream; | |
import java.io.OutputStream; | |
import java.net.Socket; | |
import java.nio.charset.StandardCharsets; | |
import java.util.Scanner; | |
public class UCJavaTester { | |
/** |
This file contains hidden or 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
# This is the custom minimal my.cnf file for MariaDB | |
# Uncomment these if you wan to use a nonstandard connection to MariaDB | |
#socket = /tmp/mysql.sock | |
#port = 3306 | |
# This will be pased to all MariaDB clients | |
[client] | |
#password = my_password |