正しい実装でt.coの見えない世界へ
document: https://dev.twitter.com/docs/streaming-api/user-streams
正しい実装でt.coの見えない世界へ
document: https://dev.twitter.com/docs/streaming-api/user-streams
| Twitter API 1.1 の現行APIの制限 | |
| (REST API v1.1 Limits per window by resource) | |
| https://dev.twitter.com/docs/rate-limiting/1.1/limits | |
| ・15分辺り最大何回実行できるか | |
| Timelines | |
| GET statuses/mentions_timeline 15回 | |
| GET statuses/user_timeline 180回/user, 300回/application |
| /// <summary> | |
| /// <see cref="TextBlock"/> にタイマー機能を付与します。 | |
| /// </summary> | |
| public class TimerBehavior : Behavior<TextBlock> | |
| { | |
| private DispatcherTimer timer; | |
| #region Interval 依存関係プロパティ | |
| /// <summary> |
| #!/bin/bash | |
| # README.mdというファイルに単純にechoしているため、既にREADME.mdがあった場合内容が削除される 注意 | |
| echo -e "**Index**\n\n" >README.md | |
| # フォルダが多くなると飛ぶのが面倒なので、[TOC]追加 | |
| # TOCに対応していない場合などは考慮していない | |
| echo -e "[TOC]\n\n---" >>README.md | |
| # ファイルへのリンク部分を出力する関数 | |
| # $1が検索フォルダ指定 |
| using Windows.UI.Xaml.Automation.Peers; | |
| using Windows.UI.Xaml.Automation.Provider; | |
| using Windows.UI.Xaml.Controls; | |
| namespace Tetraptera.Common.Extensions | |
| { | |
| public static class ButtonExtension | |
| { | |
| public static void RaiseClick(this Button button) | |
| { |