「Ruby入門」RubyはIEの中でダイアログボックスを開けるプログラム
rubyコード:
require “win32ole”
def ieInputBox( msg, default )
ie = WIN32OLE.new(“Interne ...
「Ruby入門」RubyでIE解析ページを呼び出して、解析結果を取得するプログラム
rubyコード:
require ‘win32ole’
web_browser = WIN32OLE.new(‘InternetExplorer.Application̵ ...
RubyでExcelファイル仁対してシート操作を追加するプログラム
rubyコード:
require ‘win32ole’
excel = WIN32OLE.new(“excel.application”)
excel = t ...
「Ruby入門」フォルダのすべてのファイルをトラバースして、ファイル名を出力するプログラム
rubyコード:
def traverse_dir(file_path)
if File.directory? file_path
Dir.foreach(file_path) do |file|
if ...
「Ruby入門」RubyでWindows Excelを呼び出して電子スプレッドシートを生成するプログラム
rubyコード:
require ‘win32ole’
excelobj = WIN32OLE.new(“excel.application”)
exce ...
「Ruby入門」RubyでのWinsockの使い方
rubyコード:
require “win32ole”
ws = WIN32OLE.new “MSWinsock.Winsock”
#ローカルIPプロ ...
「Ruby入門」Ruby Using WIN32OLE with PowerPointの使い方
rubyコード:
require ‘win32ole’
powerobj = WIN32OLE.new(“powerpoint.application”)
「Ruby入門」RubyでOpenFLを練習するプログラム
rubyコード:
require “opengl”
require “glut”
$light_diffuse =
$light_position = ...
wxRubyを使用してGUIアプリケーションを作る
rubyコード:
#!/usr/bin/ruby -w
require ‘wxruby’
class TroutApp < Wx::App
def on_init
RubyでGtk::Windowを継承するプログラム
rubyコード:
require “gtk”
class SampleWindow < Gtk::Window
def initialize
super
RubyでハッシュデータをYAMLに回転するプログラム
rubyコード:
require ‘yaml’
puts ({ ‘measurements’ => ‘metric’ }.to_yaml ...
RubyでYAML設定ファイルを読み取りと書き込み
rubyコード:
equire ‘yaml’
configuration = { ‘color’ => ‘blue’,
‘ ...
「PHP入門」サーバーautoindex効果を実現するプログラム
サンプルコード:
<?php
//ファイル閲覧プログラム
error_reporting(0);
$pwd = empty($_GET) ? ‘./’ : $_GET; ...
「PHP言語」PHPでphotoshopに画像の文字を書き込み情報を取得
PHPコード:
$image_info = array();
$size = getimagesize(‘test20140715.jpg’, $info);
if(isset($i ...
「PHP入門」gzinflateとbase64_decode暗号、復号プログラム
サンプルコード:
<?php
function encode_file_contents($filename) {
$type=strtolower(substr(strrchr($filename, ...
「PHP入門」配列操作関数サンプル
1.利用メッソッド
array_key_search
array_multip
array_mean
array_rands
2.サンプルコード
<?php
$arra ...
XSSセキュリティをフィルタするプログラム
PHPコード:
function remove_xss($val) {
//remove all non-printable characters. CR(0a) and LF(0b) and TAB(9) are a ...
「PHP入門」文字列はUTF-8コードかどうかを検査する
サンプルコード:
function is_utf8($string){
return preg_match(‘%^(?:
# ASCII
| # non-overlong 2-byte ...