Skip to content

Instantly share code, notes, and snippets.

制度

  • 有休…
  • 病休…
  • 育休…
  • 年収(月給、賞与など)…
  • 住宅補助…
  • 通勤補助…
  • 資格手当…
  • 人事評価…
/*
* SPI testing utility (using spidev driver)
*
* Copyright (c) 2007 MontaVista Software, Inc.
* Copyright (c) 2007 Anton Vorontsov <avorontsov@ru.mvista.com>
*
* 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.
*
@fenrir-naru
fenrir-naru / mod_rewrite_rules.apacheconf
Last active September 2, 2015 13:04 — forked from phillipadsmith/mod_rewrite_rules
Mobile site redirection using mod_rewrite
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
# If the visit is neither html nor directory, stop
RewriteCond %{LA-U:REQUEST_URI} !\.html?$ [NC]
RewriteRule ^ - [L]
@fenrir-naru
fenrir-naru / contacts2.db-to-vcf.php
Last active February 20, 2021 23:54 — forked from 1d10t/contacts2.db-to-vcf.php
android contacts2.db to vcard file (vcf) converter
<?php
ini_set('mbstring.language', 'Japanese');
function db(){
static $db = null;
if(!$db){
$db = new SQLite3(__DIR__.'/contacts2.db');
$db->busyTimeout(60*60*1000);