この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() |
| #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)です。 |
| <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> |
| <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> |
| <?php | |
| /* | |
| Plugin Name: PHP Info. Preview | |
| Plugin URI: | |
| Description: PHPの情報(phpinfo())を表示するプラグイン | |
| Author: Nia Tomonaka | |
| Version: 0.1 | |
| Author URI: https://chronoir.net/ | |
| License: GPL2 | |
| */ |
| /* | |
| * Copyright (C) 2014 The Android Open Source Project | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |