ウェブ系のお勉強 -2ページ目

ウェブ系のお勉強

毎日の動的な記憶を残していく。

速読、記憶力、文章力の向上



訓練開始:視力の拡張、読む速度の向上、記憶力を上げるためのイメージ力UPと想起能力のUP、ブログで文章力をつける。



速読の訓練は、まずはじめに基礎を固める目的で無料ツールを使い視野と読む速度のトレーニング。
記憶力に関しては、場所記憶の習得と日常で物事を考える際にイメージを湧かせて考える。
文章力は継続してブログを書くことで向上させていく。



日々の出来事もブログに記録していくことにする。
今日の興味の対象:
・ハンニバル・レクター博士
・記憶力に関する実践者の話
・クラゲの種類と生態
・Web Storage


本日の結果:
・速読の訓練
・記憶術の訓練
・ブログの記述
・プログラミング






















require_once('dbconnect.php');






$recordSet = mysql_query('SELECT COUNT(id) FROM  my_items');
$data = mysql_fetch_assoc($recordSet);


echo ''.$data['COUNT(id)'].'件です
';


$recordSet = mysql_query('SELECT COUNT(id) AS record_count FROM my_items');
$data = mysql_fetch_assoc($recordSet);


echo ''.$data['record_count'].'件です';


?>







<pre><code>

<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-********-*']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>



</pre></code>