Passed 70-528


Click to enlarge


Thank God I just passed Technology Specialist(TS)-Microsoft .NET Framework 2.0 - Web-Based Client Development. Nagbunga na rin yung pagbabasa at practice ko for two months.
I'm glad also because I learned a lot of things, and that's the most important why I took it.

The questions were mostly case scenarios and are interactive. Questions like "if you are the developer of.... what would you do if...?"

After the exam I treated myself. I ate a lot and watched the movie Angels and Demons by myself. It was fun.

My next stop is Exam 70-536 TS: Microsoft .NET Framework - Application Development Foundation to earn credit toward the following certification:
Microsoft Certified Technology Specialist (MCTS): .NET Framework 2.0 Web Applications


To know more about Microsoft certification program, see their site

Allow your Passion

"When you are doing what you know you are meant to do, there's no need to struggle. Instead of difficult or challenging or frustrating, there is simply doing.
When you are merely interested, or when you're following someone else's dream, anything can distract you. Yet when you're pursuing your very own passion, nothing has the power to stop you.

True passion is not a matter of gritting your teeth and forcing yourself to take action. True passion is allowing all your words, thoughts and actions to resonate with who you most authentically are.

There's no reason to fight against yourself. Instead, allow yourself in every moment to live out those interests, qualities, longings, ideals and purposes that you value most.

There is a reason why some things feel right and other things don't. Pay attention to those feelings, for they tell you who you truly are.

From you own beautiful, unique spirit can flow a wealth of goodness and meaningful achievement. Feel it, know it, allow it and it will come. "


-- Ralph Marston

FileSystemWatcher

FileSystemWatcher class is useful if you want to monitor your files within the folder. You can monitor them without letting anyone know. Para ka nang nag-hack if you know how to tweak these codes.

The code are as follows:


static void Main(string[] args)
{
// Create an instance of FileSystemWatcher
FileSystemWatcher fsw = new
FileSystemWatcher(Environment.GetEnvironmentVariable("USERPROFILE"));

// Set the FileSystemWatcher properties
fsw.IncludeSubdirectories = true;
fsw.NotifyFilter = NotifyFilters.FileName | NotifyFilters.LastWrite;

// Add the Changed event handler
fsw.Changed += new FileSystemEventHandler(fsw_Changed);
fsw.Deleted += new FileSystemEventHandler(fsw_Deleted);
fsw.Renamed += new RenamedEventHandler(fsw_Renamed);
fsw.Created += new FileSystemEventHandler(fsw_Created);

fsw.EnableRaisingEvents = true;
}




You need to create events because its not yet defined. For more info visit MSDN

Drive safely




Upon seeing the video, I felt very awful. Because whenever I'm in the driver's seat, I drive recklessly- even more when I'm alone. I usually run 120-140 KM/H on a freeway and doesn't care about the risk that it might take. I thank my parents for they didn't allowed my to use car back in college. If they do, I might be dead now. I usually listen to T.I's drive slow mp3 which reminds me to slow down as the title says. As the message of the video emphasizes that no one thinks big of you so you shouldn't boast the way you drive.

Book: sold



my book -Teach Yourself ASP.NET2.0 in 24 Hours by Scott Mitchell -was sold. Thanks to Joseph-which has the same name as mine- who bought my book. I sold the book because I already read the book and I want to sell it at much higher price kasi padating na ang ASP.NET 4.0, thus, magiging mababa na yung value ng book.

Naging useful sakin nung book when I made our online enrollment system project na pinagawa ni sir Elmer. The book is ideal talaga for those who want to learn basic web programming using ASP.NET2.0. the code-behind is written is Visual Basic.NET. My dorm mate Mariz covered my book kasi dati hindi pa ako marunong at that time. And she got the idea of putting some printed material on the cover and it was great. =)

Work it out.



Recently. I'm experiencing aches particularly on my legs. I move slower than before. I easily get tired whenever I do easy task. Then one morning, I stepped on to the bath scale and I found out that I'm 190 pounds. Last year I was 140. my weight used to remained consistent not until last year when I became busy because of projects and thesis. I was pressured on doing our thesis because I'm the one who wrote the code(programmer) and I spent 8-10 hours a day sitting in front of my computer thinking of the logic and algorithms that I will apply in that particular problem. I used to attempt to strip fat but I always fail.



at 140.


Now. I'm totally free from my obligation. I'm now thirsting for pain. I'm willing to do it it all again. I'm gonna burn fat. I'll bring back what I had started and hope to succeed this time. I already started doing some cardio at home and reduced my carb my intake.

Disabling autorun

Disabling autorun can prevent viruses that come from your flash drives/USB. Once you have inserted your CD/Flash drives on to your computer, Windows checks for the presence of autorun.inf and if found, follows the instructions contained within that file.

An Autorun file may be useful, or worse, it may contain worm. worm copies itself to the root of the drive, then creates or modifies the autorun.inf file, instructing it to run the dropped worm each time the drive is accessed. When the worm is loaded, it then looks for similar drives and repeats the process on any drives that are discovered.

Do Autorun worms do anything besides spread? Yes. Autorun worms nearly always include a component that downloads or drops additional malware, usually backdoors and password stealers. In addition, most Autorun worms include the ability to disable antivirus and security software which leaves the system vulnerable to compromise by even previously well known and detectable threats.

