Home
»
MK .NET UG
»
Software Architecture and Related Concerns
Software Architecture and Related Concerns
MK .NET UG
Macedonian .NET User Group
Get this RSS feed
Home
Blogs
Forum
Tags
Options
RSS for posts
OK
Tags
.NET 3.5
c#
C# 3.0
float
Imprecision
LINQ
localization
MOSS
PowerShell
scripting
SharePoint
silverlight
stsadm
TryParse()
VCS
WCF
WebDAV
xml
xslt
Software Architecture and Related Concerns
If you think good architecture is expensive, try bad architecture.
RSS for posts
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Software Architecture and Related Concerns
#DEVREACH 2011 - Moving XAML apps to Metro
Posted
over 2 years ago
by
mile
3
Comments
Yes, it's Carl Franklin talking on the very trendy topic this days - how to move your vb .. ups xaml applications to the new metro platform. If you really wanna know - It's not the rail service!
Software Architecture and Related Concerns
#DEVREACH 2011 - SharePoint 2010 Development
Posted
over 2 years ago
by
mile
0
Comments
Latest breaking news: "Getting Started with Share Point 2010 Development" .. and If you ever wondered what is SharePoint ;)
Software Architecture and Related Concerns
#DEVREACH 2011 - What's new in WP 7.5
Posted
over 2 years ago
by
mile
1
Comments
Mr. Petrovski is calling directrly from the crime scene! Reminder demo app Accelerometer demo app It seems that presenter has problems with demoing ...
Software Architecture and Related Concerns
The future of Silverlight
Posted
over 3 years ago
by
mile
0
Comments
You’re invited to a very special event on December 2nd, 2010 Learn about the future of Silverlight from Corporate Vice President, Scott Guthrie and other experts, direct from Microsoft’s HQ. Hear about our plans for the next version of Silverlight...
Software Architecture and Related Concerns
Book Review: Beautiful Teams
Posted
over 4 years ago
by
mile
3
Comments
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...
Software Architecture and Related Concerns
Бесплатен софтвер и алатки од Microsoft за корисниците на mkdot.net
Posted
over 4 years ago
by
mile
7
Comments
Програмата DreamSpark од Microsoft нуди бесплатен софтвер за студенти, а од неодамна и за корисниците на mkdot.net заедницата. Во почетокот оваа привилегија ја имаа само студентите од некои поголеми земји, сега е проширена на повеќе од 80 држави вклучувајќи...
Software Architecture and Related Concerns
Practical primer of using XSL Transformation Extension Objects - XSL Transformation Localization
Posted
over 4 years ago
by
mile
0
Comments
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...
Software Architecture and Related Concerns
Bazaar - My personal distributed version control
Posted
over 5 years ago
by
mile
1
Comments
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...
Software Architecture and Related Concerns
WCF Service on IIS – Another survival guide
Posted
over 5 years ago
by
mile
0
Comments
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...
Software Architecture and Related Concerns
Make your own command for deleting SharePoint web site including all sub webs
Posted
over 5 years ago
by
mile
3
Comments
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...
Software Architecture and Related Concerns
PowerShell - Automate the non automatable
Posted
over 5 years ago
by
mile
2
Comments
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...
Software Architecture and Related Concerns
Custom WebDAV сервер
Posted
over 5 years ago
by
mile
7
Comments
WebDAV e проширување на постоечкиот http протокол со дополнителни методи работа со фолдери и фајлови (механизми за заклучување, креирање на фајлови и фолдери, едитирање и сл.). Дефиниран е од Internet Engineering Task Force, и во основа содржи се што...
Software Architecture and Related Concerns
Extension Methods in C# 3.0
Posted
over 5 years ago
by
mile
0
Comments
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...
Software Architecture and Related Concerns
Brief introduction on Query Expressions
Posted
over 5 years ago
by
mile
0
Comments
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...
Software Architecture and Related Concerns
Imprecision on float conversion
Posted
over 5 years ago
by
mile
0
Comments
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...