<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
Press minus + shift + s and return to chop/fold long lines!
| /** | |
| * Convert string representation of date and time to a timestamp | |
| * | |
| * @param text string modification | |
| * @param now date (optional) origin date | |
| * | |
| * @return date or null | |
| * | |
| * note 1: Examples all have a fixed timestamp to prevent tests to fail because of variable time(zones) | |
| * |
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |
영어지만, 조금 더 상세하게 마크다운 사용법을 안내하고 있는
"Markdown Guide (https://www.markdownguide.org/)" 를 보시는 것을 추천합니다. ^^
아, 그리고 마크다운만으로 표현이 부족하다고 느끼신다면, HTML 태그를 활용하시는 것도 좋습니다.
| REMOTE=origin | |
| BRANCH=$(git rev-parse --abbrev-ref HEAD) | |
| BATCH_SIZE=10 | |
| # check if the branch exists on the remote | |
| # if git show-ref --quiet --verify refs/remotes/$REMOTE/$BRANCH; then | |
| # # if so, only push the commits that are not on the remote already | |
| # range=$REMOTE/$BRANCH..HEAD | |
| # else | |
| # # else push all the commits |
| <?php | |
| function getAspectRatio(int $width, int $height) | |
| { | |
| // search for greatest common divisor | |
| $greatestCommonDivisor = static function($width, $height) use (&$greatestCommonDivisor) { | |
| return ($width % $height) ? $greatestCommonDivisor($height, $width % $height) : $height; | |
| }; | |
| $divisor = $greatestCommonDivisor($width, $height); |