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
| set src="F:\Pictures" | |
| set dest="Z:\Pictures" | |
| set logFile="log.txt" | |
| robocopy %src% %dest% /MIR /R:0 /NP /FFT /LOG:%logFile% | |
| set src="F:\Music" | |
| set dest="Z:\Music" | |
| set logFile="log2.txt" | |
| robocopy %src% %dest% /MIR /R:0 /NP /FFT /LOG:%logFile% |
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
| set src="F:\Pictures" | |
| set dest="Z:\Pictures" | |
| robocopy %src% %dest% /MIR /R:0 /NP /FFT | |
| set src="F:\Music" | |
| set dest="Z:\Music" | |
| robocopy %src% %dest% /MIR /R:0 /NP /FFT | |
| shutdown.exe |
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
| /* F#の実行 | |
| 実行結果は「アウトプット枠」へ書き出します。 | |
| 【特徴】 | |
| 思いついたコードをすぐ試せることを優先しています。 | |
| ファイルに保存していないF#を実行できます。 | |
| 【動作環境】 | |
| 秀丸エディタ ver8.21 で動作を確認。(ver8 以降なら動くはず。) |
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
| using LINQtoCSV; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Text.RegularExpressions; | |
| using System.Threading.Tasks; |
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
| using LINQtoCSV; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace LINQtoCSVTest | |
| { | |
| class ExifMini |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace ConsoleApplication2 | |
| { |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| namespace OppaiAnalysis | |
| { | |
| static class OppaiAnalysis | |
| { | |
| static public double cupDiameterFromUnderbustAndCup(double under, string cup) |
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
| cd %~dp0 | |
| cscript vbac.wsf decombine |
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
| '各種番号振りなおしマクロ | |
| ' Created By D*suke YAMAKWA | |
| ' last modified : 12/10/16 | |
| ' | |
| '段落番号の振りなおし部分(RenumberingParagraph)に関して | |
| ' original code : 段落番号置換マクロ 03/08/23 By 岡田 | |
| ' modified By D*suke YAMAKWA | |
| ' | |
| '【マクロの概要】 | |
| ' 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
| using System.Diagnostics; | |
| namespace Reboot | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| ProcessStartInfo psi = new ProcessStartInfo(); | |
| psi.FileName = "shutdown.exe"; |