On CBSSports.com: Mike Tyson's daughter dies in accident
10250 Resources for

software development

  • Subscribe to this listing via:
  • RSS
  • Email
Did you mean software development (10,251 results), SDK (232 results), software development environment (3 results), software development services (1 results), EMS Software Development Co. (1 results)

TechRepublic Resources

Play the original Star Trek video game from 1971
Journey with us now back to the halcyon days of 1971, when men coded on paper tape and punch cards, and the ASCII-based adventures of the Starship Enterpise are yours for the asking. by Jay Garmon
Tags: Video Game, Video, Star Trek, Starfleet, Games, Corporate Communications, C#, Personal Technology, Marketing, Programming Languages, Software Development, Software/Web Development, Jay Garmon
Blog posts 2008-08-06
Employ refactoring via Visual Studio to write better code
Refactoring is the practice of making your code cleaner and clearer without affecting the functionality. Find out what's included in Visual Studio's Refactor menu, and discover a couple of Visual Studio add-ins that bring refactoring to the Visual Basic community. by Tony Patton
Tags: Developer, Microsoft Visual Studio, Microsoft Visual Basic, Code, Feature, Refactoring, Refactor, Refactor Menu, Visual Studio IDE, Microsoft Development Tools, Programming Languages, Development Tools, Software Development, Software/Web Development, Tony Patton
Blog posts 2008-08-04
Challenges for old developers learning new tricks
The problem of staying current is more acute in IT than in other fields because of the speed of new technology development. What do you do when a new technology comes along that makes obsolete a technology that you've devoted a good part of your career to? by Toni Bowers
Tags: Developer, Microsoft Visual Basic 6.0, Information Technology, .Net, Application Servers, Middleware, Professional Development, Strategy, Software Development, Software/Web Development, Enterprise Software, Software, Career, Management, Toni Bowers
Blog posts 2008-07-25
Bignum arithmetic and premature optimization
What does Knuth's statement, "premature optimization is the root of all evil," mean for security? by Chad Perrin
Tags: Integer, Optimization, Ruby, Programmer, Language, Moore, Scripting Languages, C/C++, Development Tools, Security, Software/Web Development, Web Development, Programming Languages, Software Development, Chad Perrin
Blog posts 2008-07-22
T-shirt of the week: Think globally
As the United States enters yet another Presidential election cycle, the American media deluges us with campaign messages warning of the nation's foreign dependencies, and the importance of responsible future development with a close eye on our environment. They're talking about IDEs, right? by Jay Garmon
Tags: Dependency, Development Tools, Advertising & Promotion, Software Development, Software/Web Development, Marketing, Jay Garmon
Blog posts 2008-07-18
CodeGear: Working hard to rejuvenate its legacy
Justin James jumped at the chance to interview an executive at CodeGear. Discover what the CodeGear developers are working on. by Justin James
Tags: CodeGear, Borland Delphi, Borland Software Corp., Michael, Development Tools, Programming Languages, Productivity, Software Development, Software/Web Development, Justin James
Blog posts 2008-07-01
Download files over the Web with .NET's WebClient class
The System.Net namespace includes the WebClient class for uploading and downloading files via HTTP. You can copy or read files with only a few lines of code. Tony Patton details how the WebClient class helped him solve a recent problem. by Tony Patton
Tags: Web, Namespace, Data, Class, Site, File, Error, WebClient, WebClient Class, System.Net Namespace, Stream, String, imageAddress, currentLine, .Net, Channel Management, Software Development, Software/Web Development, Marketing, Tony Patton
Blog posts 2008-06-27
How do you convince potential employers that you're not overqualified?
People have many reasons to pursue a job that is deemed by others to be "below their station." How do you convince a potential employer to give you a chance? by Toni Bowers
Tags: Job, Position, Recruitment & Selection, Software Development, Human Resources, Workforce Management, Software/Web Development, Toni Bowers
Blog posts 2008-06-25
Is your site safe from SQL injection attacks?
Microsoft and HP announced yesterday that they are providing free tools to help network administrators to deal with the increase in SQL injection attacks over the last six months. by Andy Moon
Tags: Vulnerability, SQL, SQL Injection, Attack, Programming Languages, Security, Databases, Software Development, Software/Web Development, Enterprise Software, Software, Data Management, Andy Moon
Blog posts 2008-06-24
How do I... Make C# or .NET Framework applications accessible in the system tray?
Putting an icon for your application in the system tray is a great way to insure that your program is easily accessible to the user. Zach Smith explains how to use the system tray with C# and the .NET Framework. by Zach Smith
Tags: Microsoft .NET Framework, Code, System Tray, Icon, Form, NotifyIcon, Context Menu, Figure D, C#, Programming Languages, Software Development, Software/Web Development, Zach Smith
Blog posts 2008-06-17
A .NET primer on reference types and value types
Working with reference types and value types is usually not given much thought during daily programming chores; but if you ever choose to pursue .NET certification, you should be familiar with both types. Tony Patton provides you with a solid background in these programming basics. by Tony Patton
Tags: Method, Reference, Class, Type, Object, Class Type, ByRef, Person, Person Class, SwapPeople, SwapValue, person1.FirstName, person1.LastName, person1.Title, person2.FirstName, person2.LastName, person2.Title, Console.WriteLine, Integer, ByVal, .Net, C#, Application Servers, Microsoft Development Tools, Development Tools, Programming Languages, Middleware, Software Development, Software/Web Development, Enterprise Software, Software, Tony Patton
Blog posts 2008-06-16
My move from VB.NET to C#
Justin James confesses why he stuck with VB.NET for so long rather than moving to C# and reveals how life has been now that he's taken the plunge. by Justin James
Tags: Microsoft Visual Basic.Net, .NET Documentation, C#, .Net, Programming Languages, Microsoft Development Tools, Software Development, Software/Web Development, Development Tools, Justin James
Blog posts 2008-06-11
Keeping up with development technology at TechEd 2008
Bill Gates kicked off last week's TechEd North America 2008 Developers conference in Orlando, FL by talking about the fact that he's taking a less active role at Microsoft to spend more time as a philanthropist. Even though this was old news, I learned plenty of new information during the...
Tags: Developer, Microsoft Visual Studio, Microsoft Silverlight, Product, Microsoft Corp., Conference, Silverlight 2 Beta 2, Microsoft Sync Framework, Microsoft Development Tools, Enterprise Software, Development Tools, Software Development, Software/Web Development, Software, Tony Patton
Blog posts 2008-06-09
Video: Bill Gates talks past and future in his 'last keynote' for Microsoft
On Tuesday at Microsoft Tech-Ed 2008 in Orlando, Bill Gates gave what was billed as his last keynote as a full-time Microsoft employee. He talked about the past and the future of software development and even made a few product announcements. Gates said: "When I think...
Tags: Keynote, Bill Gates, Video, Microsoft Corp., Corporate Communications, Software Development, Development Tools, .Net, Marketing, Software/Web Development, Jason Hiner
Blog posts 2008-06-03
Monitor and manage Java applications with JConsole
In addition to comprehensive monitoring and application management support offered by J2SE 5.0, JDK 5.0 and JDK 6.0 include the Java Monitoring & Management Console tool, also known as JConsole. The jconsole command launches a graphical console tool that enables you to monitor and manage Java applications on a local or...
Tags: Java Application, Application, Monitor, JDK, Application Server, Information, JVM, JConsole, JMX, MBeans, Java, Programming Languages, Software Development, Software/Web Development, Peter Mikhalenko
Blog posts 2008-05-31
Implementing the callback pattern in Java
A callback in programming is executable code that is passed as an argument to other code. The higher-level code usually starts by calling a function within the lower-level function, passing to it a pointer, or handle to another function. When the lower-level function executes, it may call...
Tags: Function, Callback, Class, EventAboutWhichWeBother, Programming Languages, Java, Software Development, Software/Web Development, Peter Mikhalenko
Blog posts 2008-05-30
How do I give Windows Vista a quick performance boost?
If you are using Windows Vista in its entire splendor, did you know that a simple aero tweak will give you a performance boost? If you are running Windows Vista with the aero interface enabled, perform the following to boost your system: Right-click on the Windows desktop...
Tags: Performance, C, Microsoft Windows Vista, Microsoft Windows, Microsoft Windows Vista (Longhorn), C/C++, Operating Systems, Software, Programming Languages, Software Development, Software/Web Development, Steven Warren
Blog posts 2008-05-27
Why it's impossible to become a programming expert
The pace of change in the technology industry has made it nearly impossible to specialize in much or become an expert in anything. I started cluing in on this a few years ago when I was reading a lot about Lisp, but I simply didn't have time to try it...
Tags: .Net, C, C#, Development Tools, Expert Programmer, Java, Justin James, Namespace, Perl, Programmer, Programming, Programming Languages, Scripting Languages, Software Development, Software/Web Development, Web Development
Blog posts 2008-05-27
Offshore developers: Focus on comprehension rather than speed
In the discussion about whether you charge by the hour or per day for onsite IT consulting, TechRepublic member Marty R. Milette took me to task for being a "whiny, spoiled, American consultant." The idea that I name my own terms and charge more for onsite work did not resonate...
Tags: Developer, Offshore Developer, Development Tools, Software Development, Software/Web Development, Chip Camden
Blog posts 2008-05-27
How do I configure SQL mail in SQL Server 2000?
As a database administrator, I like automation. When it comes to my backups, I like to automate as much as possible. SQL Mail gives me the ability to know when my backups are successful and when they fail. SQL Mail is a component of SQL Server that...
Tags: Microsoft Outlook, Microsoft SQL Server, Microsoft SQL Server 2000, Server, SQL, E-mail, SQL Mail, Programming Languages, Databases, Software Development, Software/Web Development, Enterprise Software, Software, Data Management, Steven Warren
Blog posts 2008-05-21
  • << Previous
  • page 1 of 513
  • Next >>


500 Things Every Technology Professional Needs to Know
Did you know Microsoft's RegClean does not work with XP but you can use shareware to clean your registry? Did you know most wireless access points don't have encryption enabled by default? Did you know there are 500 tidbits of information contained in TechRepublic's 500 Things Every Technology Professional Needs to Know that will help you become a successful IT professional.
Buy Now
PC Troubleshooter Resource Guide, Fifth Edition
Ensure you have the solutions you need to troubleshoot power supplies, CPUs, video cards, disk drives, CD and DVD drives, motherboards, sound cards, USB issues, monitors, printers, laptops, network connections, spyware, Windows XP and more.
Buy Now

SmartPlanet