graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
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
| # URLリストをソート、重複除去、FQDNでグループ化するスクリプト | |
| $inputFile = ".\URLLIST.txt" | |
| $outputFile = ".\URLLIST_DISTINCT.txt" | |
| # 入力ファイルの存在チェック | |
| if (-not (Test-Path $inputFile)) { | |
| Write-Error "入力ファイル $inputFile が見つかりません。" | |
| exit 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; | |
| class Program | |
| { | |
| static async Task Main(string[] args) | |
| { | |
| int countdownSeconds = 60; // カウントダウンする秒数 | |
| // ストップウォッチを開始 | |
| Stopwatch stopwatch = Stopwatch.StartNew(); |
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
| <p> | |
| これより先は、GitHubのサイトではありません。<br> | |
| 移動をご希望しない場合は、下の「移動しないで閉じる」ボタンをクリックしてください。 | |
| </p> | |
| <hr><?php echo $_SERVER[‘QUERY_STRING’]; ?><hr> | |
| <ul> | |
| <li><a href=”<?php echo $_SERVER[‘QUERY_STRING’]; ?>”>移動する</a></li> | |
| <li><a href=”javascript:window.open(‘about:blank’,’_self’).close();”>移動しないで閉じる</a></li> | |
| </ul> |
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
| <Grid> | |
| <StackPanel Width="400" Margin="50"> | |
| <!--First name--> | |
| <TextBlock Text="First name:" /> | |
| <TextBox Text="{x:Bind ViewModel.FirstName, Mode=TwoWay}"/> | |
| <!--Last name--> | |
| <TextBlock Text="Last name:" /> | |
| <TextBox Text="{x:Bind ViewModel.LastName, Mode=TwoWay}" /> |
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
| <StackPanel Name="myStackPanel"> | |
| <!-- ここにコントロールを配置します --> | |
| </StackPanel> |
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
| #[step1/6]S3バケットの新規作成 | |
| aws s3 mb s3://9999.lab1.example.jp | |
| #[step2/6]ユーザーを新規作成する | |
| aws iam create-user --user-name scott --tags Key=department,Value=car_shop_scott Key=location,Value=tuchiura_ibaraki_japan | |
| #[step3/6]アクセスキーを発行する | |
| aws iam create-access-key --user-name scott | |
| #[step4/6]新しいグループを作成する |
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
| function hogeGS() { | |
| let calendar = CalendarApp.getDefaultCalendar(); | |
| let title = "takoyaki-festival"; | |
| let startTime = new Date("2021/9/10 21:30"); | |
| let endTime = new Date("2021/9/10 21:40"); | |
| let options = { | |
| description: "ほげほげふがふが", | |
| location: "マイハウス" | |
| } | |
| calendar.createEvent(title, startTime, endTime, options); |
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
| Sub Hello() | |
| 'https://docs.microsoft.com/ja-jp/dotnet/api/system.windows.forms.messagebox?view=netcore-3.1 | |
| MessageBox.Show( "Hello World" ) | |
| End Sub |
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
| 'PM> Install-Package Npgsql | |
| Module Module1 | |
| Sub Main() | |
| Dim conn_str As String = "Server=127.0.0.1;Port=5432;User ID=oreid;Database=oredb;Password=orepassword;Enlist=true" | |
| Using conn = New Npgsql.NpgsqlConnection(conn_str) | |
| conn.Open() | |
| Console.WriteLine("Connection success!") | |
| End Using |
NewerOlder