「C#入門」今日以前の古いファイルを削除する
サンプルコード:
//フォルダパス
string strDirPath = Server.MapPath(“~”) + “\\excel\\”;
Director ...
[python開発]マルチスレッドでhttp負荷検証を実現する
pythonコード:
# Python version 3.3
__author__ = ‘Toil’
import sys, getopt
import threading ...
golang入門–json形のデータを操作するサンプルコード
サンプルコード
package main
import (
“fmt”
“encoding/json”
)
type User s ...
go開発ツールbeegoの基本使い方
1.beegoでapiプロジェクトを作成
bee api ad-core -driver=mysql -conn=root:root@tcp(127.0.0.1:3306)/database
2.beegoでテーブ ...
PDFファイルをExcelに変換するサンプルコード
Option Explicit
Dim rowsNum
rowsNum = 0
‘———————— ...
Pythonでフォルダのツリーを作成するプログラム
ファイル名:
directorytree.py
pythonコード:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
im ...
pythonでファイルを読み取って、文字列を操作する
pythonコード:
f = open(‘c:\\names_startnews24.txt’);
lang =0;
result =””;
for li ...
HTML5とCanvasで作られたclockのサンプル
htmlコード
<img src=”clogo.png” id=”simg” style=”display:none”/>
< ...
javascriptで最初の文字は大文字を変換する
例: path->Path , list->List
javascriptコード:
“arkgame.com is a technical site”.replace(/(\w) ...
Redmineのプラグインのインストール
1.必要なプラグインはすべてredmineのpluginsフォルダにコピーする
2.必要なGEMSをインストール
bundle install –without development test rma ...
「PHPの入門」PHP関数(mt_rand)で乱数を生成するサンプルプログラム
PHPコード:
<?php
/*
* array unique_rand( int $min, int $max, int $num )
* 一定数量の非重複ランダム数字を生成
* $ ...
「PHPの学習」phpでクッキー(cookie)を設定、取得、削除する方法
1.cookieを作成、更新
例:setcookie(“username”,”tokyo_startnews24,time()+3*7*24*3600);
setcookie( ...
「PHPの学習」PHPで指定したディレクトリ内のファイルサイズを取得するサンプルプログラム
PHPコード:
<?php
function dirsize($dir) {
@$dh = opendir($dir);
$size = 0;
while ($file ...
PHPの正規表現式でコードをmd5エンコードされたかどうかを検証する方法
phpコード:
function is_md5($password) {
return preg_match(“/^{32}$/”, $password);
}
「PHPの入門」JavaScript confirm関数、削除ヒントメッセージ
<a href=”delete.php” onclick=”return confirm(‘このコンテンツを削除しますか?’)”>コンテンツを削除&l ...
「PHPの入門」PHPでheader()関数の使い方
//エンコーディングを定義する
header( ‘Content-Type:text/html;charset=utf-8 ‘);
//Atom
header(‘Cont ...
「jQuery入門講座 」jQueryで最初要素を取得する方法
最初の要素を取得し、いくつかの方法があります。
$(‘ul’).find(‘li:first’);
$(‘ul li:first’);
$ ...
「PHPの学習」phpで現在表示した動態PHPを静止化させる、静的htmlをサーバへ生成するサンプルプログラム
PHPコード:
1.呼び出す関数を宣言
$isHTMLModel=0;
$spacing=1;
$HtmlPath=UseHtmlPage($isHTMLModel,$spacing);
C ...