Tuesday, November 30, 2004

umulan linggo, lunes

tinamad mag-program, natulog lng. nag-add lng ng forms s program, pero walang naidagdag na code :p

Saturday, November 27, 2004

minor patch

wala pa yatang 10 lines of code ang naidagdag ko sa reim kagabi, heheh anyway bug-fix naman yon. mamya pag-uwi ko saka ko gawin yung user logon, authorized user authentication.

Friday, November 26, 2004

Overlooked debugging alert

heheh naiwan ko yung msgbox debugging sa ni-deploy ko kanina. everytime na nag-se-save ung user may lumalabas na messagebox, yung string ng executing stored proc. ni-inform ko na lng ung user na i-ignore n lng nila yung nakikita nila. tatanggalin ko mamya, idedeploy ko uli bukas. heheh tao lng, minsan-minsan simpleng bagay lng naman pero na-o-overlooked pa rin :-)

Thursday, November 25, 2004

Magpuyat ng maaga nang may oras pa para makatulog, papasok pa ofc kinabukasan :-)

nakapag-program pa ako sa bahay kagabi, between 9pm - 12:30am. not bad, considering na nauwi pa ako from laguna, 6pm - 8pm ang biyahe kaya depleted na energy pag-uwi. pero dati(lalu na nung college ako) kaya ko pa makapag-program hanggang hanggang 3am or 5am. siguro tag-lamig kaya ang sarap talagang matulog, or siguro lately andami ko iniisip hindi ako makapag-concentrate sa pagproprogram, kaya ang ginagawa ko muna magrerelax for 15 minutes, hihiga muna to process thoughts habang nakatingin sa kisame. heheh pero mas madalas kaysa hindi, tuloy-tuloy na sa pagtulog yung 15 minutes relax kuno :-)

Wednesday, November 24, 2004

Slashdot | Torvalds Dubbed Most Influential Executive of 2004

Slashdot | Torvalds Dubbed Most Influential Executive of 2004:


Re: Influential
by kaiser423
"Maybe he's influential in that he provides a steady hand, and transparency for (nearly) all processes. You don't have to be some dynamite guy doing crazy things. Keeping a big ship steady is a big job, and commands respect. When he talks, people listen. He's not going to bullshit anyone. I guess he's influential, because he doesn't overly use his influence, gaining him more respect, and more influence. Mutually reinforcing cycles."

--------------------

Oh, I get it.... maybe you will too...
by 3seas

its about making linux (a kernel) enterprise ready and as a side effect causing real competition to happen again in the market place.

Or in other words, causing the others on the list to alter their ways..... hence most influential...

and the other side of that coin..

Do the others on the list influence Linus and what he does?

probably not or very little...

thank you tita lucy

nag-install ako ng software sa ninang ng kapatid ko, si tita lucy, meron sila garments business. binigyan ako ng mga damit, bench atsaka oxygen, lima lahat. hindi pa raw dumarating sa department store yung mga klase ng t-shirt and polo na binigay sa akin, ako raw unang nagkaroon noon :) thank you tita lucy :)

Tuesday, November 23, 2004

Starhonda: Foreign key error.

Starhonda(in-house project)

side mirror: h8810-gn5-730
changed to two side mirror itemcodes: SMR6(right) and SMR7(left)

program errors when superseded code h8810-gn5-730 is being inserted into database.

foreign key capabilities in rdbms is really a must! cool feature :)

Webservices-Security Protocol with .NET - An overview

Webservices-Security Protocol

REIM datepaid fixing

REIM (Real Estate Installment Manager)

the client had requested that input of OR date need not be sorted, only the duedate should be sorted.

i'll modify the program when i got home early.

Active X Programming: Microsoft Excel & VB6, deleting worksheet, no display alerts

Active X Programming: Microsoft Excel & VB6

The Athlon vs. Pentium 4

The Athlon vs. Pentium 4: "http://www.pcworld.com/news/article/0,aid,104075,tk,dn081602X,00.asp"

Monday, November 22, 2004

Homework

fix REIM 2004.

update it tomorrow to client.


then Starhonda, study the flow of accounting system.

Linux

Installshield-like installer in Linux
ASP.NET on Linux

One year na ako sa LGC(Lazaro Group of Companies)

One year na ako sa LGC!

:-)

November 22, 2003-2004

Another year experience, another year smarter.

Anong meron and anong nangyari within one year?

1. programming-wise. medyo na-stuck ako sa ms products. matagal na akong hindi nakakapag-linux. mag-mature lang ang c# for linux i-t-try ko ulit aralin linux.

2.
nag-short-hair uli ako. sayang yung buhok medyo shoulder level, nga lang maintenance din ang buhok

Saturday, November 20, 2004

Introduction To Pivot Tables

Introduction To Pivot Tables

nice article about pivot tables

Programmer's Credo

It is our job to do the hard and discern the impossible

Thursday, November 18, 2004

This is my first blog

This is my first blog

the day is fine.

got some tweaking in one stored proc, where i just put some ordering in the motor's accessories and spare parts report.

program's user feedback:

nice feature! :P




And fixed the floating branch transfer:


CREATE PROCEDURE GetFloatingMbNo @ReceivingBranchCode as varchar(2)

AS

SELECT MbNo=substring(MbNo,4,11),MbDate
FROM MotorMovedToBranchHeader AS MNB
WHERE MNB.ToBranchCode=@ReceivingBranchCode

/* this condition will make motor that will be moved to other branch before its installation date not to appear floating transfer */
AND MNB.MbDate >
(SELECT InstallDate FROM MotorInstallationHeader WHERE BranchCode = @ReceivingBranchCode)

AND NOT EXISTS
(SELECT * FROM MotorReceivedFromBranchHeader AS MRB
WHERE MRB.FromBranchMbNo=MNB.MbNo )
GO