2014-01-27から1日間の記事一覧

SMTP-AUTHの認証テスト

http://vine.1-max.net/postfix-SMTP-Auth.htmlパスワード生成 $ sudo perl -MMIME::Base64 -e 'print encode_base64("ユーザID\0ユーザID\0パスワード");' dGVzdAB0ZXN0AHRlc3QyMjI= #エンコードされたパスワード # telnet localhost 25 ← 25番ポートに接続…

OpenJSCADの実験

var t_wood = 5.5; var width = 100; var height = 50; function main() { return difference( difference( cube({size:[width,t_wood,height],center:true}), cube({size:[t_wood,t_wood,10],center:true}).translate([width/2-t_wood/2,0,height/2-t_wood-…

wxPythonで複数ウィンドウを表示する

http://bty.sakura.ne.jp/wp/archives/48 #!/usr/bin/env python #-*- coding:utf-8 -*- import wx class ChildFrame(wx.Frame): def __init__(self,parent): wx.Frame.__init__(self,parent,-1,"child frame",pos=(100,100)) class MyWindow(wx.Frame): def…