2023年に実際に使った方法を書いておく.ダイヤ改定などがあり得るのでくれぐれも詳細は各バス会社+鉄道会社などでご確認を.
隼人駅(0552)==(JR肥薩線+吉都線・南宮崎行)==>(0717)えびの飯野駅(0717)==(徒歩15分)==>(0732)飯野高速バス停(0739)==(高速バスなんぷう号・熊本行)==>(0937)通町筋バス停(0937)==(徒歩48分)==>(1025)熊大黒髪南地区
国分駅から隼人駅まで徒歩で約35分か(上記時間にて国分駅から隼人駅への電車(JR日豊本線)は運行せず).料金はJR分が片道1130円.高速バスなんぷう号がWeb早割で3560円.合計4690円也.
確 率 人
松浦將國個人の備忘録兼掲示板です.
How to copy all files into a directory and zip that directory in the Linux terminal
For example, please suppose that there are three files in the home directory: a.pdf, b.xlsx, and c.docx, and you would like to create a zip file 'abc.zip' containing the directory 'abc' with those three files.
1. Make a directory 'abc'.
$ mkdir abc
2. Copy the above three files into the directory 'abc'.
$ cp a.pdf abc
$ cp b.xlsx abc
$ cp c.docx abc
3. Zip the directory 'abc'.
$ zip -r abc.zip ./abc/
1. Make a directory 'abc'.
$ mkdir abc
2. Copy the above three files into the directory 'abc'.
$ cp a.pdf abc
$ cp b.xlsx abc
$ cp c.docx abc
3. Zip the directory 'abc'.
$ zip -r abc.zip ./abc/
Labels:
Arch Linux,
Debian,
Fedora,
Linux Mint,
Lubuntu,
Mac,
Ubuntu,
UNIX,
UNIX コマンド,
Vine Linux,
xubuntu,
ソフトウェア,
メモ
To compute some values by Xcas
If you compute the following values by Xcas, then you should execute commands below. See also this page.
Case 1. One computes any maximum values for given functions with 1 parameter, for example y=x2−4x+5 for 37/19≤x≤35/17. Then, he should execute as follows. The answer must be 290/289.
Case 2. One computes any minimum values for given functions with 2 parameters, for example z=x3+y3−xy for x>0 and y>0. Then, he should execute as follows. The answer must be −1/27.
Case 3. One computes any maximum values for given 2-parameter-functions with 1 bounded condition, so-called Lagrange Multiplier method, for example z=x/2+y/3+√1−(x2/4)−(y2/9) with x+y=5√3/3. Then, he should execute as follows. The answer must be (10√3−4)/9.
Case 4. One differentiates any implicit functions such as ylnx=xlny (x>0 and y>0). Then, he should execute as follows. The answer must be (dy/dx=)(y2−xylny)/(x2−xylnx).
Case 1. One computes any maximum values for given functions with 1 parameter, for example y=x2−4x+5 for 37/19≤x≤35/17. Then, he should execute as follows. The answer must be 290/289.
maximize(x^2 - 4*x + 5, x=37/19..35/17)
Case 2. One computes any minimum values for given functions with 2 parameters, for example z=x3+y3−xy for x>0 and y>0. Then, he should execute as follows. The answer must be −1/27.
minimize(x^3 + y^3 - x*y, [x > 0, y > 0], [x, y])
Case 3. One computes any maximum values for given 2-parameter-functions with 1 bounded condition, so-called Lagrange Multiplier method, for example z=x/2+y/3+√1−(x2/4)−(y2/9) with x+y=5√3/3. Then, he should execute as follows. The answer must be (10√3−4)/9.
maximize((x/2) + (y/3) + sqrt(1 - (x^2 / 4) - sqrt(y^2/9)), x + y = 5*sqrt(3)/3, [x, y])
Case 4. One differentiates any implicit functions such as ylnx=xlny (x>0 and y>0). Then, he should execute as follows. The answer must be (dy/dx=)(y2−xylny)/(x2−xylnx).
implicitdiff(y*ln(x) = x*ln(y), y, x)
自分の本棚内の聖文(新)社コレクション
中古本を買って利用するスタイル.
H19年度,全国大学数学入試問題詳解,私立大学.
H17年度,全国大学数学入試問題詳解,医歯薬.
H16年度,全国大学数学入試問題詳解,II集.
H15年度,全国大学数学入試問題詳解,II集.
H15年度,全国大学数学入試問題詳解,医歯薬.
H14年度,全国大学数学入試問題詳解,III集.
H13年度,全国大学数学入試問題詳解,II集.
H12年度,全国大学数学入試問題詳解,I集.
H19年度,全国大学数学入試問題詳解,私立大学.
H17年度,全国大学数学入試問題詳解,医歯薬.
H16年度,全国大学数学入試問題詳解,II集.
H15年度,全国大学数学入試問題詳解,II集.
H15年度,全国大学数学入試問題詳解,医歯薬.
H14年度,全国大学数学入試問題詳解,III集.
H13年度,全国大学数学入試問題詳解,II集.
H12年度,全国大学数学入試問題詳解,I集.
来年の県民手帳
来年の県民手帳は宮城県にしました('25.1--'25.12?).少し前に「宮城峡」を買い,ここ暫くは宮城宮城した日々になりそうですね.皆様,良いお年をお迎え下さい.
県民手帳のランダム・ウォーク
How to display the updated files within the specific period of date by "ls" command on Linux terminal
Note that your environment may differ from my environment(lubuntu). For example, if you want to find the updated files from Aug 15 to Aug 20 in 2024, then
1. move to that directory (e.g. "abcde" directory) by "cd" command.
3. execute the next "ls" command.
How to get only files created after a date with ls? - Stack Exchange Confusing use of && and || operators - Stack Exchange.
1. move to that directory (e.g. "abcde" directory) by "cd" command.
$ cd abcde2. Execute the next "ls" command.
$ ls -ltr | awk '$6 == "8月" && ($7 >=15 && $7 <= 20) && $8 = 2024 {print $6"-"$7"-"$8,$9}'If you want to find the updated files before Aug 5 or after Aug 25 in 2024, then
3. execute the next "ls" command.
$ ls -ltr | awk '$6 == "8月" && ($7 <=5 || $7 >= 25) && $8 = 2024 {print $6"-"$7"-"$8,$9}'See also,
How to get only files created after a date with ls? - Stack Exchange Confusing use of && and || operators - Stack Exchange.
How to change brightness of display on Linux terminal
To change brightness of display on Linux terminal,
1. find the display name as follows. That is "DP-2" in my case.
1. find the display name as follows. That is "DP-2" in my case.
$ xrandr --verbose2. Execute the following command.
xrandr --output (the display name) --brightness (the number between 0 and 1)For example,
xrandr --output DP-2 --brightness 0.5If the last number is close to 0 [1], then the display will be dark [bright].
How to enable scrolling in xterm (Lubuntu 24)
Please see here.
1. Make a file XTerm in your home directory.
1. Make a file XTerm in your home directory.
$ cd ~ $ touch XTerm2. For example, edit the file XTerm and let it be as follows:
XTerm*Background: DarkViolet XTerm*Foreground: white XTerm*SaveLines: 2000 XTerm*faceName: courier XTerm*faceSize: 18 XTerm*rightScrollBar: true XTerm*ScrollBar: true XTerm*scrollTtyOutput: false XTerm*VT100.Translations: #override \ Shift CtrlV: insert-selection(CLIPBOARD) \n\ Shift Ctrl V: insert-selection(PRIMARY) \n\ Shift : select-start() \n\ Shift : select-extend() \n\ Shift : select-end(CLIPBOARD) \n\
Subscribe to:
Posts (Atom)