TL;DR: I explain how to detect TLS 1.0 connections and, by way of custom headers, warn the user about the coming change to more modern TLS versions.
function setenv($key, $value, $target) { | |
if (! $target) { | |
$target = "User" | |
} | |
if (($target -eq "Process") -Or ($target -eq "User") -Or ($target -eq "Machine")) { | |
$now = [environment]::getEnvironmentVariable($key, $target) | |
if ($now) { | |
$tChoiceDescription = "System.Management.Automation.Host.ChoiceDescription" | |
$result = $host.ui.PromptForChoice("", "Already Exists. Overwrite ?", @( | |
New-Object $tChoiceDescription ("&Yes") |
Install https://github.com/vvo/selenium-standalone and start it.
Then run the test script. babel-node test.js
.
更新: | 2024-05-20 |
---|---|
作者: | @voluntas |
バージョン: | 2024.1 |
URL: | https://voluntas.github.io/ |
Introducing Incremental DOM — Google Developers — Medium
Reactやvirtual-dom、Glimmer(Ember)などVirtual DOMの実装は色々あるが、これらのVirtual DOM実装には2つの問題がある
- 既存のテンプレート言語を利用していない(しにくい)
- モバイルでのパフォーマンス、特にメモリに関しては大きすぎる
これらを解決するためにIncremental DOMと言うものを作っている(WIP)
Moved to git repository: https://github.com/denji/golang-tls
# Key considerations for algorithm "RSA" ≥ 2048-bit
openssl genrsa -out server.key 2048
# Key considerations for algorithm "ECDSA" ≥ secp384r1
# List ECDSA the supported curves (openssl ecparam -list_curves)
明けましておめでとうございます. @susisu2413 です.
この記事は OUCC アドベントカレンダー 2014 21日目の記事です. 昨日は @spring_raining 氏による大学のグループ開発でgitを布教する方法でした.
盛んに「関数型で脱アルゴリズム」などと叫ばれる昨今ですが, その真偽はさておき,
処理の単位として関数を用いるのは処理の一般化や再利用をする場合に役に立つことが多いです (たぶん).
関数型っぽい処理としては, 生の JavaScript では Array
のメソッドに map
, filter
, reduce
などがあります
#/bin/bash | |
# コンパクトなRaspbianを作るやつをベースに自己流にアレンジしたもの | |
# | |
# ベース: http://www.cnx-software.com/2012/07/31/84-mb-minimal-raspbian-armhf-image-for-raspberry-pi/ | |
# 前のバージョン: https://gist.github.com/Akkiesoft/5426660 | |
sudo apt-get update | |
# if you want remove Desktop, Uncomment below 2 lines. | |
#rm -rf python_games ocr_pi.png Desktop/*.desktop |
スタートアップ企業 Silk が、Haskellを採用した理由。
http://engineering.silk.co/post/31920990633/why-we-use-haskell
As a newly started company, we have a lot of technical decisions to make. One of the important ones is the choice of a programming language. Since we’re building a web application, this goes for both the client (i.e. the web browser) and the server.
新しく始めた会社として、我々はたくさんの技術的決定を行わなければなりません。中でも重要なのは、プログラミング言語の選択です。我々はウェブアプリケーションを作っていたので、この選択がクライアント(Webブラウザなど)とサーバの両方で必要になります。
On the client, there wasn’t much discussion. Javascript is the only viable choice, unless you want to use Flash or similar plugin-based models. But on the server, we had more freedom. Popular choices for web applications are dynamically typed languages like Ruby, Python and PHP, and statically typed languages like Java and C#.