2022-01-01から1ヶ月間の記事一覧
jqueryやbootstrap非依存な responsive & tab menu & carousel html - end0tknr's kipple - web写経開発 手習いとして、上記entryにある js を class & arrow function 化しました。 https://end0tknr.github.io/sandbox/responsive/index2.html 'use strict…
参考url https://tabula.technology/ http://deathon2legs.blogspot.com/2018/08/tabulapdf.html 実行方法 step.1 https://tabula.technology/ から、 例えば、tabula-win-1.2.1.zip をダウンロード & 解凍 step.2 以下のような .batファイル(※1)を作成し、…
なんとなく、以下のような感じでしょうか #!/usr/bin/perl use strict; use warnings; use Data::Dumper; my $SEED_BASE = '(3hvKT1w0!W5xA}_/9^eDpR{Gt4S[coPNMnkHiL' 'jUmY27r).Xz]lZFyECs=qgBaOVbId8~-J6Qfu'; my $PCP_TABLE = {}; my $FIXED_NUM = 383; …
https://metacpan.org/pod/Pg Pg moduleは、既にサポート終了していますが、インストールしてみた。 $ wget https://cpan.metacpan.org/authors/id/M/ME/MERGL/pgsql_perl5-1.9.0.tar.gz $ tar -xvf pgsql_perl5-1.9.0.tar.gz $ cd pgsql_perl5-1.9.0 $ expo…
www.e-stat.go.jp 政府統計 e-stat の データ一覧は、上記urlからダウンロードできるのかもしれませんが、 よく分かりませんでしたので、BeautifulSoup for python で scraping #!python3 # -*- coding: utf-8 -*- from bs4 import BeautifulSoup import req…
facebook conversion api client for perl - end0tknr's kipple - web写経開発 先程のentryのphp版です 目次 form_fb_capi.php XeimForm4FacebookConversion.php sexyxeim_com.json 実行例 form_fb_capi.php
参考url https://business.facebook.com https://developers.facebook.com/docs/graph-api/changelog?locale=ja_JP https://developers.facebook.com/docs/marketing-api/conversions-api/using-the-api#send https://developers.facebook.com/docs/marketin…
2021/11/26に発表された www.fsa.go.jp によれば、【真因】は システムに係るリスクと専門性の軽視 IT現場の実態軽視 顧客影響に対する感度の欠如、営業現場の実態軽視 言うべきことを言わない、言われたことだけしかしない姿勢 らしい。
ポイントは、xargsの「-n 1」オプションと、tarの「O」オプション $ find . -name "*.tar.gz" | xargs -n 1 tar zxvfO | grep save_hogehoge
以下、三菱総研の 2021/4/28資料です。 データで読み解くポストコロナへの人財戦略—FLAPサイクル実現に向けて | 三菱総合研究所(MRI) データで読み解くポストコロナの人財戦略.pdf
nginx + lua-nginx-module + python でシングルサインオン(sso)認証を書いてみた - end0tknr's kipple - web写経開発 先日、上記のentryを記載しましたが、 以下のentryのように http_auth_request_module があれば、 lua-nginx-module よりも楽かも Nginx …
wordpress + php + iis の構成は殆ど見たことのない構成ですが、メモ。 目次 step 1 - php + iis for win11 環境 step 2 - mysql for wordrecreate step 3 - download wordrecreate & unzip step 4 - edit wp-config.php step 5 - access install.php step 1…
install postgres 14.1 from source to cent 7.9 - end0tknr's kipple - web写経開発 install postgis & mapserver from source to postgres 14.1 - end0tknr's kipple - web写経開発 国土交通省にあるGISデータをPostGISへインポート(2022年版) - end0tknr'…
install postgis & mapserver from source to postgres 14.1 - end0tknr's kipple - web写経開発 国土交通省にあるGISデータをPostGISへインポート(2017年版) - end0tknr's kipple - web写経開発 「更に」先程の上記entryの続き & 前回2017年の上記entryの20…
install postgres 14.1 from source to cent 7.9 - end0tknr's kipple - web写経開発 install postgres 9.6 & postgis 2.3 & mapserver & mapserver 7.0 - end0tknr's kipple - web写経開発 先程の上記entryの続き & 前回2017年のinstall postgis & mapserve…
install postgres 12.3 from source code to centos8 - end0tknr's kipple - web写経開発 以前のentryの2022年版です。 目次 事前準備 postgresのinstall postgresの設定? 自動起動 事前準備 $ sudo yum install systemd-devel postgresのinstall $ wget --n…
目次 php 7.4 の install php for win の ダウンロード & 解凍 php.ini 作成 システム環境変数:PATHに追加 iis for win 11の有効化 iis 設定 モジュールマップ追加 既定のドキュメント追加 接続テスト c:/inetpub/wwwroot の権限変更 test.php の配備と、接…
目次 参考url 依存package install mysql install config mysql 自動起動 root パスワードの変更 step1 - skip-grant-tables で、パスワードなし接続を有効化 step2 - rootパスワードを null 化 step3 - skip-grant-tables で、パスワードなし接続を無効化 s…
selenium + chromedriver.exe + python で suumo の 物件詳細取得 - end0tknr's kipple - web写経開発 先程、上記entryを記載しましたが、 selenium の場合、動作があまりに遅い... 今回の場合、画面に対し click 等の操作が不要ですので、 改めて Beautiful…
先程の上記entryの続きです。先程の python script で取得した 検索結果一覧のurlに記載されている物件詳細を取得します。 #!python3 # -*- coding: utf-8 -*- # http://chromedriver.chromium.org/getting-started from selenium import webdriver from sel…
BeautifulSoup for python3 による scraping の練習 - end0tknr's kipple - web写経開発 と、書いてはみたものの、selenium + chromedriver.exe でも同様のことは 実現できますので、suumo の 戸建/マンション の 新築/中古の一覧を表示する urlを一覧化 #!p…
機械学習を使って東京23区のお買い得賃貸物件を探してみた 〜スクレイピング編〜 - データで見る世界 ↑こちらを写経し、↓こう書きました #!python3 # -*- coding: utf-8 -*- from bs4 import BeautifulSoup import requests import csv import re import sys…