Google Chromeのメモを残します。
オフラインインストール https://www.google.com/intl/ja/chrome/browser/eula.html?standalone=1
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
namespace Myaumyau.Collections | |
{ | |
/// <summary> | |
/// 型指定されたコレクションの基本機能を提供します。 | |
/// </summary> | |
/// <typeparam name="T">要素の型。</typeparam> |
using (MemoryStream stream = new MemoryStream()) | |
{ | |
using (StreamWriter writer = new StreamWriter(stream)) | |
{ | |
SimpleWorkerRequest workerRequest = new SimpleWorkerRequest( | |
"/", Path.GetTempPath(), "/index.aspx", "", writer); | |
HttpContext httpContext = new HttpContext(workerRequest); | |
HttpContext.Current = httpContext; | |
} | |
} |
Google Chromeのメモを残します。
オフラインインストール https://www.google.com/intl/ja/chrome/browser/eula.html?standalone=1
(function() { | |
var _win = window, | |
_ua = navigator.userAgent, | |
_env = { | |
ua : _ua, | |
windows: '', | |
mac : 0, | |
android: 0, | |
ios : 0, | |
ie : 0, |
// http://blog.masa1115.com/?p=1062 | |
using System; | |
using System.Collections.Generic; | |
using System.Reflection; | |
namespace XXX.Izu.Library.Utility.Enum | |
{ | |
/// <summary>; | |
/// Enum拡張属性ベースクラス |
// テキストが見つかったときに Find Toolbar をフラッシュするか。 | |
// 0: Find Toolbar は前から前からフラッシュしており、見つかったときにフラッシュしない | |
// 1: 見つかったときに Find Toolbarフラッシュする。 | |
user_pref("accessibility.typeaheadfind.flashBar", 0); | |
// 自動更新 | |
user_pref("app.update.auto", false); | |
// タブプレビュー機能 | |
user_pref("browser.ctrlTab.previews", true); |
@echo off | |
setlocal | |
rem カレントドライブ・カレントディレクトリをバッチファイルのディレクトリにする | |
cd /d %~dp0 | |
rem ====================================================================== | |
rem 環境パラメータ設定 | |
if not exist GetVisualSourceSafeHistory.ini ( | |
echo GetVisualSourceSafeHistory.iniが存在しません。 |
SSLポートのバインド確認
cscript.exe adsutil.vbs GET /w3svc/<サイト識別子>/SecureBindings
SSLポートのバインド設定
cscript.exe adsutil.vbs SET /w3svc/<サイト識別子>/SecureBindings ":<ポート番号>:<ホストヘッダー>"
SSLポートのバインド削除
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Web.UI; | |
using System.Web.UI.WebControls; | |
namespace WebControlLibrary | |
{ | |
/// <summary> | |
/// ページング機能を提供します。 |