- Pixel Perfect対応費用。
- ダミーテキスト、ダミー画像の置き換え作業費用。
- ダミーテキスト、ダミー画像の置き換え作業により、レイアウトが変わったことによるCSS調整対応費用。
- XDとwebfontのfont-weightが同じでも見た目の太さが違う場合の調整対応費用。
- 他人のcodeに対し、アニメーションを実装する場合、html codingもやり直しになる場合がある。
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
<?php | |
// ** Database settings - You can get this info from your web host ** // | |
/** The name of the database for WordPress */ | |
define( 'DB_NAME', 'local' ); | |
/** Database username */ | |
define( 'DB_USER', 'root' ); | |
/** Database password */ |
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
Button(action: { | |
NSApp.keyWindow?.close() | |
}) { | |
Image(systemName: "xmark.circle.fill") | |
.foregroundColor(.red) | |
} |
xcrun simctl --set previews delete all
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
# git | |
alias gs='git status' | |
alias gd='git diff' | |
alias ga='git add' | |
alias gb='git branch' | |
alias gl='git log' | |
alias glp='git log -p' | |
alias gcm='git commit -m' | |
alias gc='git checkout' | |
alias gst='git stash' |
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
{ | |
"phpVersion": "7.4", | |
"core": "./_public", | |
"port": 8888 | |
} |
# cliのphpのバージョンを選択して切り替える
sudo update-alternatives --config php
# apache2のphpを無効化 & 有効化
sudo a2dismod php8.0 && sudo a2enmod php7.4
Cross-platform support (macOS, Windows, Linux)
# Check installable node versions
$ fnm list-remote
# Install new node version
$ fnm install v18.16.0
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
(function ($) { | |
})(jQuery); |
NewerOlder