We are an award-winning tech entrepreneurship website where trusted experts can provide value globally.

Since 1998, DevX has helped people start businesses, build websites, and provide enterprise technology to people globally. Interviewing the likes of Microsoft’s co-founder, Steve Ballmer, the publication brings comprehensive, reliable, and accessible insights to the Internet.

devxlogo

Trusted for 26 years

Over 30K Articles

1M+ Readers

Expert-reviewed

10K+ Tech Terms

As seen in:

microsoft logo
business_insider_logo
wired_logo
berkley
arstechnica_logo
hackernoon

The Latest

DevX - Software Development Resource

It’s a Blog World

oday is November 3rd, 2004. In case you didn’t know, this country held elections yesterday and as of this morning we have another four years of President Bush. One thing

DevX - Software Development Resource

Elegant Isn’t Always Best

n an effort to downsize, we recently decided to put the house in Los Angeles on the market?it’s our attempt to “cash out,” and take advantage of the hot real

DevX - Software Development Resource

Heard on .NET Rocks!: Jay Roxe

am the host of .NET Rocks!, an Internet audio talk show for .NET developers online at http://www.franklins.net/dotnetrocks and http://msdn.microsoft.com/dotnetrocks. My co-host, Rory Blyth, ( http://www.neopoleon.com ) and I interview the

DevX - Software Development Resource

Riled Readers Respond to Restive OOP Rejection

he recent DevX editorial “OOP Is Much Better in Theory Than in Practice” by Richard Mansfield has caused quite a stir among our audience. The strong response revealed contrasting viewpoints

DevX - Software Development Resource

OOP Is Best in Practice

n his recent DevX editorial, Richard Mansfield proposes that “OOP Is Much Better in Theory Than in Practice.” In reading his article, many of his objections seemed to be based

DevX - Software Development Resource

Build Your Own GUI for RegSvr32

am currently developing for a company that recently purchased a new content management system. Due to the number of requested custom enhancements, the vendor phased the implementation. They delivered the

DevX - Software Development Resource

Some “Hints” for Mastering SQL Tuning

y wife and I recently had a baby. In the labor and delivery room, the medical staff connected several sensors to my wife’s tummy to monitor the baby’s heartbeat, contractions,

DevX - Software Development Resource

Generating Realistic and Non-Random Sample Data

ave you ever needed to populate a database with realistic, but generated (as opposed to actual) data, in volumes that demand automation? Such a need arises in many circumstances, such

DevX - Software Development Resource

Two Ways to Chain Servlets

In Servlets/JSPs, there are two ways to achieve servlet chaining using javax.servlet.RequestDispatcher: Include: RequestDispatcher rd = req.getRequestDispatcher(“Servlet2”);rd.include(req, resp); Forward, where req is HttpServletRequest and resp is HttpServletResponse: RequestDispatcher rd =

DevX - Software Development Resource

Configure IIS for Debugging ASP Pages in Interdev

In order to debug ASP pages in Visual Interdev, you need to change some some IIS settings. Open the Internet Service Manager console (using the inetmgr command on Start?>Run). Right

DevX - Software Development Resource

The reverse() Algorithm

You can use this algorithm to reverse the order of elements in any sequence container. It takes two bidirectional iterators as argument: int iArr [] = {1, 2, 3, 4,

DevX - Software Development Resource

Processing EDI Documents into XML with Python

any companies devote a sizeable portion of their IT infrastructure to converting traditional EDI data to and from the data formats their back office systems use. Typically, they handle this

DevX - Software Development Resource

Review: Take Your PHP Web Pages Pro with the Zend IDE

espite its similarity to ASP, PHP is rapidly becoming the language of choice for Web development. Its simplicity, power, and widespread support are all factors that have influenced an increasing

DevX - Software Development Resource

Monitor a Java Application in 1.5 JVM

Simply start your application with: -Dcom.sun.management.jmxremote This allows you to monitor the GC, thread, and memory status of the application throughout: [jdk_home]/bin/jconsole

DevX - Software Development Resource

Accessing Individual Bits of a Value

Ever needed to access individual bits of a value? It can be done with bitshifting and a sequence of logical &s quickly and easily. When finished, you will have a

DevX - Software Development Resource

OOP Is Much Better in Theory Than in Practice

ike many ideas that sound good in theory but are clumsy in practice, object-oriented programming (OOP) offers benefits only in a specialized context—namely, group programming. And even in that circumstance

DevX - Software Development Resource

Harden MS Reporting Services Using Custom Extensions

ne of the most useful features of Microsoft Reporting Services is its extensibility model. Just about any aspect of Reporting Services can be custom-tailored to meet your specific requirements. Part