Software Architecture and Related Concerns
If you think good architecture is expensive, try bad architecture.
Sign in
|
Help
Home
RSS for Posts
Atom
RSS for Comments
Search my blog
Go
Tags
.NET 3.5
c#
C# 3.0
float
Imprecision
LINQ
localization
MOSS
PowerShell
scripting
SharePoint
stsadm
TryParse()
VCS
WCF
WebDAV
xml
xslt
Archives
September 2009 (1)
April 2009 (1)
February 2009 (1)
December 2008 (1)
September 2008 (1)
June 2008 (1)
April 2008 (1)
March 2008 (2)
February 2008 (2)
Community
Home
Blogs
Media
Forums
Wikis
Sponsors
Email Notifications
Go
a href="http://www.blogcatalog.com/directory/computers">blog catalog/software
3
Comments
Book Review: Beautiful Teams
by
mile
Autor: Andrew Stellman; Jennifer Greene Publisher: O'Reilly Media, Inc. Pub Date: March 27, 2009 Print ISBN-13: 978-0-596-51802-8 Pages: 512 Price: $39.99 Ratting: 4/5 It’s a collection of real stories and situations retold by about thirty experienced...
7
Comments
Бесплатен софтвер и алатки од Microsoft за корисниците на mkdot.net
by
mile
Програмата DreamSpark од Microsoft нуди бесплатен софтвер за студенти, а од неодамна и за корисниците на mkdot.net заедницата. Во почетокот оваа привилегија ја имаа само студентите од некои поголеми земји, сега е проширена на повеќе од 80 држави вклучувајќи...
0
Comments
Practical primer of using XSL Transformation Extension Objects - XSL Transformation Localization
by
mile
XSL Transformation is widly known tecnique for converting XML files to XHTML output. XSLT is designed for use as part of XSL, which is a stylesheet language for XML. XSL specifies the styling of an XML document by using XSLT to describe how the document...
Filed under:
xml
,
xslt
,
localization
,
c#
1
Comments
Bazaar - My personal distributed version control
by
mile
Bazaar is a distributed version control system that Just Works. While many similar systems require you to adapt to their model of working, Bazaar adapts to the workflows you want to use, and it takes only five minutes to try it out. People have used it...
Filed under:
VCS
0
Comments
WCF Service on IIS – Another survival guide
by
mile
One of the differences between WCF Service and Web Service is their hosting environment options; WCF can also be hosted on IIS (just like Web Services), or in any other executable process / application domain. Hosting WCF Service on IIS has some limitations...
Filed under:
C# 3.0
,
WCF
3
Comments
Make your own command for deleting SharePoint web site including all sub webs
by
mile
If you try to use sharepoint administration tool stsadm.exe to delete website you will probably notice that deleting website with this command is not possible if web contains sub-webs. This is highly frustrating especially if you have large structure...
Filed under:
MOSS
,
SharePoint
,
stsadm
2
Comments
PowerShell - Automate the non automatable
by
mile
PowerShell is new command and scripting environment on windows platforms. Anyone who has used unix shells know the power of those scripting tools. On the other hand windows users had ms-dos command environment invented mostly for average users, advanced...
Filed under:
scripting
,
MOSS
,
PowerShell
7
Comments
Custom WebDAV сервер
by
mile
WebDAV e проширување на постоечкиот http протокол со дополнителни методи работа со фолдери и фајлови (механизми за заклучување, креирање на фајлови и фолдери, едитирање и сл.). Дефиниран е од Internet Engineering Task Force, и во основа содржи се што...
Filed under:
WebDAV
0
Comments
Extension Methods in C# 3.0
by
mile
Extension methods are static methods that you can invoke using the instance method syntax. With extension methods mechanism you can extend existing predefined type with your own static methods. In order to use static method you must know the name of the...
Filed under:
C# 3.0
0
Comments
Brief introduction on Query Expressions
by
mile
Query expressions can be used to query and to transform data from any LINQ-enabled data source. For example, a single query can retrieve data from a SQL database, and produce an XML stream as output. Query expressions are easy to master because they use...
Filed under:
LINQ
,
.NET 3.5
0
Comments
Imprecision on float conversion
by
mile
One of the introduced features in .NET 2.0 platform was TryParse() method, very practical and performance wise extension. TryParse method returns a boolean to denote whether the conversion has been successful or not, and returns the converted value through...
Filed under:
float
,
TryParse()
,
Imprecision