« 剣客商売 | トップページ | 【AppleScript】ウィンドウの位置を保存/復元する »

BACKDRAFT

Backdraft

久しぶりに見たら…結構良いじゃん…サントラも良いし
兄弟、同僚、仕事、家族、政治…とてんこ盛り…
TVドラマシリーズのER同様の『ルーキーの成長』系
死にオチなのが、残念…

『死』より脚本家の渾身のセリフや、演技で見せて欲しいんだよねぇ…

--------------------

MacOS Serverの機能が縮小する事が記事で出ている
https://support.apple.com/ja-jp/HT208312

まぁ、書いてある通り、ストレージぐらいにしか
利用していないが、各サブネット毎に設置している

WEBサーバーサポート中止は、中小のネットワーク管理者には痛いかな…


--------------------
『テキストに入力してある単語の順番を名前順にしたい』
https://okwave.jp/qa/q9427911.html

反応

tell application "TextEdit"
set theText to (text of front document) as text
end tell
set theCntLine to 1
set theAnsLine to ""
set AppleScript's text item delimiters to "\n"
set theList to text items of theText as list
set AppleScript's text item delimiters to ""
set listSortedText to doSortList(theList)
set numCntList to (count of listSortedText) as number

repeat (numCntList) times
set theReturnLine to (item theCntLine of listSortedText) as text
set theReturnLine to (theReturnLine & "\n") as text
set theAnsLine to (theAnsLine & theReturnLine) as text
set theCntLine to theCntLine + 1
end repeat

log theAnsLine

tell application "TextEdit"
make new document with properties {name:"並び替え後", text:theAnsLine}


end tell





on doSortList(theList)
set theIndexList to {}
set theSortedList to {}
repeat (length of theList) times
set theLowItem to ""
repeat with a from 1 to (length of theList)
if a is not in theIndexList then
set theCurrentItem to item a of theList as text
if theLowItem is "" then
set theLowItem to theCurrentItem
set theLowItemIndex to a
else if theCurrentItem comes before theLowItem then
set theLowItem to theCurrentItem
set theLowItemIndex to a
end if
end if
end repeat
set end of theSortedList to theLowItem
set end of theIndexList to theLowItemIndex
end repeat
return theSortedList
end doSortList

ぷぷ
ほとんど
こちらのコピペで…汗
https://developer.apple.com/library/content/documentation/LanguagesUtilities/Conceptual/MacAutomationScriptingGuide/ManipulateListsofItems.html

「TextEdit-2-sort.scpt.zip」をダウンロード

「TextEdit-2-sort.scpt.zip.rtf」をダウンロード


--------------------
lifehacker
『アメリカ人が映画館を避けるようになった理由』
https://www.lifehacker.jp/2018/02/heres-what-would-make-going-to-the-movies-worth-the-mon.html

反応

私の場合は『途中に一時停止出来ないから』だな…
原因は『トイレ』

歳とったのもあって、トイレ近いんだよね…
映画館ではビール飲むし…
試写とかいく時は、朝から水分コントロールするし
利尿作用の高い物は避けたりするしね…

|

« 剣客商売 | トップページ | 【AppleScript】ウィンドウの位置を保存/復元する »

Movies」カテゴリの記事