gravatar

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

    2,790 downloads

  • Mannex

    Extension methods for .NET.

    474 downloads

  • 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

    570 downloads

  • 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

    355 downloads

  • NotWebMatrix.Data

    Simple database access like in WebMatrix.Data.

    302 downloads

  • 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

    815,802 downloads

  • ELMAH Core Library (no config)

    Core library for ELMAH (Error Logging Modules and Handlers) without any configuration.

    724,321 downloads

  • ELMAH Filtering Sample

    Sample configuration supplying common filtering for ELMAH.

    797 downloads

  • TryParsers

    Provides alternate ways to invoke TryParse methods from .NET Framework for use in expressions and functional code like LINQ queries

    350 downloads

  • 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.

    323 downloads

  • ELMAH on XML Log

    ELMAH with configuration for getting started quickly on an error log in stand-alone XML files.

    10,077 downloads

  • ELMAH on Microsoft Access

    ELMAH with configuration for getting started quickly on a Microsoft Access database as the error log.

    692 downloads

  • 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.

    2,036 downloads

  • 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.

    804 downloads

  • 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.

    760 downloads

  • 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.

    598,962 downloads

  • ELMAH on MS SQL Server Compact

    ELMAH with configuration for getting started quickly on a Microsoft SQL Server Compact database as the error log.

    3,965 downloads

  • 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

    179 downloads

  • 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.

    225 downloads

  • 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.

    121 downloads

  • 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.

    904 downloads

  • 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.

    178 downloads

  • 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.

    180 downloads

  • 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

    18,544 downloads

  • 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.

    153 downloads

  • 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.

    151 downloads

  • 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.

    200 downloads

  • 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.

    152 downloads

  • 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.

    153 downloads

  • 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.

    151 downloads

  • 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.

    156 downloads

  • 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.

    151 downloads

  • 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.

    207 downloads

  • 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.

    275 downloads

  • 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.

    219 downloads

  • 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.

    173 downloads

  • 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.

    152 downloads

  • 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.

    190 downloads

  • 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.

    152 downloads

  • 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.

    151 downloads

  • 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.

    152 downloads

  • 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.

    152 downloads

  • 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.

    151 downloads

  • 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.

    152 downloads

  • 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.

    152 downloads

  • 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.

    153 downloads

  • 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.

    153 downloads

  • 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.

    154 downloads

  • 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.

    152 downloads

  • 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.

    152 downloads

  • Fizzler

    Fizzler is a W3C Selectors parser and generic selector framework for document hierarchies.

    1,919 downloads

  • Fizzler Tools

    WinForms and console tools for querying HTML documents based on open source libraries Fizzler and HTML Agility Pack

    39 downloads

  • 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.

    76 downloads

  • 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.

    2,743 downloads

  • 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.

    493 downloads

  • 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.

    148 downloads

  • 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.

    145 downloads

  • 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.

    143 downloads

  • Eggado

    ADO.NET Modernizer

    743 downloads

  • Jayrock

    Jayrock is a modest implementation of JSON, JsonML and JSON-RPC for the Microsoft .NET Framework, including ASP.NET.

    2,138 downloads

  • Jayrock JSON

    Jayrock JSON is a versatile JSON parser, formatter and converter for Microsoft .NET Framework.

    3,228 downloads