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
.separator { | |
position: relative; | |
width: 3rem; | |
height: 3rem; | |
border: 0; | |
margin: 0; | |
} | |
.separator::before, | |
.separator::after { | |
position: absolute; |
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
{ | |
"terminal.integrated.fontFamily": "\"RobotoMono Nerd Font Mono\"", | |
"editor.fontFamily": "\"Ricty Diminished\", Menlo, Monaco, 'Courier New', monospace", | |
"editor.fontSize": 14, | |
"git.autofetch": true, | |
"editor.renderWhitespace": "boundary", | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact", | |
{ "language": "typescript", "autoFix": true }, |
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
<?php | |
function hoge() { | |
echo 'hoge'; | |
return true; | |
} | |
if (true && hoge()) { | |
echo 'hage'; | |
} | |
// -> hogehage |
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
// Place your settings in this file to overwrite the default settings | |
{ | |
"editor.fontFamily": "'Ricty Diminished', 'Menlo', monospace", | |
"editor.tabSize": 2, | |
"editor.renderWhitespace": "boundary", | |
"editor.fontSize": 14, | |
"editor.renderIndentGuides": true, | |
"terminal.integrated.shell.windows": "C:\\Windows\\Sysnative\\WindowsPowerShell\\v1.0\\powershell.exe", | |
"sync.gist": "", | |
"sync.autoDownload": 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
export LANG=ja_JP.UTF-8 | |
export LC_ALL=ja_JP.UTF-8 | |
export VISUAL='code -w' | |
export EDITOR=$VISUAL | |
autoload -Uz is-at-least | |
# prezto | |
if [ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]; then |
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
// ---- | |
// Sass (v3.4.14) | |
// Compass (v1.0.3) | |
// ---- | |
$layers: ( | |
forefront: 9001, | |
modal: ( | |
base: 9000, | |
header: 801, |
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
pre.highlight { | |
// prefix | |
@base: hljs-; | |
@lang: language-; | |
// color | |
@base00: #fff; | |
@base0: #333; | |
@base1: #969896; | |
@brown: #693a17; |
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
pre[prism] { | |
// color | |
@base00: #fff; | |
@base0: #333; | |
@base1: #969896; | |
@brown: #693a17; | |
@orange: #df5000; | |
@red: #b52a1d; | |
@magenta: #a71d5d; | |
@violet: #795da3; |
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
.layout { | |
// display | |
&.horizontal, | |
&.horizontal-reverse, | |
&.vertical, | |
&.vertical-reverse { | |
display: flex; | |
} | |
&.inline { |
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
private void KeyPressNumberOnly(Object sender, KeyEventArgs e) | |
{ | |
if ((e.Key < Key.D0 || e.Key > Key.D9) && | |
(e.Key < Key.NumPad0 || e.Key > Key.NumPad9) && | |
e.Key != Key.Back && | |
e.Key != Key.Delete && | |
e.Key != Key.Left && | |
e.Key != Key.Right && | |
e.Key != Key.Tab) | |
{ |
NewerOlder