Archive for July, 2010
Silverlight and Windows Phone Workshop
Jul 23rd
On 13th I will have the pleasure to present a workshop at the University of Bonn. This workshop will introduce Microsoft Phone to students. The focus will be on mobile development, web services, Silverlight and introductory design in Blend. The participants will acquire the basic knowledge of these technologies, allowing them to have a good chance to further pursue on Microsoft career path.
Subject: Silverlight and Microsoft Phone
Start: 9:00 with 1 hour lunch break around 12-12:30
End: approx. 15:00 – 16:00
Location: Windows-CIP-Pool N222
Language: The talk will be given in English.
SCRUM Presentation
Jul 22nd
After a very intensive and practical Agile Lab, in which I had to prepare two talks – one on Agile techniques and other on Geolocation, today I had the pleasure of participating in a very nice SCRUM Talk presented by Mr. Jens Trompeter, Board Member in Itemis company.
How to Consolidate 2 Microsoft Certified Professional IDs
Jul 5th
I am Microsoft Certified since 2006, Technology Specialist in SQL 2005 and Business Management Solution Specialist in Microsoft Dynamics. Thus, I already own an Microsoft Certified Professional (MCP) ID that allows me to access Microsoft Certified Professional program.This program basically gives you access to review your certifications and the progress on your certification path. It also enables you to prove that you actually have those certifications.
As example, you can find mine by following the link: https://mcp.microsoft.com/authenticate/validatemcp.aspx and insert Transcript ID: 770644 and Access Code: radupoenaru.
New exam, new MCP ID
I recently took a Microsoft Certification exam. I passed it and now I’m Certified Technology Specialist in .Net 3.5. As a parenthesis, Microsoft, in its attempt to save the nature and thus paper, give the paper certificate only upon request. And because in my staying in Germany, I started appreciating more and more the nature, so I don’t believe that I’ll request it.
But more than this, the Certification center sent me a link to activate my Microsoft Certified Professional program. This also implies that you’ll get a new MCP ID. So I am in the position of having 2 separate places to show to my possible employers that I own the certifications.
How to add Syntax Highlight to WordPress
Jul 2nd
I wrote quite a while ago about How to implement Syntax Highlight in your WordPress blog. It used an forward, yet permanent approach: modify you’re theme’s header.php. But is it enough?
Lately, I wanted to update my blog’s theme to the newest version. But hey! I had a lot of modifications such the one above that kept me from doing a smooth update: BNR Slider, custom images for RSS and Twitter, hints, Syntax Highlight and so on.
The newest solution that I come up with is using a child theme, feature provided by WordPress engine. Basically, you have a theme applied to you blog that you like. Instead of modifying it, you create a new folder in theme’s directory with a special name who’ll be applied OVER your base theme, customizing only the aspects you need. Assuming that your theme’s name is MyFavoriteTheme, you’ll have to create the child theme as MyFavoriteTheme-child.
In order to use your new theme, you’ll have to create in the MyFavoriteTheme-child folder two files:
- styles.css – required – who’ll mark your folder as a child theme
- functions.php – optional – for our example is required, as we’ll write code inside of it