Android

方法1
WebSetting settings = webView.getSettings();
settings.setLayoutAlgorithm(LayoutAlgorithm.SINGLE_COLUMN); ...

Nginx

定義コード:
log_format logstash_json ‘{ “@timestamp”: “$time_local”, ‘
‘ ...

Nginx

1.ドメインからwwwへリダイレクト
server {
server_name arkgame.com;
rewrite ^/(.*)$ permanent;
}
2.wwwドメインからトップ ...

Server

1.nginxがipv6をサポートするかどうかを確認
#/usr/local/nginx-1.7.0/sbin/nginx -V
nginx version: nginx/1.7.0
built by gcc ...

Server

設定コード:
server {
server_name arkgame.com www.arkgame.com;
root/data/site/www.arkgame.com;
location/{ ...

Server

設定コード:
server {
listen 80;
server_name www.arkgame.com;
root/data/site/www.arkgame.com;
index ind ...

Server

設定内容:
server {
set $host_path “/data/site/www.arkgame.com”;
access_log/data/logs/nginx/www.ar ...

Linux

使用例
1.正引き結果を表示
# dig www.sample.com

2.簡易表示
# dig www.sample.com +short

3.NSレコードを取得
# dig ...

Mac OS X

ダウンロード:
開発元サイトからダウンロード
softpediaサイトからダウンロード

更新内容:

Fix bug with auto-completion of addresses in Thund ...

CSS

書式
疑似クラス::疑似要素
擬似クラス a:link
擬似要素 ::before
使用例

<style>/*擬似クラスのa:lilnk 擬似要素の::before*/a:link:: ...

Windows10

ダウンロード:
開発元サイトからダウンロード
softpediaサイトからダウンロード
cnetサイトからダウンロード

techspotサイトからダウンロード

更新内容:

New ...

C#

使用例

using System;namespace ProjectKm{ class TestInfo {//メソッドtestFuncA public string testFuncA(int x) { return x ; ...

Windows10

ダウンロード:
開発元サイトからダウンロード
softpediaサイトからダウンロード
techspotサイトからダウンロード

更新内容:

New Detections:
Generic ...

Kotlin

使用例

fun main() { val cftMp = mutableMapOf("name" to "A001", 2 to "B002", 3 to "C003") println(cftMp) cftMp = "D004 ...

Windows10

ダウンロード:
開発元サイトからダウンロード
softpediaサイトからダウンロード
cnetサイトからダウンロード

 

Advanced Uninstaller PRO i ...

CSS

説明
:last-child 疑似クラスは、兄弟要素のグループの中で最後の要素を表します。
htmlコード

<ul> <li>TestData A001 項目が選択されない</li& ...

Linux

1.システムに依存パッケージをインストール
sudo apt-get install build-essential git curl imagemagick nodejs redis-server libcurl4-open ...

Ruby

書式
match(/\d+/)
使用例

strA = "Study 111 Ruby 222 Skill in arkgame"strB = "Study Ruby 444 Skill in arkgame"st ...