Skip to main content

Home/ Coders/ Group items tagged class

Rss Feed Group items tagged

Ziem Merwin

Faxless Payday Loans - Systematic Loans for Those Who Needy and Helpless - 0 views

Faxless Payday Loans, a superb financial solution for those people who still running in short term cash crunches. These loans require basic information despite nasty credit rating on the same day o...

instant faxless payday loans quick no credit cash loans today faxless payday loans quick cash loans instant faxless loans

started by Ziem Merwin on 05 Aug 15 no follow-up yet
Joel Bennett

Desktop Switching - CodeProject - 3 views

  •  
    A great article on how to use Windows desktop switching APIs from C# ... (as a side note, you can import this class into PowerShell and just go crazy)
Joel Bennett

XmlSerializable Sample Code Generator 1.4.2.1 - 0 views

  • The Sample Code Generator (XSDObjectGen) tool takes an XSD schema as input and generates sample code showing how to mark up C# and VB.Net classes so that when serialized with the XML serializer, the resulting XML will be valid according to the original schema.
  •  
    Makes skeleton C# or VB classes that will serialize to match an XML Schema.
Joel Bennett

Xceed DataGrid for .WPF Windows Presentation Foundation data grid gridview presenter co... - 0 views

  • Price: FREE (Licensing FAQ)
  •  
    A very impressive datagrid and date-picker for WPF available for free (in exchange for your name & email). Has a *really* slick "Card" view, as well as fully hierarchical standard grids and more. With all the usual in-place cell editors, XCEED's WPF DataGrid is fully styleable and templateable.

    AND IT'S FREE!

Joel Bennett

Making Strings More Secure - 0 views

  • Whidbey will be introducing a new class, SecureString, that helps to make this all easier for you. SecureStrings are held in encrypted memory by the CLR (using DPAPI), and are only unencrypted when they are accessed.  This limits the amount of time that your string is in plaintext for an attacker to see.  Since SecureString uses DPAPI to help secure your data, it's not available on Windows 98, ME, or Windows 2000 with anything less than service pack 3.
  •  
    The SecureString class provides a string type that is stored encrypted in memory when not in use and will not be copied around by the Garbage Collector, plus they can be zeroed out on destruction, and locked to read-only mode... Which makes this perfect for storing things like passwords in memory.
  •  
    Geniuzz.com es una pequeña sitios de trabajo. Este sitio está dedicado a todos los españoles están buscando trabajadores con un precio muy bajo. Si usted contrata a un trabajador de aquí. Te garantizo que es muy satisfactorio. Si eres un webmaster o BPA jugadores que necesitan ayuda. Acaba de llegar al mercado muy amable. Y yo también le ayudará. Por favor visite mi puesto aquí https://www.facebook.com/pages/Geniuzzcom/525081180900419
Joel Bennett

Koders - Utils.cs - 0 views

  •  
    Some good examples here of how to get icons -- although my ExtractIcons class should be more complete than this when it's done -- and particular to WPF instead of Windows.Forms.
Joel Bennett

CodeSynthesis XSD - XML Data Binding for C++ - 0 views

  •  
    Xml Data Binding is basically "compiling" XSD schemas into C++ classes ... somewhat like the .Net Xml Serializer.
Joel Bennett

Perspective - Easy 2D and 3D programming with WPF - Home - 0 views

  •  
    Perspective is an experimental .NET class library for building WPF user interfaces in 2D and 3D ...
Joel Bennett

SgmlReader 1.7.2 - Open Garden - 0 views

  • The original community around SgmlReader used to be hosted by GotDotNet, but is now being phased out.
  •  
    SgmlReader was a source reference assembly from Microsoft which allows parsing Html as Xml -- that is, it takes poor, and even invalid Html and converts it to XHtml and gives you an XmlReader or XmlDocument from it.
anonymous

dbscript php framework - 0 views

  •  
    dbscript is a web development framework, it helps php programmers take advantage of efficient design patterns and idioms from other dynamic languages and frameworks. for example, the Mapper and Route classes work together to map actions and records to distinct urls. among the many advantages of routes are the automatic named routes: url_for( resource ). restful urls, http-style controllers, atompub/html introspection documents and content-negotiation are among the sophisticated features of this programmer-centric development tool. the framework is a database abstraction layer, with built-in adapters for PostgreSQL and MySQL.
Joel Bennett

WMI Code Creator v1.0 - Download - Microsoft.com - 0 views

  •  
    The WMI Code Creator tool allows you to generate VBScript, C#, and VB .NET code that uses WMI to complete a management task such as querying for management data, executing a method from a WMI class, or receiving event notifications using WMI.
Joel Bennett

Windows PowerShell : Creating arbitrary delegates from scriptblocks in PowerShell... - 0 views

  • The script text follows... (updated - I missed the type argument to the box instruction in the first version posted.)  
    • Joel Bennett
       
      He only fixed the code that appears inline in the post below. The attachment is NOT fixed and does not work if you need to box parameters.
  •  
    A script to emit callback functions from powershell script.
Joel Bennett

blueprintcss - Google Code - 0 views

  •  
    A CSS Framework giving you a solid framework of css classes to build websites with, giving an interesting layout grid, good-looking typography defaults, and built in print stylesheets, etc.
Joel Bennett

Blitty Font - 0 views

  •  
    dumpglyphs turns a TrueType font or a console font into a PNG image containing the glyphs, plus a font information file ... plus ... ImgFont.js, a JavaScript base class to display text with the PNG-fonts
Joel Bennett

NodeXL - CodePlex - 0 views

  •  
    NodeXL (formerly known as NetMap). An Excel 2007 template for viewing and analyzing network graphs, with a set of .NET Framework 3.5 class libraries that can be used to add network graphs to custom applications.
Joel Bennett

eSvn - 0 views

  •  
    eSvn is another Open Source (GPL) CrossPlatform (Qt) Subversion (SVN) client ...
Matteo Spreafico

Fabulous Adventures In Coding : The Stack Is An Implementation Detail, Part One - 0 views

  • Almost every article I see that describes the difference between value types and reference types explains in (frequently incorrect) detail about what “the stack” is and how the major difference between value types and reference types is that value types go on the stack.
  • I find this characterization of a value type based on its implementation details rather than its observable characteristics to be both confusing and unfortunate. Surely the most relevant fact about value types is not the implementation detail of how they are allocated, but rather the by-design semantic meaning of “value type”, namely that they are always copied “by value”.
  • Of course, the simplistic statement I described is not even true. As the MSDN documentation correctly notes, value types are allocated on the stack sometimes. For example, the memory for an integer field in a class type is part of the class instance’s memory, which is allocated on the heap.
  • ...3 more annotations...
  • As long as the implementation maintains the semantics guaranteed by the specification, it can choose any strategy it likes for generating efficient code
  • That Windows typically does so, and that this one-meg array is an efficient place to store small amounts of short-lived data is great, but it’s not a requirement that an operating system provide such a structure, or that the jitter use it. The jitter could choose to put every local “on the heap” and live with the performance cost of doing so, as long as the value type semantics were maintained
  • I would only be making that choice if profiling data showed that there was a large, real-world-customer-impacting performance problem directly mitigated by using value types. Absent such data, I’d always make the choice of value type vs reference type based on whether the type is semantically representing a value or semantically a reference to something.
« First ‹ Previous 381 - 400 of 809 Next › Last »
Showing 20 items per page