 |
 | |  |
|
AJAXify your Wordpress
Learn how I ajaxified my wordpress blog with these few steps...
|
|
| |
 | |  |
|
 | |  |
|
SBS Show!
Listen to the latest episode of the SBS Show, Dave Sobel talks about process management...
|
|
| |
 | |  |
|
 | |  |
|
Vladville Newsletter!
Looking for a more focused, exclusive insight into the world of SMB tech & business? Sign up for my newsletter!
|
|
| |
 | |  |
|
|
  |
Archive for the 'Programming' Category
It’s almost 4 AM and I’m sitting around coding in MSN/Live/com IM integration for Shockey Monkey. The basic premise is that the system will IM me when there is a new ticket waiting or when a user had updated/escalated their request. I finished coding this thing about a week ago and it works fairly well for what it is (a dumb sql->messenger gateway) but tonight I sat down to get rid of some annoyances. Here is what I found out.
For the most part, MSNP 9 is the most thoroughly documented implementation out there.
MSNP 9 is also very outdated, and MSN is trying very hard to move/force you up (I think they are on 13 now).
There is a gotcha in the signup process. For example, if you sign up for a live.com/msn.com passport id and initiate the first connection via MSNP 9, you will be prohibited from logging into it with that protocol – forever. However, if your first session is initiated via live.com messenger client (MSN P 10+) you can use any of the higher and lower edition clients.
Also, MSN does not tollerate bots on their network. The proper way to integrate your bot in the MSN network is to do your development/etc via IM Provisioning Center.
Read the whole post...
We have a little saying around the office, “If that patch isn’t committed to the cvs by noon we’re deporting you to India.”
Tonight I decided to get cute and implement some visual effects. I’m ashamed that the stuff below took 25 minutes to produce:
$style = ( $i % 2 ? ‘altrow’ : ‘row’); $i++; echo “<tr class=\”$style\” onClick=\”window.location.href=’ /view.asp?item=ticket&ticketid=$tickets[ticketid]‘\” onMouseOver=\”this.className=’hrow’;\” onMouseOut=\”this.className=’$style’;\”>”;
I’ve posted it in its entirety so I can be ridiculed at a later date. What took so long? Stupidity as usual, but the longer you go in a stupid direction the longer it takes to figure out just what went wrong in the first place.
The top line just determines which style gets applied to the row in a listing. The idea is to alternate styles so that the table is easier to read. There are two styles here, row and altrow – pretty simple. As I list data I’m using the modulus (remainder after /2) to determine which style gets applied. There are two events that fire – namely when the mouse hovers over the row and when it leaves it. When it hovers, the style ought to be switched to hrow which is my highlighted row. After it leaves, reset the style back to what it was previously.
Then I decided to get cute. I wanted the row color to change as I scrolled up and down the list. I also wanted to be able to click on any inactive space in the row and still take the default action. Again, programming 101. Where I lost the ball game was on the this.style part – this.style takes on all sorts of things like color for example – all except stylesheet name. It took me good 20 minutes to figure out why/where/how before I finally went back to look it up. I suck.
Read the whole post...
Several thousand Microsoft.com visitors come to Vladville every day. Perhaps one of you is doing Internet Explorer development and have to suffer through the debugging, I don’t know, but if any of you work in PSS and are… let’s say ready to sell your stock.. I got $100 for you if you make this your last act before you leave

