このGistに上がっているVBAソースファイルの概要
- Haiku-word.vb : Ver. 1.0, Wordの文章に俳句を縦書きで出力するモジュールです。
- Haiku-word2.vb : Ver. 1.1, 俳句を縦書きのテキストボックスに出力するモジュールです。
- Haiku-word3.vb : Ver. 1.2, Wordの文章に、ユーザーフォームから入力した任意の俳句を縦書きで出力するモジュールです。
このGistに上がっているVBAソースファイルの概要
このGistに上がっているVBAソースファイルの概要
このGistに上がっているC#ソースファイルの概要
// Auther : Nia Tomonaka | |
// Twitter : https://twitter.com/nia_tn1012 | |
[<EntryPoint>] | |
let main argv = | |
// 入力した俳句をシーザー暗号化します。 | |
// 但し、区切り文字として、半角スペースとカンマはそのままにします。 | |
printf "平文 :" | |
System.Console.ReadLine() |
<Window x:Class="RSSMVVM_CS5.MainWindow" | |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
xmlns:local="clr-namespace:RSSMVVM_CS5" | |
Title="RSS Reader ( C# 5.0版 )" Height="480" Width="640"> | |
<Window.DataContext> | |
<local:RSSViewModel x:Name="rssViewModel" | |
Url="http://chronoir.net/feed/" | |
GetRSSCompleted="rssViewModel_GetRSSCompleted"/> | |
</Window.DataContext> |
<Window x:Class="RSSMVVM_CS6.MainWindow" | |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
xmlns:local="clr-namespace:RSSMVVM_CS6" | |
Title="RSS Reader ( C# 6.0版 )" Height="480" Width="640"> | |
<Window.DataContext> | |
<local:RSSViewModel x:Name="rssViewModel" | |
Url="http://chronoir.net/feed/" | |
GetRSSCompleted="rssViewModel_GetRSSCompleted"/> | |
</Window.DataContext> |
<Application x:Class="ClassicStyle.App" | |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
xmlns:local="clr-namespace:ClassicStyle" | |
StartupUri="MainWindow.xaml"> | |
<Application.Resources> | |
<ResourceDictionary Source="/PresentationFramework.Classic, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35;component/themes/classic.xaml"/> | |
</Application.Resources> | |
</Application> |
#include <stdio.h> | |
#include <stdlib.h> | |
#include<time.h> | |
#define num 100 | |
int main(void) | |
{ | |
int a,b,ans,c,game=0,win=0; | |
do{ | |
game++; | |
srand((unsigned)time(NULL)); // rand()の初期化 |
// Author : Nia Tomonaka ( @nia_tn1012 ) | |
// ※まだ開発段階です。 | |
using System; | |
using System.Collections.Generic; | |
using System.Xml.Linq; | |
/// <summary> | |
/// すぱこーRSSフィードを取得するモジュール、 | |
/// すぱこーRSSリーダー、略して「すぱーダ」(SPADA)です。 |