Thursday, February 12, 2015

ASP.Net 5

Looks like the latest Microsoft "innovations" are aimed at preventing the Microsoft developers from moving to node.js and other popular web technologies. ASP.Net 5 even sacrificed Web Forms to create a framework that is very similar to node.js or other modern web framework. But they forget that developers are loyal to Microsoft mostly because of the excellent development experience. Within the latest years we ovserve deteriorating design surface experience in Microsoft web technologies, the void the component vendors are not able to fill. They are risking losing more developers than gaining...
End of rant.

Thursday, January 15, 2015

SharePoints bails out if more than 10,000 search results.

Toy (but expensive!!!) search engine called FAST Search for SharePoint 2010 bails out if using wildcards and it decided that the query may return more than 10,000 results...
Good article about how to increase the limit.

Tuesday, January 13, 2015

Change recovery model to Simple for all databases

Import-Module SQLServer
Get-SqlDatabase -sqlserver . | ? {$_.RecoveryModel -eq [Microsoft.SqlServer.Management.Smo.RecoveryModel]::Full } | % { $_.RecoveryModel = [Microsoft.SqlServer.Management.Smo.RecoveryModel]::Simple ; $_.Alter() }