I believe the fact that disabling autorun.inf can save you from installing an anti-virus software which can make your computer slower because it consumes a lot of memory. But it is suggested that you should install an anti-virus software especially when you are browsing the world wide web.

How to disable autorun by yourself? Here are the steps:

a.). click start->run
b). type "regedit"
c) navigate through:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\IniFileMapping
d). right click in IniFileMapping. click new -> key
e). type in "Autorun.inf"
f). right click on the right panel. Select new->string value and just name it "(default)".
g). Double click the data then type "@SYS:DoesNotExist" as value data. Restart to make changes.

You can enable Autorun.inf by deleting "Autorun.inf" key. However, if you don't have any idea on using Windows registry, you might want to consider my program.




I wrote code that automatically disable/enable autorun.inf. I considered disabling autoplay as well because it also acts like autorun. An autoplay dialog box is like these:

  private void button3_Click(object sender, EventArgs e)
{
try
{
const string KeyName =
@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\IniFileMapping\Autorun.inf";
Registry.SetValue(KeyName, "", @"@SYS:DoesNotExist");

const string userRoot =
@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer";
Registry.SetValue(userRoot, "NoDriveTypeAutoRun", 255);

}
catch (Exception ex )
{
throw ex;
}
}


To enable, Just delete the key values.


     private void button5_Click(object sender, EventArgs e)
{
const string p = @"SOFTWARE\Microsoft\Windows NT\CurrentVersion\IniFileMapping\Autorun.inf";
try
{
using (RegistryKey delKey =
Registry.LocalMachine.OpenSubKey
(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer", true))
{
delKey.DeleteValue("NoDriveTypeAutoRun");
}

Registry.LocalMachine.DeleteSubKey(p);

}

catch (Exception ex)
{
if (ex.Message=="No value exists with that name.")
MessageBox.Show("Autorun already enabled","Error!!");
}

}


Additional notes: You must be in administrator role to in order to write on to the registry. You must restart/log-off your computer to make changes.

An interview at SM

Yesterday (May 11), I was scheduled for an interview with the I.T manager in SM. I was quite nervous and a little cocky at the same time. I gained a little confidence because that position was not my first choice. But in case I get hired, I might change direction. The interviewer first asked what platforms do I know. I answered him honestly. I only use Windows technology. Most of his questions were already familiar with me since I do those things all the time when I worked as an intern in Covergys.

One of the questions that I was nearly speechless was when he asked me if I know some scripting languages. Then I answered in a lousy way: "I only know batch programming were you can deploy applications through a batch file to the production team". I forgot to say that I also know VBScript as well as JavaScript which is the most popular for client-side scripting. I hope I didn't get a deduction from the manager. But it's okay with me if I won't pass the interview. I still have plans for myself and I hope I will be able to execute those plans.

With the final remarks, the interviewer told me that they will call me after a week or two. If not, I must call them to know my status. Those words enlightened me because it's a hint that I will be hired if I'm not mistaken.

Keep Pushing!

These are the only topics that I still do not understand. The rest were already set. Custom controls can be quite challenging because you have to write code within the class and call its reference (.dll file) so that you can drag and drop it from the toolbox. Unlike custom user controls, which acts like a normal .aspx page, you just have to drag-and-drop that .ascx file onto the web page in order to use the control.

System.xml namespace has lots of classes and members to choose from. Lots of different methods to get and navigate data. I must acquire more hands-on practice to be more familiar with these codes. Those topics were not tackled in school. That's why I have to study by myself. I still have 3 more weeks.

I thank God for the thirst for knowledge he has given me.




Null

5/7/2009

Masasabi ko na ngayon na wala na talaga kami ng aking kasintahan na tumagal ng halos dalawang taon. Dumating na sa punto ng aming relasyon na hindi namin maunawaan ang isat isa.

Naniniwala ako na meron at meron paring babae na maiintindihan ako at maiintindihan ko rin. At kung mangyari iyon, ako na ang pinaka-masayang tao na nabubuhay sa mundong ito at wala na akong hahanapin pa. Ang kailangan lang ay maghintay sa takdang panahon at matibay na pananalig sa Diyos.

Malaki ang aking silid para sa pagbabago. =)

Exam 70-528




I have had finished reading the Microsoft training kit exam 70-528- .NET Framework 2.0 Web-Based Client Development by Tony Northrup and I'm starting to apply what i've had learned by writing code. I decided to take the exam basically because I just recently graduated and I have nothing to boast.

During my self-training phase, I learned a lot of things- many things which I never heard from my professors. I'm starting to love programming, particularly web programming. I appreciate how the .NET Framework was sculpted to perfection. I love the challenge that they bring, the problems that I encounter. Everything! The judgement day gets closer and closer (May 29) that is why I must be prepared and keep on studying.

To be more familiar to the exam that I was saying. Refer to these Link: http://www.microsoft.com/learning/en/us/exams/70-528.mspx

Hello World!!! =)

I started blogging out of interest. Because I want to express myself. Its a great way to reflect on to myself, too! I don't blog for money. I just want to be heard. =)