I don’t know how I’d make it through the day without Dilbert. Some people have coffee, some have Mountain Dew, some have pr0n, some have warez, a side job selling junk on eBay.. whatever it takes to get you motivated and working. For me, thats Dilbert. The sad part is that not a day goes by that I don’t get a live reenactment of a previous strip. It alone gives me enough sense of humor not to kill half of the people I work with.
P.S. Offer not available to the SBS team which has already promised to do much worse.
Read the whole post...
For the past month I have been embarking on a task of replacing myself with a shell script. This isn't as complicated as it seems, turns out I'm very predictable in terms of how I manage the business. The problem is that in the world where there are only 24 hours but I need to work 30 hours there is a need to hand off certain responsibilties to another monkey and hopefully with minimal training be able to delegate some of the responsibility without affecting the result (network up).
So about a month ago I set out to code the NOC management system for Own Web Now and man, did I underestimate just how much stuff happens transparently without really thinking or documenting it. For example, last night I spent nearly two hours writing the function to calculate ticket age. The function itself took about 10 minutes, the debug/test/what if took just shy of two hours. Why? Well, time zones. Leap years. SLA plans.
Here is the context. No client should be knocked out for more than 0.1% of the day – If the monitoring system notices a downed state it opens a ticket. So far so good. Now, the system calculates the time between the initial outage and service restore and if that period is less than 0.1% we're delivering on our SLA. Now let's say the system goes down at 11:58 PM but comes back at 12:04 AM. How is the outage logged? Uhh, it was just down Bob! But, the panel that shows the client flawless performance throughout the week will now have two orange fields instead of just one red one if we dropped the ball.
That makes me look bad even though they were only down for 6 minutes – maybe they were not even down, maybe it was just timing out on my monitor because we only do ping checks for this client. Hrm. Ok. Now, let me widen the range. If the time crosses two calendar days but we meet the SLA on the total outage I only count that as one down, not two separate incidents (as it appears in the overview panel). Ok, now calculate which day had a longer outage and stick the report into that calendar day. Woo! Oh, the field of when the outage happened? Ok, 11:58 PM. But wait, the other function calculates the time by subtracting the resolution time from the open time. Outage interval: -23:54? Ok, throw in another consistancy check.
So as a monkey I really only had the server out for 6 minutes in my head. On a logical evaluation and reporting mechanism I have 200ish lines of code to explain that to the computer. So who is smarter, the monkey or the computer? And people wonder why I keep on calling myself and my staff the monkey force. There was literally a moment last night / this morning where I felt like the gorilla at the opening of 2001 Space Odyssey, thank god there were no bones around me or that monolith would have been beaten.
But here is some value-add for you to thank you for reading all this text: Here is a blog post off digg.com where someone made cheatsheets for web development. Now I've never been accused of being a great developer so this is a total life saver for me. I honeslty do not spend enough time in JavaScript to justify learning all the parameters that XMLHttpRequest object takes. Digg it!
Read the whole post...
Microsoft.com again offers two e-books on Visual Basic as free downloads. The two titles are Introducing Visual Basic 2005 for Developers and Upgrading Microsoft Visual Basic 6.0 to Microsoft Visual Basic .NET. I know, I know, this seems irrelevant but you should check it out. You see, back in VB6 days nearly everyone could be a coder because it was such a simple thing to nearly master – if it was possible, it was possible in a matter of minutes. With .NET and .NET 2.0 things are just as easy and a lot more powerful – but the intrface has changed quite a bit. So get it and catch up on the first few chapters. As for this weekend, there are a few things that have kind of caught my eye. First one is the ifolder server which appears very interesting. Not a server monster? Well, there is some stuff over at multiply.com that appears interesting but not quite useful. Either way, more fun stuff to play with.
Read the whole post...
While the two are not similar in any perceptive way I feel these announcements mark a day on which two closet technologies really matured. First Microsoft releases Atlas, an IDE for AJAX web based applications and CentOS releases a stable Enterprise Linux distribution backed by the community. First on CentOS While not the first or the new Enterprise Linux project by any means, CentOS made a major step today with finalized 4.3 release. You see, for years there was no such thing as a stable Linux distribution. It was always in flux living on the whim of individual package maintainers. Many opted to put together their own by compiling the OS and tools from the ground up with Gentoo or trusting Debian's stable yet technologically obsolete distribution. Then RedHat sunk in a lot of money into a commercial distribution of Linux that is backed by a vendor with standards and support for at least five years. Then Whitebox Enterprise Linux and CentOS started a community initiative of recompiling Redhat Enterprise Linux and offering it for free. Today marks a day on which the CentOS distribution is not just stable and reliable as it has been for quite some time, but also widely supported by plenty of mirrors and multiple architectures. Community is the key here, it eliminates any political or legal restrictions on packages that are available. So if you are looking for a free and stable development platform… you don't have to look any further. Microsoft releases AJAX This was covered with a lot of excitement during PDC last year and has now launched over at Mix 06 where Microsoft is pledging its committment to web services. Good for them, really. Now look up. Story on Linux. Story on Windows. If a something like this was posted two years ago the person writing it would get skewered and burned by both camps. Truth of the matter is both audiences have matured by leaps and bounds. Microsoft no longer looks at Linux and other technologies as trash and is very accepting of the platforms their customers choose to develop applications on. If you've seen R2 you will have to agree that the Interop possibilities are just amazing. Likewise, I know a lot of people that will jump for joy for a streamlined interface for Ajax development. Until now you were almost forced into notepad, textpad and nano of the world to make javascript mods and test them in a browser. A mature tool to streamline development and testing will not just lead to more code, it will lead to better code because it is now easier to keep track of whats going on. This is why Microsoft is so respected by developers (a heck of a lot more than it is respected by us sysadmins) — they really make the job a lot easier with their tools and are very accepting of new ways of doing things. It's a good day, a very peaceful united day in the cyberspace.
Read the whole post...
|
|
Whats on Vlad's Mind?
|
|
|
|
|
Sponsors: This blog is made possible by
Own Web Now Corp and ExchangeDefender.
If you like this blog and are in the need of products we offer I hope you give us some
consideration.
|
|
|
|
|
|
Get The Newsletter
|
Looking for a more focused, exclusive insight into the world of SMB tech & business? Sign up for my newsletter:
Click here to sign up
|
|
|
|
|
Vladfire Vlog
|
Vladfire is my video blog showcasing successful people and technology in small to medium business.
Below are a few recent episodes, check out the archive for all other films.
|

