Developer Engagement

I was throwing ideas around in how to increase our developer engagement. I was also thinking of a way to give our product development a little boost. I love the developers that I work with and would like to support their passions and boost their care for their jobs.

One idea I had was to take a day or two a month and let developers work on a pet project. The only caveat was that the pet project had to be related to the company somehow. Continue reading Developer Engagement

Personal Branding

Andrew Pallant - LdnDeveloper
Andrew Pallant – LdnDeveloper
I am not a marketing person, but I do believe in personal branding. How I display myself professionally in my networks is who I am. My personal branding is consistent throughout everything I do so that people have something to tie myself to. It is remember able and I know this because people have told me the know me through my personal branding. Continue reading Personal Branding

Dynamically Load MVC Partials Using jQuery

Normally I do my examples in C#, but lately I have noticed a lack of VB.NET examples. Therefore, this example is in VB.NET.

I have searched long and hard to find a way to dynamically load MVC partials. I had tried to find a solution a few times, but quickly gave up. I figured there must be a way. Then I remembered how I used to create on the fly images using an HTML image control and simple URL to an ASPX page which served up the image ( another blog topic ). Through this latest realization and a little searching I have pieced together a working model. The piece I was missing was having the controller return a PartialView
. Continue reading Dynamically Load MVC Partials Using jQuery

Cookie Monster Would Be Disappointed

Using localStorage or sessionStorage would disappoint Cookie Monster.

My go to for a website to store data temporary was to use cookies. I would use cookies for storing user preferences, scores, shopping carts and more. Cookies can be a problem though as many people stop excepting cookies and they are difficult to manage. Continue reading Cookie Monster Would Be Disappointed