Health Care (HIPAA)

The Health Insurance Portability and Accountability Act (HIPAA) is primarily focused on the health care and insurance industries but has far-reaching impact. Its primary intent is to allow employees to move between employers and continue to have health care coverage.

Continue reading "Health Care (HIPAA)" »

Human Genome Project

Begun formally in 1990, the U.S. Human Genome Project was a 13-year effort coordinated by the U.S. Department of Energy and the National Institutes of Health. The project originally was planned to last 15 years, but rapid technological advances accelerated the completion date to 2003. Project goals were to

  • identify all the approximately 20,000-25,000 genes in human DNA,
  • determine the sequences of the 3 billion chemical base pairs that make up human DNA,
  • store this information in databases,
  • improve tools for data analysis,
  • transfer related technologies to the private sector, and
  • address the ethical, legal, and social issues (ELSI) that may arise from the project.

To help achieve these goals, researchers also studied the genetic makeup of several nonhuman organisms. These include the common human gut bacterium Escherichia coli, the fruit fly, and the laboratory mouse.

A unique aspect of the U.S. Human Genome Project is that it was the first large scientific undertaking to address potential ELSI implications arising from project data.

Another important feature of the project was the federal government's long-standing dedication to the transfer of technology to the private sector. By licensing technologies to private companies and awarding grants for innovative research, the project catalyzed the multibillion-dollar U.S. biotechnology industry and fostered the development of new medical applications.

Sequence and analysis of the human genome working draft was published in February 2001 and April 2003 issues of Nature and Science. See an index of these papers and learn more about the insights gained from them.

For more background information on the U.S. Human Genome Project, see the following

HRM 人事・雇用

厚生労働省 独立行政法人一覧
独立行政法人雇用・能力開発機構
財団法人産業雇用安定センタ
独立行政法人高齢・障害者雇用支援機構
ハローワークインターネットサービス

※雇用問題を扱う個人サイトではDR.Kさんが分かりやすく解説している。

「民法第623条(雇傭)
雇傭は当事者の一方が相手方に対して労務に服することを約し、相手方がこれにその報酬を与えることを約するに因りてその効力を生ず。」

「労働は契約であり、企業と労働者は、自由な意思による対等な立場で契約を結び、互いに契約相手方を尊重し、互いに義務の履行に誠意を持って全力を尽します。」

Continue reading "HRM 人事・雇用" »

color 色の指定

<font color="..."> や <body bgcolor="..."> で色を指定する
 color="#FF0000" ... 色のRGB値を指定する。
 color="red" ... 色の名前を指定する。

RGB 値は #ff0000 のように、光の三原色である赤(R)、緑(G)、青(B)の配分を 00〜FF までの16進数で記述する。

一般に、値が大きいと明るい色、小さいと暗い色、RGBの値の差が大きいと派手な(ケバケバしい)色、差が小さいと淡い色になる。

HTML3.2 で定義されている下記の16色の名前は、大半のブラウザで安心して使用することができる。

Black (#000000)
Gray (#808080)
Silver (#C0C0C0)
White (#FFFFFF)
Red (#FF0000)
Yellow (#FFFF00)
Lime (#00FF00)
Aqua (#00FFFF)
Blue (#0000FF)
Fuchsia (#FF00FF)
Maroon (#800000)
Olive (#808000)
Green (#008000)
Teal (#008080)
Navy (#000080)
Purple (#800080)

テキストの書式

文字や段落、画像などの表示形式を指定するのが「スタイル」とよばれるもので、あらかじめ決められた方法(文法)で指定する。たとえば、「この文は赤色で活字の大きさは12ポイント」というテキストを、赤色で活字の大きさを12ポイントで表示するときは、

<span style="color:red; font-size:12pt;">この文は赤色で活字の大きさは12ポイント</span>

と記述する。フォントの色は "color : red;" で定義されている。青色にしたいときは"red"のかわりに"blue"と書く。文字(フォント)の大きさが "font-size : 12pt;"で定義されている。15ポイントにしたいときは"12pt"を"15pt"と書く。

<span style="color:blue; font-size:20pt;">この文は青色で活字の大きさは15ポイント</span>

※活字の大きさをポイントとよび"12pt"のように表記する。12ptは標準的な大きさで、Wordなどでは10.5ptが標準に設定されている場合もある。この段落(パラグラフ)は10.5ptで表示されている。
ポイント単位のほかにpx, em, %などの指定ができる。pxはピクセルと呼ばれ、PC画面などの文字の大きさを示すことが多い。12pxというのは、ひとつの文字が縦横12ピクセル(ドットともいう)の大きさである。
 (例)このテキストは10.5pxで表示されている。使っているPCの画面表示精度によって見た目の大きさが異なる。

おなじ書式を複数箇所のテキストに使いたいときは、まず<HEAD>と</HEAD>の間に、
<style type="text/css">
<!--
.red12 { color : red; font-size : 12pt; }
-->
</style>
と書いておく。red12は任意の英数字からなる文字列である。先頭の文字が"."であることに注意。"red12"は"class"と呼ばれる名前である。
<body>のなかで、この書式にしたいテキスト部分を
<span class="red12">赤色、12ポイントです</span>
のように書く。段落すべてをこの書式にしたいときは、

<p class="red12">この段落のテキストはすべて赤色で大きさは12ポイントです。</p>

と書く。pの替わりにdivを使っても良い。 先の <style>の中で、".red12"を定義したが、先頭の"."を"#"にする(#red12 {…})こともできる。この場合の参照は、class="red12"ではなく、id="red12"とする。classとidの使い分け方は勉強不足のため説明できない。 どちらを使っても変りがないようである。ひとつのタグの中でclassとidの両方を使える。たとえば、
.bold {font-weight:bold;}<br>
#red {color:red;}<br>
と定義しておいて、次のように引用する。
<span class="bold" id="red">classとidの両方を使った例</span>
※注意※
 リンクを示す文字列では、pやspanなどのスタイルで指定した文字の色は無効である。かならず<a>タグでスタイル指定しなければならない。一方、文字の大きさや太字、フォント種類などの指定は<a>と</a>の間のテキストにも適用される。
<span style="color:red; font-weight:bold; font-size:15pt;"><a href="link.html">リンクの文字</a>の色には適用されない</span>

HTML Reference

FONT size=n color=color face=font font-weight=n point-size=n