- 有休…
- 病休…
- 育休…
- 年収(月給、賞与など)…
- 住宅補助…
- 通勤補助…
- 資格手当…
- 人事評価…
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
ini_set('mbstring.language', 'Japanese'); | |
function db(){ | |
static $db = null; | |
if(!$db){ | |
$db = new SQLite3(__DIR__.'/contacts2.db'); | |
$db->busyTimeout(60*60*1000); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Options +FollowSymLinks | |
RewriteEngine On | |
RewriteBase / | |
# If the visit is neither html nor directory, stop | |
RewriteCond %{LA-U:REQUEST_URI} !\.html?$ [NC] | |
RewriteRule ^ - [L] | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* SPI testing utility (using spidev driver) | |
* | |
* Copyright (c) 2007 MontaVista Software, Inc. | |
* Copyright (c) 2007 Anton Vorontsov <[email protected]> | |
* | |
* This program is free software; you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation; either version 2 of the License. | |
* |