MKVToolNix v46.0.0ダウンロード
更新内容
mkvmerge: when splitting, the placeholder %c can be used in thedestination file name. It’ll be replaced ...
NumPy 1.18.4 ダウンロード
更新内容
#16055 BLD: add i686 for 1.18 builds#16090 BUG: random: Generator.integers(2**32) always returned 0.
# ...
Windows10のInternet Explorer 11でサイトの互換表示を設定する方法
操作方法
1.Internet Explorer 11で互換表示を有効にしたいサイトを開きます。
2.「ツール」->「互換表示設定」をクリックします。
3.「追加するWebサイト」項目にURLを表示します ...
「go言語」rangeで配列の要素を出力するサンプル
サンプルコード
package mainimport ( "fmt")func main() {//配列 var value = int{{1, 2}, {3, 4}, {5, 6}} for i, v := range val ...「CSS3入門」ボタンを作る方法(font-size、border-radius、disabled)
1.font-sizeでボタンのサイズを指定する
サンプルコード
.button1 {font-size: 10px;}
.button2 {font-size: 12px;}
.button3 {fo ...
「CSS入門」rgb()で色を指定する方法
関数記法
rgb(red, green, blue)/* 整数値 */
rgb( 100%, 0%, 30% );/* 割合 */
サンプルコード
「CSS3入門」box-shadowを利用するサンプル
box-shadow
要素のフレームの周囲にシャドウ効果を追加する
サンプルコード
<style> div{width:120px;height:50px;background-color:yel ...「CSS3入門」要素の透過度(opacity)を指定する
書式
opacity: value|inherit;
IE向けの指定
filter:alpha(opacity=50)
Firefox向けの指定
filter:Alpha(o ...
「CSS3入門」border-imageを利用するサンプル
border-image
指定された要素の周りに画像を描く
指定可能のプロパティ
border-image-source, border-image-slice, border-image-width, b ...
「CSS3入門」border-radiusを使用して画像で角丸を表現する
border-radius プロパティ
要素の境界の外側の角を丸めます。
サンプルコード
<style> div{border:3px solid #a1a1a1;padding:5px 20px ...「CSS入門」attr()関数で属性値を取得するサンプル
書式
a:after {
content: ” (” attr(href) “)”;
}
サンプルコード
<style>a:afte ...「CSS入門」text-alignでテキストの水平方向を指定する
書式
1.中央揃え
h1 {text-align:center;}
2.右寄せ
p.date {text-align:right;}
3.両端揃え
p.main {text-align: ...
「CSS入門」text-decorationでテキストの装飾を指定する
書式
1.テキストに上線を引く
h1 {text-decoration:overline;}
2.テキストに取り消し線を引く
h2 {text-decoration:line-through;} ...
「CSSメモ」text-transformでアルファベットの大文字、小文字を変換する
1.大文字に変換
p.uppercase {
text-transform:uppercase;
}
2.1文字目だけ大文字
.text:first-letter{
text-tra ...
「Windows10」fsutilコマンドで任意サイズのファイルを作成する
1.書式
fsutil file createnew ファイル名 サイズ(バイト)
2.ファイルサイズ
1KB 1,024 byte
1MB 1,048,576 byte
1GB 1,073 ...
RegexOptions.IgnoreCaseを指定して大文字小文字区別しないサンプル
例1
Str = Regex.Replace(Str, “or”, “”, RegexOptions.IgnoreCase)
例2
(?i)^{3}$ ...
「Node.js」createServer()の使い方
サンプルコード
var http = require("http");function onRequest(request, response) { response.writeHead(200, {"Content-Type" ...正規表現に基づくランダムテキストを作成するサンプル
サンプルコード
String regex = “{5,8}c”;
Xeger generator = new Xeger(regex);
String result = generato ...