TigerDirect

An Open Letter to Hobbyists, from Bill Gates

Posted by Johan Cyprich on 14 Jul 2008 | Tagged as: Business

Software piracy has been a problem from the earliest days of Microsoft. When they developed Altair BASIC, only about 10% of its users bought the software. The rest pirated it.

Bill Gates wrote a letter to the Altair community on February 3, 1976, explaining the need for buying software instead of just copying it. His arguments are very good and still apply to today’s software industry.

image

Related posts:
Related Posts
    Bill Gates and the Computer Man
    Tips from a Billionaire for New Programmers
    The Letter That Started Joomla!
    Mercy for a Russian Software Pirate

Share this post:

del.icio.us:An Open Letter to Hobbyists, from Bill Gates digg:An Open Letter to Hobbyists, from Bill Gates spurl:An Open Letter to Hobbyists, from Bill Gates wists:An Open Letter to Hobbyists, from Bill Gates simpy:An Open Letter to Hobbyists, from Bill Gates newsvine:An Open Letter to Hobbyists, from Bill Gates blinklist:An Open Letter to Hobbyists, from Bill Gates furl:An Open Letter to Hobbyists, from Bill Gates reddit:An Open Letter to Hobbyists, from Bill Gates fark:An Open Letter to Hobbyists, from Bill Gates blogmarks:An Open Letter to Hobbyists, from Bill Gates Y!:An Open Letter to Hobbyists, from Bill Gates smarking:An Open Letter to Hobbyists, from Bill Gates magnolia:An Open Letter to Hobbyists, from Bill Gates segnalo:An Open Letter to Hobbyists, from Bill Gates gifttagging:An Open Letter to Hobbyists, from Bill Gates

NeatUpload and Windows 2008 Server

Posted by Johan Cyprich on 11 Jul 2008 | Tagged as: Tech Tips

NeatUpload will not work by default when used with Windows 2008 Server. Like many other web applications that you install from earlier Windows servers, you need to make modifications to the web.config file.

First of all, you need to make sure that the component is installed properly. This procedure is described in its documentation. Then you need to make the following change (in bold) in web.config:

<httpModules>
     <remove name="ScriptModule" />
     <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
     <add name="UploadHttpModule" type="Brettle.Web.NeatUpload.UploadHttpModule, Brettle.Web.NeatUpload" />
</httpModules>

The component should function normally now. You can read the post on the Brettle web site where this question was answered by Dean Brettle.

Related posts:
Related Posts
    Fixing File Upload Size Limit in IIS 7
    It’s Not a Bug … It’s a Feature!
    Fixing web.config for Windows 2008 Server Web Applications
    The Dangers of Assumptions in Software Development

Share this post:

del.icio.us:NeatUpload and Windows 2008 Server digg:NeatUpload and Windows 2008 Server spurl:NeatUpload and Windows 2008 Server wists:NeatUpload and Windows 2008 Server simpy:NeatUpload and Windows 2008 Server newsvine:NeatUpload and Windows 2008 Server blinklist:NeatUpload and Windows 2008 Server furl:NeatUpload and Windows 2008 Server reddit:NeatUpload and Windows 2008 Server fark:NeatUpload and Windows 2008 Server blogmarks:NeatUpload and Windows 2008 Server Y!:NeatUpload and Windows 2008 Server smarking:NeatUpload and Windows 2008 Server magnolia:NeatUpload and Windows 2008 Server segnalo:NeatUpload and Windows 2008 Server gifttagging:NeatUpload and Windows 2008 Server

Fixing web.config for Windows 2008 Server Web Applications

Posted by Johan Cyprich on 11 Jul 2008 | Tagged as: Tech Tips

A web site created with Visual Web Developer 2008 Express Edition will not work in Windows 2008 Server. The web.config file needs to be modified in order for the web site to run correctly.

For an ASP.NET Web Site (.NET 3.5), make the following changes:

  1. In <configSections>, add comments around scriptResourceHandler:

    <!–
    <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>
    –>

  2. Again, in <configSections> in the scriptResourceHandler section, place comments around jsonSerialization, profileService, and authenticationService:

    <!–
    <section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere" />
    <section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
    <section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
    –>

  3. In <system.web> in <httpModules>, place comment around ScriptModule:

    <!–
    <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
    –>

The web.config file will now work in Windows 2008 Server. You can download a fixed web.config file and replace the old file when you create a new web application.

Related posts:
Related Posts
    Fixing File Upload Size Limit in IIS 7
    NeatUpload and Windows 2008 Server
    It’s Not a Bug … It’s a Feature!
    Importing and Exporting with SQL Server 2005 Express

Share this post:

