2014年5月28日 星期三

根基 2014 May 投資報告

此為私人紀錄,非投資建議,請勿作為操作參考.


購入是因為PB值為歷史偏低位置0.82,打算出場價為20,今年股利發現金1元
2014 May 23 以17.10,17.05各購入一張.

101Q4~102Q4的淨值成長率為13%
因為Q1毛利達到驚喜的8%,所以淨值成長會比去年來的好,而此成長亦可能推動市場提高估值.
因此估計上半年的淨值有機會有8%成長,約等於21.74,而推高估值到0.9 PB,則是19.57元,14.6%的潛在報酬率.
而根基的股本小(10億)有機會成為炒作的標的物.
手上有母公司訂單亦有政府專案在手,至少2014的營收無虞.下次評估應為5月營收.
本次投資的重點是,沒魚蝦也好,等別人來撿蝦子.萬一沒人來撿,下檔也可以在未來一兩年繼續收股利等待寒冬過去.

母公司2520的大股東持股極高(2014May高達72%),亦可注意,但股價已反應其獲利.

2014年5月6日 星期二

INFO入口網站架構下,開發易於理解與維護的專案.以及比較Entity Framework 和 NHibernate

Background

For information collection and communication between internal departments, the Operation Data Management Group (ODMG) has built the INFO web portal.
The INFO web portal are running dozens of web project. The web portal use NHibernate to be its object-relational mapping framework for easier development and maintenance a database application.

Work Problem

However, Nhibernate can't handle the data schema changes well. Also, the INFO use version 1.x of Nhibernate. It merely supports .NET framework 1.1 and 2.0. We can't use numerous .NET framework new features to enhance our web project while new project is in development.

Quantitative specification of problem

Importance of problem

Work objective

Methodology to achieve objective

Possible approach

Change ADO.NET Entity Framework instead of NHibernate.
  • But biginfo-01 is windows 2000. Not supported to .NET 2.0 and later.
Use interface Web Service or WCF to provide an API for .NET 2.0 Web Client to get data objects.

Anticipated results

So far, NHibernate 1.x is our merely option(2012/1218)

Contribution to field


Reference

2014年5月5日 星期一

2014 5月 大省方案 購機補貼方案研究

首年630的大省價$6190 PCHOME $14490 差價 $8300
首年630的大省價$7190 PCHOME $17900 差價 $10710
首年630的大省價$7190 PCHOME $15490 差價 $8300
首年630的大省價$8190 PCHOME $16900 差價 $8710

首年630的大省價$8190 PCHOME $15900 差價 $7710


ASUS PadFone Infinity(32G)
首年630的大省價$7190 PCHOME $10900 差價 $3710


使用 DirectorySearcher 進行 LDAP 的查詢

使用 DirectorySearcher 進行 LDAP 的查詢時,希望能過濾掉被Disable的,還有非使用者的共用帳號,或者代表帳號,所以希望把缺少FirstName, LastName 以及密碼永遠不需修改的帳號都過濾掉.

以下是使用的查詢字串:

(&(objectClass=user)(objectCategory=person)(!userAccountControl:1.2.840.113556.1.4.803:=2)(!displayName=*mailbox*)(!displayName=*admin*)(!displayName=*GUEST*)(givenName=*)(!displayName=*Account*)(!displayName=*Room*)(!userAccountControl:1.2.840.113556.1.4.803:=65536))

除掉被Disable的使用者(!userAccountControl:1.2.840.113556.1.4.803:=2)
除掉密碼永遠不過期的(!userAccountControl:1.2.840.113556.1.4.803:=65536)

另外,由於查詢結果只到1000,要擴大必須要改PageSize?

                searcher.PageSize = 4500;