end0tknr's kipple - web写経開発

太宰府天満宮の狛犬って、妙にカワイイ

2019-04-01から1ヶ月間の記事一覧

jQueryで右クリックによるコンテキスト メニュー表示 - jQuery-chromeContext ( javascript )

イベントは jQuery.on() で設定することで、後から追加されたelementにも対応できますし、 本体である jquery.chromeContext.js は、数10行の小規模で、後から改造するにしても楽ですので。 jQuery-chromeContext で十分かと思います。 http://travishorn.gi…

pgRouting を使用した 幾何学図形に対する経路探索

install postgres 11.2 & postgis 2.5 & mapserver 7.2 (2019年版) - end0tknr's kipple - 新web写経開発 先日のentryの続きとして、 pgRouting を install 任意の図形をメッシュ化 メッシュを経路とみなして、経路探索 を行います。 FEMの自動メッシュにあ…

redmineで、LDAP認証を有効にするには、LDAPフィルタの設定も必要?

そんな気がします

install postgres 11.2 & postgis 2.5 & mapserver 7.2 (2019年版)

install postgres 9.6 & postgis 2.3 & mapserver & mapserver 7.0 - end0tknr's kipple - 新web写経開発 国土交通省にあるGISデータをPostGISへインポート(2017年版) - end0tknr's kipple - 新web写経開発 上記2エントリの2019年版。 面倒なので、前回との…

centos 7 ( systemd )で postgresql-11 を自動起動

$ tar -xvf postgresql-11.2.tar.gz $ cd postgresql-11.2 $ less INSTALL --with-systemd Build with support for systemd service notifications. This improves integration if the server binary is started under systemd but has no impact otherwise.…

python v2.7 + selenium + firefox (geckodriver.exe) でfileの自動upload & download

多分、↓こう #!/usr/local/bin/python # -*- coding: utf-8 -*- import getopt import os import sys from selenium import webdriver from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import expected_condition…

linux netstat or lsof でポートを使用するプロセス(プログラム)を確認

sonarqube-7.7 を install後、起動を試みるも、できなかったので、調査。 $ ./sonar.sh console Running SonarQube... wrapper | --> Wrapper Started as Console wrapper | Launching a JVM... jvm 1 | Wrapper (Version 3.2.3) http://wrapper.tanukisoftw…

lizard (python製) で、C# (csharp) の 循環的複雑度 (cyclomatic_complexity)計測

https://github.com/terryyin/lizard c# の code metricsは、visual studio で計測できますが、 全srcの循環的複雑度をコマンドラインから一覧で生成したかった為、lizard を利用。 install & usage $ sudo /usr/local/bin/pip install lizard $ /usr/local/…

linux の cat やgrepは、PowerShellでは、Get-Content や Select-String

cat ≒ Get-Content 以下の通り、defaultでは、sjis以外文字化けするようです PS C:\home\end0tknr\tmp\PS1> Get-Content .\foo_sjis.txt これは、SJISのファイルです PS C:\home\end0tknr\tmp\PS1> Get-Content -Encoding UTF8 .\foo_utf8.txt これは、UTF-8…

(再) サーバにinstallされているOSやMWの一覧を自動収集したい (windows版)

サーバにinstallされているOSやMWの一覧を自動収集したい (windows版) - end0tknr's kipple - 新web写経開発 先日、記載したエントリではワンライナーで、読みづらいので power shell script らしく?修正しました。(以下) function do_main { $i = 0 #### wi…