- コンストラクタ名を__constructorに修正
- newの前の&を削除
- QdmailComponent内のfunction & smtpObjectの引数をスーパークラスと合わせて$null = falseに修正
- HTMLメールでのマルチパート順序をhtml, plain, OMITからplain, html, OMITへ変更
- iPhone用アドレスをi.softbank.ne.jpからi.softbank.jpに修正
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
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>免税事業者向けインボイス経過措置による値引き計算</title> | |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]" /> | |
</head> | |
<body style="display:grid;place-items:center;gap:1rem;min-height:auto;"> | |
<h1>免税事業者向けインボイス経過措置による値引き計算</h1> |
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
#!/bin/sh | |
### ### | |
### Create a Faker Cheat Sheet. ### | |
### ### | |
function extract_methods() { | |
while read line; do | |
if [[ $line =~ ^\*[[:space:]]@example[[:space:]](.*) ]]; then | |
example=${BASH_REMATCH[1]} |
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
#!/bin/sh | |
# | |
# Reference Web sites: | |
# http://d.hatena.ne.jp/anmino/20091029/1256806944 | |
# http://www.geocities.jp/abandonment_cat/cygwin/bshell/read.html | |
# http://www.ibm.com/developerworks/jp/aix/library/au-learningtput/ | |
# | |
declare -i x_position=`expr \`tput lines\` / 3` | |
declare -i y_position=`expr \`tput cols\` / 3` |
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
#! /bin/sh | |
function show_coordinate() { | |
tput civis | |
tput sc | |
tput cup 0 0 ; printf "[%3d,%3d] up:k, down:j, left:h, right:l, quit:q" ${1} ${2} | |
tput rc | |
tput cnorm | |
} |