DHJJ [Hatsune's Journal Japan] blog

Hatsune's Journal Japan blog

目次

Blog 利用状況

ニュース

最新ツイート

運営サイト

Hatsune's Journal Japan
DHJJ

著作など

資格など

OCP
MCP

書庫

日記カテゴリ

わんくま同盟

2012年5月8日 #

[Azure]近いうちにサービス名が変更されるそうです

 

以前のサービス名 新しいサービス名
Windows Azure Compute Cloud Services
Windows Azure Platform - All Services All Services
Windows Azure CDN CDN
Windows Azure Storage Storage
Windows Azure Traffic Manager Traffic Manager
Windows Azure Virtual Network Virtual Network
AppFabric Cache Cache
AppFabric Service Bus Service Bus
AppFabric Access Control Access Control
SQL Azure SQL Database
SQL Azure Reporting Service SQL Reporting

そこかしこからAzureの名前がなくなっているのですがどうしたのでしょうか。

特に「SQL Database」とかこんなサービス名にされちゃったらBingで検索してもSQL Azureの情報にたどり着けないのではないでしょうか。

それとも、新しいサービス名の前には「Azure」がプレフィックスとしてつくのでしょうか?

Azure Cloud Services

Azure All Services

Azrue CDN

Azure Storage

Azure Traffice Manager

Azure Virtual Network

Azure Cache

Azure Service Bus

Azure Access Control

Azure SQL Database

Azure SQL Reporting

ほら!非常に分かりやすいでしょ?

ついでに略称も考えてみましょう。

ACS

AAS

ACDN

AS

ATM

AVM

AC

ASB

AAC

ASD

ASR

ほら重ならない!

posted @ 13:17 | Feedback (5)

[WindowsPhone]修正BSDライセンス

修正BSDライセンスのコードを使いそうなのでメモ。

  • 無保証である事の明記
  • 著作権の表示
  • ライセンス条文の表示
  • 初期にあった宣伝事項がない(ここが修正と呼ばれる所以)

 

  • ソースコードの複製・改変したオブジェクトコードを頒布可能
  • 複製・改変したソースコードの公開は不要
  • GPLのようなコピーレフトではない

posted @ 13:10 | Feedback (11)

[WindowsPhone]UIに日本語以外がつかわれているよ!

ClipMP4のバージョンアップで「UIに日本語以外がつかわれているよ!」とFailを食らったのでデザインとしてタイトルを英語にしているよとテスターノートに書いて再申請しましたがまた落とされたのでContactしてみました。

質問:

This application program uses English for a part of UI for designed reasons. However, Japanese is described in parallel as much as possible. As for becoming Fail because of the examination, I do not understand which part of UI violates it. Please teach which part of which screen corresponds specifying a concrete description.

 

この質問に対して次のような回答をもらいました。

Thank you for contacting the Windows Phone App Hub Developer Support Team. My name is Marisa and I will be assisting you. In order for us to better assist you with this issue; please reply to this email with the ApplicationGuid for the app you are referring to.

えーっと、どうすればいいですかwwww

posted @ 7:03 | Feedback (0)

[WindowsPhone]ページ間パラメタの設定

忘備録

ContextクラスのプロパティをURLパラメタとして設定する例

Dim urlParam As String
Dim param As New Text.StringBuilder
Dim venueType As Type = GetType(TVenueItem)
Dim members As Reflection.PropertyInfo() = venueType.GetProperties()

For Each member As Reflection.PropertyInfo In members
    param.Append("&")
    param.Append(member.Name)
    param.Append("=")
    param.Append(HttpUtility.UrlEncode(member.GetValue(target, Nothing).ToString))
Next
param.Replace("&", "?", 0, 1)
urlParam = param.ToString()
Me.NavigationService.Navigate(New Uri("/Views/DetailsPage.xaml" & urlParam, UriKind.Relative))

posted @ 3:15 | Feedback (0)