This file contains 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
private GrpcChannel channel; | |
private IMagicOnionAppService client; | |
private async void connect() | |
{ | |
channel = GrpcChannel.ForAddress("http://localhost:5000"); | |
client = MagicOnionClient.Create<IMagicOnionAppService>(channel); | |
txtResult.AppendText("Connect: http://localhost:5000 \r\n"); | |
This file contains 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 MagicOnion; | |
using MagicOnion.Server; | |
using MagicOnionApp.Shared; | |
using Microsoft.AspNetCore.Builder; | |
using Microsoft.AspNetCore.Hosting; | |
using Microsoft.AspNetCore.Server.Kestrel.Core; | |
using Microsoft.Extensions.DependencyInjection; | |
namespace MagicOnionApp.Server | |
{ |
This file contains 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
# カーナビ用に変更するには以下の設定にする | |
# 320x240(16:9/4:3, MPEG-4, AAC-LC, 1000kbps) | |
#サポートしているffmpegは | |
# ffmpeg version 6.0-essentials_build-www.gyan.dev | |
#です | |
if($Args.Length -ne 1){ | |
Write-Output "Argument Error"; | |
exit(1); |
This file contains 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; | |
namespace ReiwaTestConsole | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
var jc = new System.Globalization.JapaneseCalendar(); |
This file contains 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
$Folders = Get-ChildItem * | Where-Object { $_.PSIsContainer} | |
foreach($dName in $Folders) | |
{ | |
echo "Search: $dName" | |
$title = $dname.Name | |
$targerfiles = Get-ChildItem *.MP4 | |
foreach($file in $targerfiles) | |
{ | |
if ($file.Name -like "*$title*") | |
{ |