del.icio.us:Fixing web.config for Windows 2008 Server Web Applications digg:Fixing web.config for Windows 2008 Server Web Applications spurl:Fixing web.config for Windows 2008 Server Web Applications wists:Fixing web.config for Windows 2008 Server Web Applications simpy:Fixing web.config for Windows 2008 Server Web Applications newsvine:Fixing web.config for Windows 2008 Server Web Applications blinklist:Fixing web.config for Windows 2008 Server Web Applications furl:Fixing web.config for Windows 2008 Server Web Applications reddit:Fixing web.config for Windows 2008 Server Web Applications fark:Fixing web.config for Windows 2008 Server Web Applications blogmarks:Fixing web.config for Windows 2008 Server Web Applications Y!:Fixing web.config for Windows 2008 Server Web Applications smarking:Fixing web.config for Windows 2008 Server Web Applications magnolia:Fixing web.config for Windows 2008 Server Web Applications segnalo:Fixing web.config for Windows 2008 Server Web Applications gifttagging:Fixing web.config for Windows 2008 Server Web Applications

Viewing .htaccess in Remote Connections in Eclipse

Posted by Johan Cyprich on 04 Jul 2008 | Tagged as: Tech Tips

I’ve been trying to view .htaccess files in a web site connected to remotely in Eclipse. These do not appear in file listings so they can’t be opened. I’ve added an .htaccess file type, but that didn’t work. After searching around in the Preferences (found in the Windows pull down menu), I found an option in the Remote Systems->File section. If you check on Show hidden files, then .htaccess will appear (you may need to Refresh the folder first). Then you can open the file by double-clicking on it.

I’ve shown below where this option can be found in Eclipse 3.3.2 and the new Zend Studio for Eclipse. Click on the image for a larger view.

Preferences in Eclipse 3.3.2

image

Preferences in Zend Studio for Eclipse

image

Related posts:
Related Posts
    Installing Fireboard in Joomla 1.5
    WordPress 2.2.1 Upgrade
    Don’t Use Java 6
    PostgreSQL Using Too Much Memory

Share this post:

del.icio.us:Viewing .htaccess in Remote Connections in Eclipse digg:Viewing .htaccess in Remote Connections in Eclipse spurl:Viewing .htaccess in Remote Connections in Eclipse wists:Viewing .htaccess in Remote Connections in Eclipse simpy:Viewing .htaccess in Remote Connections in Eclipse newsvine:Viewing .htaccess in Remote Connections in Eclipse blinklist:Viewing .htaccess in Remote Connections in Eclipse furl:Viewing .htaccess in Remote Connections in Eclipse reddit:Viewing .htaccess in Remote Connections in Eclipse fark:Viewing .htaccess in Remote Connections in Eclipse blogmarks:Viewing .htaccess in Remote Connections in Eclipse Y!:Viewing .htaccess in Remote Connections in Eclipse smarking:Viewing .htaccess in Remote Connections in Eclipse magnolia:Viewing .htaccess in Remote Connections in Eclipse segnalo:Viewing .htaccess in Remote Connections in Eclipse gifttagging:Viewing .htaccess in Remote Connections in Eclipse

PDF Becomes an ISO Standard

Posted by Johan Cyprich on 03 Jul 2008 | Tagged as: Technology

The International Organization for Standardization (ISO) will now be in control of Adobe’s Portable Document Format (PDF). The new standard, ISO 32000-1, Document management - Portable document format - Part 1: PDF 1.7, is not only an excessively long name but its also based on version 1.7 of PDF.

The PDF format was created in 1993 and has become the standard format for creating documents for viewing and printing. The format does have several problems. Fonts that require a licence do not get embedded in a PDF which causes all sorts of problems when trying to print the document. Instead of the correct font appearing, it will default to Courier instead. Colour separation and colour matching are also difficult to do in a PDF.

There are many PDF creators and viewers, but the only ones that really work properly are Adobe’s products. I haven’t used anything displays documents as accurately as Acrobat Reader, and Acrobat Distiller still produces the cleanest PDF’s.

All of this may change with the ISO standardization.

Related posts:
Related Posts
    C++09 - The New C++ Standard
    OpenDocument: One Standard To Rule Them All
    Noam Chomsky and Blogging
    8,002,530 Downloads and a World Record

Share this post:

del.icio.us:PDF Becomes an ISO Standard digg:PDF Becomes an ISO Standard spurl:PDF Becomes an ISO Standard wists:PDF Becomes an ISO Standard simpy:PDF Becomes an ISO Standard newsvine:PDF Becomes an ISO Standard blinklist:PDF Becomes an ISO Standard furl:PDF Becomes an ISO Standard reddit:PDF Becomes an ISO Standard fark:PDF Becomes an ISO Standard blogmarks:PDF Becomes an ISO Standard Y!:PDF Becomes an ISO Standard smarking:PDF Becomes an ISO Standard magnolia:PDF Becomes an ISO Standard segnalo:PDF Becomes an ISO Standard gifttagging:PDF Becomes an ISO Standard

« Newer Entries - Older Entries »