c#
< Programacion
< vonpmg
Get flash to fully experience Pearltrees
Here's a list of things you might want to learn about in order to become a better .NET developer. Better developers are eligible to higher paychecks , exciting projects and more freedom in their lifestyles. Learn Unit Testing Get familiar with distributed Version Control Systems : Git or Mercurial . Learn about IoC Containers : Autofac , Windsor Container and StructureMap . Contribute to Open Source Projects of your choice. Learn about Continuous Integration and try setting up TeamCity , Hudson or CruiseControl.NET .
The freeware program SourceMonitor lets you see inside your software source code to find out how much code you have and to identify the relative complexity of your modules. For example, you can use SourceMonitor to identify the code that is most likely to contain defects and thus warrants formal review. SourceMonitor, written in C++, runs through your code at high speed, typically at least 10,000 lines of code per second. SourceMonitor provides the following:
Los invito de manera muy especial a la VAN que yo mismo presentaré para la comunidad ALT.NET Hispano sobre Behavior-Driven Development (BDD) con aplicaciones mediante el framework Machine.Specifications ( MSpec ), este día sábado 21 de Agosto de 2010 a la hora internacional 18:00 UTC / GMT (meridiano 0) o 20:00 CET, con una duración aproximada de 2 horas, vía http://snipr.com/virtualaltnet . BDD surge de tomar lo mejor de otros métodos o técnicas del mundo Agile , específicamente equivale más o menos a Domain-Driven Design ( DDD ) + Acceptance Test-Driven Development ( ATDD ) + Test-Driven Development ( TDD ).
Use LINQ to retrieve data from spreadsheets. var excel = new ExcelQueryFactory ( "excelFileName" ); var indianaCompanies = from c in excel . Worksheet < Company >() where c . State == "IN" select c ;
So, what is this? I love LINQPad ( http://www.linqpad.net/ ) and especially like it's Dump extension method, which formats any object very nicely. Wouldn't it be great to have something like this in Visual Studio? Well, here is my first simple try.
Introduction This is a 100% .NET solution to extract text from PDF documents. Background
What's in a IFilter? The IFilter interface was designed by Microsoft for use in its Indexing Service. Its main purpose is to extract text from files so the Indexing Service can index them and later search them. Some versions of Windows comes with IFilter implementations for Office files, and there are free and commercial filters available for other file types ( Adobe PDF filter is a popular one). The IFilter interface is used mainly in non-text files like Office documents, PDF documents etc., but is also used for text files like HTML and XML, to extract only the important parts of the file. Although the IFilter interface can be used for general purpose text extraction from documents, it is generally used in search engines.
Version 1.0.0.10 Source Code and Compiled Binaries See introduction for inportant information BEFORE downloading any files. Introduction IMPORTANT INFORMATION: This code and example this article describes is now BETA stage code, and as such may be below commercial or otherwise quality standards.