See more episodes...
|
|
|
SBS Show Podcast
|
SBS Show is a free weekly podcast (Internet for recorded radio show) focusing on small business and technology. More at sbsshow.com but check out our latest episode:
SBS Show #26
Erick Simpson
Managed Services Part 2

Listen to older shows..
|
|
|
|
| |
|
|
Categories
|
|
Archives
|
|
About
|
| Apple, Awesome, Beta, Blogroll, Boss, Cloud, Deals, E12, Events, Exchange, ExchangeDefender, Friends, Gadgets, Gators, Gaypile, Google, GTD, iPhone, IT Business, IT Culture, Legal, Linux, Microsoft, Misc, Mobility, Open Source, OS, OwnWebNow, Pimpin, Podcast, Programming, Rant, SBS Show, Security, Shockey Monkey, SMB, System Admin, Thieving Weasel, Uncategorized, Vista, Vladcast, Vladfire, Vladville, Web 2.0, Windows Home Server, WordPress, Work Ethic, Wrong |
 |
February 2012,
January 2012,
December 2011,
November 2011,
October 2011,
September 2011,
August 2011,
July 2011,
June 2011,
May 2011,
April 2011,
March 2011,
February 2011,
January 2011,
December 2010,
November 2010,
October 2010,
September 2010,
August 2010,
July 2010,
June 2010,
May 2010,
April 2010,
March 2010,
February 2010,
January 2010,
December 2009,
November 2009,
October 2009,
September 2009,
August 2009,
July 2009,
June 2009,
May 2009,
April 2009,
March 2009,
February 2009,
January 2009,
December 2008,
November 2008,
October 2008,
September 2008,
August 2008,
July 2008,
June 2008,
May 2008,
April 2008,
March 2008,
February 2008,
January 2008,
December 2007,
November 2007,
October 2007,
September 2007,
August 2007,
July 2007,
June 2007,
May 2007,
April 2007,
March 2007,
February 2007,
January 2007,
December 2006,
November 2006,
October 2006,
September 2006,
August 2006,
July 2006,
June 2006,
May 2006,
April 2006,
March 2006,
February 2006,
January 2006,
December 2005,
November 2005,
October 2005,
September 2005,
August 2005,
July 2005,
|
 |
Vlad says:
Thanks for checking out my blog. You've officially reached the end of the Internet so take in what you've read and don't look at it as gospel but an invitation to start thinking for yourself.
|
|
|
|
| |
Copyright © 2005-2010 Vlad Media, Inc. All Rights Reserved.
Content is provided AS-IS without warranty of any kind.
Syndicate this blog: 
|
| | |