Archive

Archive for the ‘Software’ Category

iPad

July 12th, 2010
konrad.dambeck

Currently I’m in the refresher course of the swiss armed forces in Andermatt. So I get plenty of charlton-heston-Mosses-iPad time to test my new Apple iPad. I have the 16 GB model without the 3G (UMTS) modem. I decide to buy the cheapest model because I think I don’t need much storage on my web tablet. The 3G option was for me secondary because I own a notebook with built in UMTS modem. As a side note you can use the freeware Connectify to switch any pc in to a wlan access point http://www.connectify.me/. Or create a wlan network proxy with an iPhone and the app NetShare (10$) from the Sydia store.

First I will make my coming out as an Apple fan boy. So this article reflects my personal meaning and may not be 100% objective. The physical dimensions of the device are 243mm x 190mm x 13mm. The weight of the iPad is 0,68 kg or 0.73 kg for the 3G model. By the way the 3g models have also an compass and a GPS module. The display is 9.7 inch and has a resolution of 1024×768 (132ppi). The battery live is beyond 10 hours witch is very, very, very impressive. There are only three points witch are semi optimal. The reflecting display is not my favorite option. And if you use the iPad in the Sun in became a little bit hot and shuts himself down. The iBook store of Switzerland only host’s only free book from the Gutenberg project. As you can imagine Nathan the wise from Lessing is note my favorite bed lecture.

read more

 

Administration, Mobile, Software, Uncategorized , , , , , , , ,

How to select open source libraries

June 20th, 2010
Daniel Marbach

We use a lot of open source libraries and components in our daily business. Open source libraries provide us a big advantage regarding time to market with our products. Every time when we are facing a problem in our software (problem is related to business domain to implementation domain difficulties) we first look into the open source world if someone has already solved that problem or even parts of it. Sourceforge, codeplex and google code (to name a few) are often the first pages we visit to look for code samples, libraries and frameworks. But how can we find the needle in the haystack?

read more

 

Agile, Methodology, Software , , , , , , ,

Hierarchical State Machine with Fluent Definition Syntax (.NET)

June 9th, 2010
Urs Enzler

The .NET component library bbv.Common (open source – Apache License 2.0) provides a powerful hierarchical state machine.

Its features are:

  • value type based (enums, ints, …) resulting in single class state machines.
  • actions
    • on transitions
    • entry and exit actions (parametrizable)
  • transaction guards
  • hierarchical
    • different history behaviours to initialize state always to same state or last active state
  • fluent definition interface
  • synchronous/asynchronous state machine
    • passive state machine handles state transitions synchronuously
    • active state machine handles state transitions asynchronously on the worker thread of the state machine
  • configurable thorough logging simplifies debugging using log4net (can be replaced easily with custom logging)
  • state machine report for textual description of state machine

read more

 

.NET, Software , ,

Getting started in software developement

April 8th, 2010
daniel.seiler

Yesterday, I attended at TechDays 2010 in Basel,Switzerland, an outstanding session. Neno Loje, a software project manager and developer from Germany talked about project- and requirementsmanagement. His presentation plattform was Visual Studio 2010 combined with Team foundation server 2010, both available in beta-status.

First of all: I was blowed away. I never really worked with Visual studio before, but was I saw was outstanding. Because of some Java-Stuff I have to use NetBeans IDE in our Java-Courses at university. But Visual studio seemed to go much further as NetBeans or Eclipse. All the little gadgets you get inside the program.

Team foundation server 2010 is now able to work with hierarchy items and requirements. MS added some ressource management tools to have better team management inside the team foundation server. And simply everything makes sense (at least to me as a abolute rookie).

What I want to do now is to set up an environment to get in touch with all the details of this new platform. Even if I know that I probably never will develop bigger applications I want to get a better look on whats inside this team management tool.

Once I’m started with the plattform I’ll try to catch some impression about the whole system and share my rookie impressions with all the readers here. I hope you won’t laugh ;)

 

.NET, Software , ,

Windows Phone 7: Hope has come

February 16th, 2010
Daniel Marbach

Finally the latest news about Windows Phone 7 is arrived and it seems that Microsoft has ultimately learned its lessons. Windows Phone 7 has a totally news concept regarding what we are used to have with the Windows Mobile editions. But the Windows Phone 7 concept is not only new for “Microsoftish” phones it is also totally new for all smart phone operating systems on the market (including iPhone).

read more

 

Mobile, Software , ,

Get PartCover Running On x64 Windows

October 15th, 2009
Urs Enzler

PartCover is an open source coverage tool. Unfortunately, the current release does not run on a 64bit OS out of the box. The reason is that PartCover uses a 32bit COM component to determine coverage and that a 64bit process cannot load a 32bit COM component. read more

 

.NET, Software , , ,

Windows Mobile 6.5 officially released

October 6th, 2009
Daniel Marbach

Today is the official release day of Windows Mobile 6.5. The new release of Windows Mobile 6.5 is claimed to be much smoother in terms of finger friendly navigation in all parts of the operating system including the today screen and windows explorer but also in terms of stability and performance. The famous iPhone lock and unlock slider is now available on Windows Mobile 6.5 (why reinventing the wheel ;) ? ). The internet explorer 6 is integrated into the operating system and offers flash support, zoom toolbar and much more.

For developers it might be interesting that it’s easily possible to create your own individual design with the Theme Generator. Microsoft now offers an easy to use synchronization service which allows to synchronize all kinds of data from the mobile device to the online services and back. This service is called myPhone Online Service. Similar to the Apple Store there is now a market place for windows phone applications reachable under http://marketplace.windowsphone.com.

ROM upgrades for various phones should be available soon on the manufacturers websites. Stay tuned!

 

Mobile, Software ,

Custom StyleCop Rules – Part II

September 21st, 2009
Thomas

In my first post (link) I’ve explained what StyleCop is and how you can start with your own StyleCop rules. We will now dig a little bit deeper into the jungle of StyleCop….
read more

 

.NET, Software, Sourceanalysis , , ,

Change the path SQL 2008 Server Database

August 30th, 2009
konrad.dambeck

In the most cases there are benefits when all data (log and db) files are on the network storage. Think off the benefit in terms of performance and backup. The Install wizard of Microsoft SQL Server 2008 shows only the option to change the path of the temporary database. In this guide I show you how to move the databases. Please keep in mind to create a backup of your db’s before starting. I know backup is only for hot shower takers, gym bag losers and armpit hair blow-dryers;-). On my test server the path looks like: read more

 

Administration, Software , , , , ,

Mocking Adventures with NMock2: Stubs Advanced

August 11th, 2009
Urs Enzler

NMock2 is a library for assisting test driven development of .NET code by providing a dynamic mock object creation framework.

In my last post on NMock2, I introduced the new Stub feature of NMock2 and its basic usage. In the second part, we are going to have a look at the advanced possibilities of the Stub mock style:

  • Define Mock Style Of Nested Mocks
  • Define Default Values

read more

 

.NET, Software, Testing, Uncategorized , , , ,