61
Packages
2,199,835
Downloads of raboof's packages
raboof's Profile
Packages
-
LumenWorks.Framework.IO
A reader that provides fast, non-cached, forward-only access to CSV data. THIS PACKAGE IS NOT ENDORSED BY THE AUTHOR OF THE LIBRARY. The files in this package are otherwise exactly the same as LumenWorks.Framework.IO version 3.8.0 binaries downloadable from CodeProject and associated with the publication of the article (see project URL) on November... More information
-
Mannex
Extension methods for .NET.
-
LINQBridge
With Visual Studio's multi-targeting and LINQBridge, you can write LINQ to Objects (local) queries using the full power of the C# 3.0 compiler and yet create programs that require only Microsoft .NET Framework 2.0. LINQBridge is a re-implementation of all the standard query operators introduced with Microsoft .NET Framework 3.5's System.Linq.Enumer... More information
-
LINQBridge (Embedded)
With Visual Studio's multi-targeting and LINQBridge, you can write LINQ to Objects (local) queries using the full power of the C# 4.0 compiler and yet create programs that require only Microsoft .NET Framework 2.0. LINQBridge is a re-implementation of all the standard query operators introduced with Microsoft .NET Framework 3.5's System.Linq.Enumer... More information
-
NotWebMatrix.Data
Simple database access like in WebMatrix.Data.
-
ELMAH
ELMAH with initial configuration for getting started quickly. ELMAH (Error Logging Modules and Handlers) is an application-wide error logging facility that is completely pluggable. It can be dynamically added to a running ASP.NET web application, or even all ASP.NET web applications on a machine, without any need for re-compilation or re-deployment... More information
-
ELMAH Core Library (no config)
Core library for ELMAH (Error Logging Modules and Handlers) without any configuration.
-
ELMAH Filtering Sample
Sample configuration supplying common filtering for ELMAH.
-
TryParsers
Provides alternate ways to invoke TryParse methods from .NET Framework for use in expressions and functional code like LINQ queries
-
TryParsers (Embedded)
A single C# file that can be embedded to provide alternate ways to invoke TryParse methods from .NET Framework for use in expressions and functional code like LINQ queries.
-
ELMAH on XML Log
ELMAH with configuration for getting started quickly on an error log in stand-alone XML files.
-
ELMAH on Microsoft Access
ELMAH with configuration for getting started quickly on a Microsoft Access database as the error log.
-
ELMAH on MySQL (requires manual config)
ELMAH with configuration for getting started quickly on an MySQL 5.0+ database as the error log. NB requires manual configuration.
-
ELMAH on Oracle (requires manual config)
ELMAH with configuration for getting started quickly on an Oracle database as the error log. NB requires manual configuration.
-
ELMAH on PostgreSQL (requires manual config)
ELMAH with configuration for getting started quickly on a PostgreSQL database as the error log. NB requires manual configuration.
-
ELMAH on MS SQL Server (requires manual config)
ELMAH with configuration for getting started quickly on a Microsoft SQL Server (2000 or later) database as the error log. NB requires manual configuration.
-
ELMAH on MS SQL Server Compact
ELMAH with configuration for getting started quickly on a Microsoft SQL Server Compact database as the error log.
-
MoreLINQ for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the following methods: Acquire, AssertCount, Batch, Concat, Consume, DistinctBy, EquiZip, ExceptBy, Fold, ForEach, Generate, GenerateByIndex, GroupAdjacent, Index, MaxBy, MinBy, Pad, Pairwise, Pipe, Prepend, PreScan, Scan, SingleOrFallback, SkipUntil, Split, TakeEvery, TakeLast, TakeUntil,... More information
-
MoreLINQ's ToDelimitedString for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method ToDelimitedString. Creates a delimited string from a sequence of values. The delimiter used depends on the current culture of the executing thread.
-
MoreLINQ's Fold for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method Fold. Returns the result of applying a function to items of a fixed-size sequence.
-
Mixed Authentication Disposition ASP.NET Module (MADAM)
MADAM is an HTTP module for ASP.NET (1.1 or later) that allows a single web application to employ standard HTTP authentication schemes (like Basic and Digest) to be used in addition to the non-standard Forms authentication. MADAM also includes a Basic authentication HTTP module.
-
MoreLINQ's Generate for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method Generate. Returns a sequence of values based on indexes.
-
MoreLINQ's TakeLast for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method TakeLast. Returns a specified number of contiguous elements from the end of a sequence.
-
MoreLINQ
This project enhances LINQ to Objects with the following methods: Acquire, AssertCount, Batch, Concat, Consume, DistinctBy, EquiZip, ExceptBy, Fold, ForEach, Generate, GenerateByIndex, GroupAdjacent, Index, MaxBy, MinBy, Pad, Pairwise, Pipe, Prepend, PreScan, Scan, SingleOrFallback, SkipUntil, Split, TakeEvery, TakeLast, TakeUntil, ToDataTable, ToD... More information
-
MoreLINQ's Acquire for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method Acquire. Ensures that a source sequence of objects are all acquired successfully. If the acquisition of any one fails then those successfully acquired till that point are disposed.
-
MoreLINQ's AssertCount for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method AssertCount. Asserts that a source sequence contains a given count of elements.
-
MoreLINQ's Batch for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method Batch. Batches the source sequence into sized buckets.
-
MoreLINQ's Concat for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method Concat. Returns a sequence consisting of the head element and the given tail elements.
-
MoreLINQ's Consume for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method Consume. Completely consumes the given sequence. This method uses immediate execution, and doesn't store any data during execution.
-
MoreLINQ's EquiZip for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method EquiZip. Returns a projection of tuples, where each tuple contains the N-th element from each of the argument sequences.
-
MoreLINQ's ForEach for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method ForEach. Immediately executes the given action on each element in the source sequence.
-
MoreLINQ's GenerateByIndex for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method GenerateByIndex. Returns a sequence of values based on indexes.
-
MoreLINQ's GroupAdjacent for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method GroupAdjacent. Groups the adjacent elements of a sequence according to a specified key selector function.
-
MoreLINQ's Index for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method Index. Returns a sequence of where the key is the zero-based index of the value in the source sequence.
-
MoreLINQ's MaxBy for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method MaxBy. Returns the maximal element of the given sequence, based on the given projection.
-
MoreLINQ's MinBy for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method MinBy. Returns the minimal element of the given sequence, based on the given projection.
-
MoreLINQ's Pad for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method Pad. Pads a sequence with default values if it is narrower (shorter in length) than a given width.
-
MoreLINQ's Pairwise for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method Pairwise. Returns a sequence resulting from applying a function to each element in the source sequence and its predecessor, with the exception of the first element which is only returned as the predecessor of the second element.
-
MoreLINQ's Pipe for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method Pipe. Executes the given action on each element in the source sequence and yields it.
-
MoreLINQ's Prepend for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method Prepend. Prepends a single value to a sequence.
-
MoreLINQ's PreScan for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method PreScan. Performs a pre-scan (exclusive prefix sum) on a sequence of elements.
-
MoreLINQ's Scan for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method Scan. Peforms a scan (inclusive prefix sum) on a sequence of elements.
-
MoreLINQ's SingleOrFallback for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method SingleOrFallback. Returns the single element in the given sequence, or the result of executing a fallback delegate if the sequence is empty. This method throws an exception if there is more than one element in the sequence.
-
MoreLINQ's SkipUntil for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method SkipUntil. Skips items from the input sequence until the given predicate returns true when applied to the current source item; that item will be the last skipped.
-
MoreLINQ's Split for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method Split. Splits the source sequence by a separator.
-
MoreLINQ's TakeEvery for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method TakeEvery. Returns every N-th element of a source sequence.
-
MoreLINQ's TakeUntil for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method TakeUntil. Returns items from the input sequence until the given predicate returns true when applied to the current source item; that item will be the last returned.
-
MoreLINQ's Trace for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method Trace. Traces the elements of a source sequence for diagnostics.
-
MoreLINQ's Zip for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method Zip. Returns a projection of tuples, where each tuple contains the N-th element from each of the argument sequences.
-
MoreLINQ's ZipLongest for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method ZipLongest. Returns a projection of tuples, where each tuple contains the N-th element from each of the argument sequences.
-
Fizzler
Fizzler is a W3C Selectors parser and generic selector framework for document hierarchies.
-
Fizzler Tools
WinForms and console tools for querying HTML documents based on open source libraries Fizzler and HTML Agility Pack
-
Fizzler for HTML Agility Pack
Fizzler is a W3C Selectors parser and generic selector framework for document hierarchies. This package enables Fizzler over HTMLAgilityPack, adding QuerySelector and QuerySelectorAll (from Selectors API Level 1) for HtmlNode objects.
-
NCrontab
NCrontab is crontab for Microsoft .NET Framework 2.0 and above. It provides parsing and formatting of crontab expressions as well as calculation of occurrences of time based on a schedule expressed in the crontab format.
-
MoreLINQ's DistinctBy for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method DistinctBy. Returns all distinct elements of the given source, where "distinctness" is determined via a projection and the default eqaulity comparer for the projected type.
-
MoreLINQ's ExceptBy for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method ExceptBy. Returns the set of elements in the first sequence which aren't in the second sequence, according to a given key selector.
-
MoreLINQ's ToDataTable for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method ToDataTable. Appends elements in the sequence as rows of a given object with a set of lambda expressions specifying which members (property or field) of each element in the sequence will supply the column values.
-
MoreLINQ's ToHashSet for C# Sequences (Source)
C# source implementation that enhances LINQ to Objects with the method ToHashSet. Returns a of the source items using the default equality comparer for the type.
-
Eggado
ADO.NET Modernizer
-
Jayrock
Jayrock is a modest implementation of JSON, JsonML and JSON-RPC for the Microsoft .NET Framework, including ASP.NET.
-
Jayrock JSON
Jayrock JSON is a versatile JSON parser, formatter and converter for Microsoft .NET Framework.