Amp-Fender’s anti-boredom portal
zero the boredom-
Define “UNFAIR”
Posted on July 10th, 2009 No commentsI just failed quality, the reason; not setting customer expectations.
But I will not give up easily, I have to present my cause.
1.) How can you set expectations when you dont back it up? If you tell the customer what to expect, then tell them the facts. In my case, we were asked to tell the customer that there might be a wait time during the transfer to tech support, yet we dont even have the tool to check what that wait time is….
2.) Cherrypicked to fail - I felt so frustrated I want to think that that call was cherry picked for me to fail. There are just times that you forgot 1 specific detail and your whole life will defend on it.. huhuhuh.. like what if you throw a pebble and that pebble hit a large stone that caused to hit another large stone that created a boulder or an avalance that would destroy a whole town?
3.) What about the things that I do better? - Sometimes we would like to scream for justice, where are the recognition for our accomplishments, how about the things that we contributed, why is it not noticed?
4.) The rules just sometimes sucks - Sometimes the rules in itself sometimes dont make sense..
Justice please……
-
Unfortunate events just wouldn’t go away.
Posted on June 18th, 2009 No commentsHow difficult is it to pretend that have moved on when in reality the pain still lingers? How can you fake a smile when the heart is in deep sorrow? Unanswerable questions, but when it hits you, there is no way of escaping, and to survive is to master the trick well. Unfortunately I couldn’t just do it on her presence, so I avoided her as much as I could. Sometimes though, since or apartments are just adjacent, I could clearly hear her voice from beyond the GI wall separating our kitchens. Her laughter is such a painful blow to my pride. It’s definitely true that she didn’t really love me, not once. But how could this joke happen, where is fairness? Why Am I the only one that feels the pain?
It was almost the end of the second semester of school, but there still a big school event coming, the College SportsFest. One day on Room 201 of ESET, a few ladies went into the room to practice for the dance contest. One of them caught my eye, she looks beautiful to me, and with the help of a friend, I happened to know her name. Let’s say we call her “SEVEN”. By co-incident, ININ’s roommate and my close friend “BEBE” knows her, they were actually classmates for 1 semester. One morning while I was doing the laundry, I happened to eavesdrop on the conversation on the other side of the GI wall. “It’s them again”. But I noticed that the 2 voices are definitely ININ and BEBE’s. Well, I thought to myself, this might be a good opportunity to have a heart check up. “Hey ladies, I bet you’ll are doing laundry”. “Hello ROY, I haven’t seen you in quite a few weeks already, how are you doing?” It’s a no brainer, that voice is ININ’s. Does she even have a heart at all, I thought to myself .She definitely have no right to ask how I am after all she was the whole reason why I am so depressed. “I’m definitely fine, and I’m very much okay” “Hey BE, I heard you and SEVEN have been classmates before, I want to talk to you about her if we can have time, can we?” “Sure we can ROY, anytime you want” “Oh ROY, so you have a new crush? I will definitely feel jealous about that, how come you didn’t even tell me about it darling?” She’s definitely trying to kill me now, I thought, but the last word still sounds so sweet to my ears. Is she teasing me? What is she trying to accomplish? “I have to move on; I couldn’t just lay down heart broken am I?”
But nobody replied, I guess they are already done with the laundry.The next morning on my way to school, I met BEBE. So we talked: “I know you did that on purpose ROY” “What?” “I felt ININ really felt bad about the conversation we have yesterday while we were doing laundry when you asked about SEVEN” “I don’t think so BE, how could she? She already dumped me remember?” “I know that but I think she still have that desire to be your friend, she often tells me how much she admires you. That you’re such a smart and thoughtful guy and that she tried her best to love you in return” “But we know she didn’t, and that all she did was to give me false hope and left me heart broken, how do you think she would feel if she were in my shoes” “Well, I thought we are to talk about SEVEN aren’t we?” So we talked about SEVEN until we arrived in the school.
-
Change is inivitable
Posted on December 22nd, 2008 No commentsBut why are we afraid of it. For one, it feels awkward. Second, we dont wanna go out of our comfort zones. This is true, we always hesitate to explore unknown territories. The sad thing is sooner or later we have to deal with change and if we don’t it will overrun us and will caugth us offguard.
It took some convincing for me to change coding from php to asp.net. I was getting comfortable with coding php and so I was afraid of moving to asp. But the moment I first get my hands on Visual Studio, I felt compelled by what it can offer. Productivity for one, I have to admit that in php I have to create tons of codes for a simple functionality. And I was so surprised to learn that in asp, someboady already created that function to me. So there I was switching technologies and programming languages and I thought everything will end there, but I was wrong again. The coding language I first used in asp.net is visual basic, which I am also a starter, and the syntax from coding php to VB is very different but fortunately I managed to sneak myway into VB and found myself even coding user controls which are advenced topics. I was able to exploit memberships, roles, profiles with no trouble until I bumped into a problem that starter like me can’t ressolve easily. The solution is presented but not in VB, its in C#, another coding language, still with much persistance, I was able to create the solution I wanted in VB. It seems that change is again lurking in the shadows and it seems like I have no option before it overruns me. So this afternoon I took that step forward in coding c# for the first time and I was able to successfully made it to the first base.
Change can be fearsome. But you will have to deal with it sooner or later. But then again why wait sooner when you can deal with it right now.
-
Child controls on the page level
Posted on December 17th, 2008 1 commentAccessing LoginView’s templated child controls on the page level
I blogged last week about my difficulty to access child controls inside the asp:LoginView server control. Fortunately, I bumped into an article just in time to get the answers I need. So here’s the complete solution to the problem:
Imports System
Imports System.Data
Imports System.Configuration
Imports System.Web
Imports System.Web.Security
Imports System.Web.UI
Imports System.Web.UI.WebControls
Imports System.Web.UI.WebControls.WebParts
Imports System.Web.UI.HtmlControlsNamespace Fix
Public Class LoginViewFix
Inherits LoginView<TemplateInstance(TemplateInstance.Single)> _
Public Overrides Property AnonymousTemplate() As System.Web.UI.ITemplate
Get
Return MyBase.AnonymousTemplate
End Get
Set(ByVal value As System.Web.UI.ITemplate)
MyBase.AnonymousTemplate = value
End Set
End Property<TemplateInstance(TemplateInstance.Single)> _
Public Overrides Property LoggedInTemplate() As System.Web.UI.ITemplate
Get
Return MyBase.LoggedInTemplate
End Get
Set(ByVal value As System.Web.UI.ITemplate)
MyBase.LoggedInTemplate = value
End Set
End PropertyEnd Class
End Namespace
So theres the code, but how do we use it? First, If you are using visual web developer, you have to click the add new item and choose Class, then rename it to Fix.vb, and the IDE will ask you to place the code to the App_Code Folder, just click yes, then cut and paste this code, and the runtime will automatically compile your code as part of the application. If you will use it on a specific page you have to add a Register directive like this: <%@ Register NameSpace=”Fix” TagPrefix=”fix” %> after the @Page line, then in your code, since we override the <asp:LoginView />, you should now declare it as <fix:LoginViewFix />
Common try it, It worked perfoectly for me.
-
accessing child controls in
Posted on December 11th, 2008 No commentsThis past week, I had a hard time figuring out what I would like to happen in my website.
The scenario is like this:
I want a little image in my website to display a profile’s photo when they user is logged in. So I used asp:LoginView control to accomplish it. Inside this control, I have 2 templates, the anonymoustemplate and loggedintemplate, inside the loggedintemplate, I put an asp:Imaage control and left blank the ImageUrl property so I can programmatically assign it to the profile property called PathToPhoto. The problem is that, in the page_load event of that page, when I tried to assign the ImageUrl property into the persons profile, it says that the image object is not declared. I read MSDN, and what I found out is that, the image control is a child of the loginview control, It took me 3 days of trying to figure out what syntax to use so I can access the members of the child control. Unfortunately I didnt get what I was looking for, So I push my way thru asp.net and tricked it. I used FindControl method of the loginviewcontrol to find out if a certain control is loaded by using its id.Dim MyCollection As ControlCollection
MyCollection = LoginView1.Controls
Dim MyControl As Control
MyControl = MyCollection.FindControl(”ImageID”)
If(Not MyControl Is Nothing)
Dim MyImage As Image = New Image
MyImage.ImageUrl = Profile.PathToPhoto
MyCollection.Add(MyImage)
End IfI know this is not the most effecient way to do it, But at least it serves the purpose, Im gonna have to further search the web for the proper way of doing it.
-
have you read THIS and THAT?
Posted on December 9th, 2008 No commentsIt’s been like months since I post my last blog, and if not for Louie who fixed and kicked the spams out, I wouldnt have blogged again today. It’s been an interesting week so far, prior to Sundays big boxing history match, there was so much anticipation. Of course as a Filipino and as a boxing fan. I am not that ignorant of the ins and outs of the sport. We tend to boast our knowledge and know hows if we dont want to embarass ourselves in front of others. So we tend to be “experts” and boasts our ideas as if we are accredited ESPN broadcasters. And I confess I was not an excemption. But I dont want to share my ideas about the hottest topic and talk so far, I’m sure everybody already got dizzy with tons and tons of articles online discussing last sundays event. I dont even want to mention what the event was. But there was one article that was a complete opposite of what was supposed to be the norm: The Pacquiao frenzy
You read it and you know the blogger is not wrong. Im not KJ for those who are still in the celebration mode, but she is 100% right, and that’s why the Philippines is not moving forward.Thanks to Louie for fixing the spams, and did you know that he doubted the protagonist before he went into the ring….
-
Asp.net 2.0
Posted on October 23rd, 2008 1 commentAsp.net 2.0 – ease in creating users and roles
I assume that are in these following scenarios:
1. You are paying a company to host your website (ex: www.hostony.com, www.bravehost.com)
2. Your hosting is Windows-based (run by IIS)
3. You have a MSSQL server instance database and you know these information: server name, username, password, database name
Step 1: Creating MSSQL Provider table for membership and roles
- Navigate to [drive:]\%windir%\Microsoft.NET\Framework\v2.0.50727 and run a utility called aspnet_regsql.exe
- Supply MSSQL credentials
- Follow GUI prompts and finish the utility
BINGO, you now have an empty Provider table
-
6 days in chong hua hospital
Posted on September 14th, 2008 1 commentThe last news grandmothers would like to hear: “your grandchild was hospitalized”. It took me hours to think and rethink if I would send her a text message about fender’s situation. Three days ago, I started to notice that fender is coughing frequently; I can’t ignore the pain and hassle it brought him. I had to ask my wife what she thinks about the situation, she was kinda relax about it. Saturday came and the situation got worst, he’s coughing more frequent now, and it even wakes him up from sleep. “I think this is serious, we have to look for a pedia” I told my wife. That afternoon I called our company’s insurance and asked for available doctors, she referred me to a doctor in cebu doctors hospital so I called the office, but to my surprise, they doctor is not available till Monday. So I have to wait 2 more days, I started to feel guilty about fender, I just can’t bear hearing him cough with so much difficulty. Sunday came and I started to panic as fender show’s signs of tiresome coughing. I chatted with our company’s floor coordinator and I told him that I will not be able to report to work Monday since ill be taking my little boy to the pedia. Amazingly, Mark told me that there is a consultation in the Emergency Room of chong hua hospital, so we get dressed and rushed to the hospital. His breathing and heartbeat rate were checked, the doctors asked questions about the cough, fender’s medical records as I tried to answer every question most honestly. A few minutes later, the doctor advised us that fender needs to be admitted to the hospital since heartbeat and breathing rate are above normal. My wife fainted, she didn’t dare watch as the nurse put the needle in fender’s arms, then she cried. Amazingly the baby didn’t even cry. We were then transferred to room 330 where I wondered what will happen next.
-
Pacman, Dela Hoya, MILF, Ramadan, and 30 Million dollars.
Posted on September 2nd, 2008 No commentsI would love to see pacman win, but I wonder what happens if he lose, Anyway, win or lose, pacman would not make much of a difference in the life of the ordinary people and the masses.
- Win or lose, pacman would be $50 million richer, while those who win by betting on him takes home a few thousand bucks, others take home nothing.
- Win or lose, pacman will continue to sign up for commercial endorsements and will continue to amass large sums of money, while ordinary citizens continue to feel the effects of inflation and sky-rocketing prices.
- Win or lose, pacman will be receiving a heroes welcome and will be look upon as a national treasure while soldiers and rebels dying fighting for their cause will be forgotten.
For a change, I would like to see pacman lose, and I want to see how his political backers react.The holy month of Ramadan has already started, Muslim leaders begged government military forces and MILF forces to temporarily ceasefire for the sake of the celebration. The AFP issued a statement that they will not stop the operation in hunting the renegade MILF commanders. Suppose Pacman and Golden-Boy fights everyday for the whole month of Ramadan, I’m pretty sure even if we will have a peaceful Ramadan even if nobody asks for a ceasefire, how Ironic.
How big is $30 Million? It’s just Php1.35 billion. If 1 sack of rice is Php2500.00 it would be able to buy Read the rest of this entry »
-
5 things an “average” computer user don’t need to know!
Posted on August 25th, 2008 No commentsEvery field has its own set of vocabulary. You may not realize that you already talked “jargon” with your friend, officemates, schoolmates, buddies and etc. A jargon is a field-specific term that ordinary people can’t understand, the tools and technologies you use at work, expressions of the 3rd sex, terms drug users substitute for illegal drugs, activities they do and etc. As a CSR, it is illegal to use jargons while communicating with the costumer; this will not only irritate the customer, this will also hinder communication flow. Check this list of jargons that average computer users don’t need to know, and from the title itself, I will not even attempt to define it.
#1. Browser
If you think Filipinos are the only ones substituting brand name for product names, think again. Microsoft dominates the software market, 90% of the PC’s are windows based. And it’s no wonder 90% of our callers don’t know what a browser is, instead they know the familiar Internet Explorer, or worse the blue “e” icon. So it’s okay if you say “pampers” and mean to say “EQ” everybody else in that department store knows you mean to buy a diaper.#2. Operating System
Have you been to StarBucks? If yes, then Read the rest of this entry »



Recent Comments