Python Wine 上の MT4から ZeroMQ を使って Linux の pyzmq の通信をさせる こんにちは。キリンです。 最近、年に数度のMQLを書くときがきたのですが、Pythonに慣れまくっていると苦行でしかないですねw昔は毎日のようにMQLばかり書いていた時期があるのが懐かしいです。あのころにPythonの有用性を知ってい... 2019-02-08 Python
Python numpy の2つ行列で片方にあるものだけを抽出する。 numpy で2つの時間のインデックスをarrayデータとして持っていて、x にはない時間のインデックスがyにはあって、xにはないのでyから取り除きたいときにどうすればよいかすぐにはわからなかったため、備忘録を残しておきます。 In : ... 2019-01-30 Python
作業メモ Synology DS216j の MySQL に外部からつなぐ Synology DS216j をNAS(RAID1 12TB)として使っています。もっぱらデータ保存用です。他のパソコンをNAS用に購入してもいいなとは思っているのですが、ヘルス管理の定期処理などがとても手間な気がして、Synolog... 2019-01-25 作業メモ
VMWare VMWare Player をヘッドレスモードで使う。 If you want to run a headless VM under VMPlayer simply add the following to your vmware preferences file ($HOME/.vmware/... 2018-12-30 VMWare
Python swig で foofunction is private と怒られた時。 /usr/include/c++/5/bits/ios_base.h:855:5: error: ‘std::ios_base::ios_base(const std::ios_base&)’ is private ios... 2018-12-20 Python
Python DictCursor に AttrDict を指定する import pymysql from dictmysql import DictMySQL from attrdict import AttrDict pymysql.cursors.DictCursor.dict_type = Att... 2018-12-03 Python作業メモ
Python Python requests に DefaultTimeout を設定する Pythonコード import requests import pytest from requests.adapters import TimeoutSauce for default_timeout in : def __... 2018-11-30 Python作業メモ
Python Python Mock で オリジナルのインスタンメソッドのを呼びたい時 import os import requests from urllib3.poolmanager import PoolManager from requests.adapters import HTTPAdapter from ur... 2018-11-19 Python作業メモ
Python Python 2, Python 3 で string を bytes に変換する。 # Python 2 and 3: from builtins import bytes, chr data = 'mytext' data = bytes(data, 'ascii') 共通の処理系にしておきたかったので、メモ書き。... 2018-11-09 Python作業メモ
Python ctypes で c_char array を c_char_p に変換する data = bytearray.fromhex('28d03bc3ee0243fa7d25a56dc042311d') p1 = (ctypes.c_char * len(data)) p1 = p1.from_b... 2018-11-08 Python作業メモ