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
| reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\DNSClient" /v EnableMulticast /t REG_DWORD /d 0 /f |
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
| Get-NetConnectionProfile | Where-Object NetworkCategory -eq "Public" | `Set-NetConnectionProfile -NetworkCategory Private |
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
| #include "stdio.h" | |
| int main(void){ | |
| float a = 0.00; | |
| float b = 0.00; | |
| printf("Input varialbe A and B : "); | |
| if ( scanf("%f,%f",&a,&b) != 2 ) { | |
| printf("Failed to scan...\n"); | |
| return -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
| rem 1Kトーンを再生する | |
| ECHO OFF | |
| ffplay -f lavfi -i "sine=frequency=1000" |
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
| Dim root As String = "c:\wwwroot\" ' doc root | |
| Dim prefix As String = "http://localhost:8888/" | |
| Dim listener As New HttpListener() | |
| listener.Prefixes.Add(prefix) | |
| listener.Start() | |
| While (True) | |
| Dim context As HttpListenerContext = listener.GetContext() | |
| Dim req As HttpListenerRequest = context.Request |
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
| Now=$(date +%Y.%m.%d.%H%M%S) | |
| go build -ldflags "-X main.buildedAt=$Now" |
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
| @ShutdownOnFailedCommand 1 | |
| @NoPromptForPassword 1 | |
| login anonymous | |
| force_install_dir /home/steam/srcds/csgo1/ | |
| app_update 740 | |
| quit |