Digital CarpenterSticky Postings
Digital Carpenter Pty Ltd is a web development company specialising in making internet applications using some of the latest technologies. Our latest offering is www.doculicious.com, an online application that combines web forms and PDF downloads, providing an easy way for people to gather information that they would normally need on a faxed or mailed form. Check out the Doculicious website to read more and look at some examples of how it works.
Doculicious API launchedThursday, June 4. 2009
I'm excited to announce the that we've just released the latest version of Doculicious.com which now includes an API. You can check out the release details and the new help documentation
Doculicious.com Launch FAQMonday, January 12. 2009
What is www.doculicious.com ?Doculicious.com is a web based application that offers a superior alternative to standard PDF downloads. Our application lets members design a PDF document using an online WYSIWYG designer, the system then creates a web form which can be embedded onto external websites or co-branded and accessed from doculicious.com. When someone completes the web-based form, they receive the completed PDF download, and we store the entered data into the members secure account. The benefits of using Doculicious over a normal PDF download includes:
Why was this site created ?Doculicious was built as an alternative to offering normal PDF files that need to be downloaded, filled-in, printed, signed and then faxed or mailed back. We realise that many companies, organisations and Government departments require signed forms for their business, but feel that a better solution could be had. Doculicious was built to provide this solution both for the people who need to fill in the forms, and also for the companies who provide the form for their clients. By using a doculicious PDF form instead of a standard PDF download, businesses make it simpler for their clients to conduct business with them by providing an easy way to complete their forms. They also streamline their own process and save time by having access to all the form data electronically before the paper has even arrived, allowing them to export, pre-process or followup on that information immediately. The signed paper form is still an important part of their business process, so each form can be configured with a tracking ID which can be searched on, so that when the paper form does arrive, it can be easily matched to the electronic data. Doculicious provides tools that allow members to easily create PDF documents using an online WYSIWYG design tool. We aim to make it as easy as possible to create forms, so have pre-made templates that can be used directly or copied and modified, allowing non-designers/developers to create PDF forms. The site also provides statistics on how many times forms were viewed and downloaded. All entries made to a form can be saved and downloaded as CSV or PDF, or set up to email directly after a form has been submitted. Who would use the site ?The site can be used by anyone who needs a web form or PDF download. Web developers and designers would benefit greatly from the service, though the site makes it easy for anyone who requires a web form or PDF download to make one and embed it on their site. What does it cost ?Doculicious.com uses a freemium based subscription model with 6 levels ranging from free to $197 (USD) for the corporate based account. Each higher subscription level gets more active templates, more downloads and extra features such as being able to have entries emailed after completion, premium support and custom styles. Who has created this site ?The site has been built by Digital Carpenter Pty Ltd, an Australian company whose aim is to create innovative, Web 2.0 solutions for businesses and consumers. Has the company received any funding ?No. All development had been bootstrapped through personal savings. What are the plans for the future ?We are constantly working on improving doculicious and have a long list of enhancements that are currently in development, such as adding an API for programmatic creation of PDF files, adding more field types and validation, general usability enhancements like adding folders for templates etc. Do you have screenshots ?
Posted by Chris Carpenter
in Business, Doculicious, Startups
at
10:15
| Comments (0)
| Trackbacks (0)
Decreasing AJAX web app loading timesWednesday, December 24. 2008When developing Doculicious, one of my main concerns was how fast the heavy JavaScript parts would load and run in the browser. Doculicious uses a fairly customised version of the Dojo Toolkit, and the raw files that were being loaded for some pages added up to over 550KB - made up of about 50 individual files, all being loaded by Dojo with its packaging system. This was fine for development and great for debugging, but I knew I had to do something before this went into production. In this post I'll talk about some of the things we use in Doculicious to make our JavaScript smaller and load faster, but still easy to develop on. Hopefully it should be general enough to help anyone who has a site using JavaScript, but we use Dojo so is a bit focused on its packaging system which includes multiple files at run-time. If your app doesn't use Dojo but has multiple JavaScript files, you'll probably still get some benefit out of this. There are 2 main ways to speed up a JavaScript application - Make the JavaScript load faster into the browser, and make it run quicker. There's a great article at IBM developerWorks called AJAX performance analysis that goes into both of these. The first section talks about the tools to use in Web application development - Firebug and YSlow, which are both required tools on any development box I use. The next goes into reducing the network transfer time, and this is where I'll focus on what we did with doculicious. Reducing File Size and HTTP requestsThe Dojo Toolkit uses a packaging system similar to Java, and it's a great way to separate out all the files and keep them organised and easy to develop. We've created our own package for doculicious and one of our JavaScript heavy pages may require up to 50 individual files to be included. Because of current browser connection limits, this is way too much, and it's much better to limit the number of JavaScript files to one or two instead of loading many. What I wanted to do for doculicious was to create individual files for each JS heavy page, with each file including just the JavaScript code it needed. This individual file could then be used with the dojo.js file so that all the required JavaScript for a page would be in 2 files. Because Dojo automatically includes JS files depending on which widgets and functions are used, I needed to define which ones were used on which page so that I could join them all together. Firebug is great for this, and using the Net tab quickly lets you see all the included JS files:
My initial goal was to create a range of "base" files that could be concatenated together in an Ant script to create a JavaScript file for any doculicious page. Using Firebug to find the common files across each of our pages, I made a list of all the Dojo specific files that were needed, and also of our custom doculicious files. At this point I realised that each of our pages used very similar Dojo functions and widgets, so I made the decision to manually join these together into one file that could be included across all the files I needed. This is probably not the best thing to do if you are using the latest version of Dojo or another packaging system, as when changes are made it will be harder to integrate them, but our base Dojo is version 0.4.3 and I do not plan on upgrading it. We've only found a couple of bugs over the past 18 months, so I'm comfortable that this base is stable. Concatenating your JavaScript into a single file is great for production code, but you still need to develop on it. So when doing this we need to keep our individual files available for development, while having a simple process to make the production code. I use Eclipse with the MyEclipse plugin as my IDE. The JavaScript project is structured like below, with the js folder being included in the web project so that it is deployed along with it: JavaScript Project - buildscripts - build - functions - widgets - lib - build.xml - js - digitalcarpenter - system - Command.js - DocumentState.js - State.js - ... - widgets - Canvas.js - Elements.js - ... - dojo - dojo_functions_widgets_minimal.js - dojo.jsUnderneath the dojo folder is the dojo_functions_widgets_minimal.js file which contains all the dojo functions and widgets that our pages need. The digitalcarpenter folder is our base package, and contains all our individual JavaScript files, including widgets and system classes. Under the buildscripts folder is our build file and a build folder to hold temp files. The lib folder holds some tools we will use later. The ant script is pretty basic, here's what it does:
<?xml version="1.0" encoding="ISO-8859-1"?>
<project name="DigitalCarpenter_JavaScript" default="create"
basedir=".">
<description>
Creates the javascript files needed for Doculicious.
</description>
<!-- set global properties for this build -->
<property name="build" location="build" />
<property name="widgets" location="${build}/widgets" />
<property name="functions" location="${build}/functions" />
<property name="lib" location="lib" />
<property name="dojo_src" location="${basedir}/../js/dojo" />
<property name="dc_src" location="${basedir}/../js/digitalcarpenter" />
<property name="dojo_base" value="dojo_base" />
<property name="dojo_minimal" value="dojo_functions_widgets_minimal" />
<property name="base_workshop_dojo_file" value="workshop_dojo" />
<property name="document_workshop_js" value="document_workshop" />
<target name="init">
<!-- Create the build directory structure used to create the JS files -->
<mkdir dir="${build}" />
<mkdir dir="${widgets}" />
<mkdir dir="${functions}" />
</target>
<target name="copy" depends="init">
<copy file="${dojo_src}/${base_workshop_dojo_file}.js" todir="${build}" />
<copy file="${dojo_src}/${dojo_minimal}.js" todir="${build}" />
<copy todir="${functions}">
<fileset dir="${dc_src}/system" />
</copy>
<copy todir="${widgets}" includeEmptyDirs="false">
<fileset dir="${dc_src}/widget">
<exclude name="_package_.js" />
<exclude name="ButtonField.js" />
<exclude name="InlineEditor.js" />
<exclude name="RichEditor.js" />
<exclude name="TestWidget.js" />
<exclude name="Popup.js" />
<exclude name="templates/*" />
<exclude name="templates/buttons/*" />
<exclude name="templates/images/*" />
</fileset>
</copy>
</target>
<target name="remove_dojorequires" depends="copy">
<replaceregexp match='dojo.require' replace="//dojo.require" byline="true">
<fileset dir="${widgets}"/>
</replaceregexp>
<replaceregexp match='dojo.require' replace="//dojo.require" byline="true">
<fileset dir="${functions}"/>
</replaceregexp>
</target>
<target name="document_workshop" depends="remove_dojorequires">
<copy file="${build}/${base_workshop_dojo_file}.js"
tofile="${build}/${document_workshop_js}.js" />
<!-- NOTE: The order of the below files is important -
later code expects the previous code to be available -->
<concat destfile="${build}/${document_workshop_js}.js" append="true">
<filelist id="dw_functions" dir="${functions}">
<file name="Utils.js"/>
<file name="SHA1.js"/>
<file name="Constants.js"/>
<file name="Command.js"/>
<file name="DocState.js"/>
</filelist>
<filelist id="dw_widgets" dir="${widgets}">
<!-- file name="Resizer.js"/ -->
<file name="ImagePicker.js"/>
<file name="FloatingImagePicker.js"/>
<file name="TextField.js"/>
<file name="Element.js"/>
<file name="Canvas.js"/>
<file name="ColorPalette.js"/>
<file name="FontSizePicker.js"/>
<file name="FontPicker.js"/>
<file name="RichTextToolbar.js"/>
<file name="Dialog.js"/>
</filelist>
</concat>
<antcall target="-rhino-compress">
<param name="srcFile" value="${build}/${document_workshop_js}" />
</antcall>
<!-- Copy the completed file to the js/dojo directory -
will overwrite the one already there -->
<copy overwrite="true"
file="${build}/${document_workshop_js}.js"
tofile="${dojo_src}/${document_workshop_js}.js" />
</target>
<target name="-rhino-compress" unless="nostrip">
<copy overwrite="true" file="${srcFile}.js" tofile="${srcFile}.uncompressed.js" />
<java jar="./lib/custom_rhino.jar"
failonerror="true"
fork="true"
logerror="true"
output="${srcFile}.js">
<arg value="-strict" />
<arg value="-opt"/>
<arg value="-1" />
<arg value="-c" />
<arg value="${srcFile}.uncompressed.js" />
</java>
</target>
<target name="create" depends="clean, init, copy, remove_dojorequires, document_workshop"
description="creates the javascript files">
<echo message="All done! :)" />
</target>
<target name="clean" description="clean up">
<!-- Clean up the files used -->
<delete dir="${build}" />
<delete dir="${widgets}" />
<delete dir="${functions}" />
</target>
</project>
Cool, we've now got our Ant file ready to create the individual files. The example above creates only one file. Our production one creates a couple of different files. Because this allows you to pick and choose individual files you can customise the generated JS very specifically. Doculicious has two main "applications". One is the front end web form and the other is the template/style creator. They use similar functions and widgets, but doing it this way I can save about 30kb on the uncompressed files by only including the stuff each page needs. Now when I'm developing on my code I can just comment out the single file call at the top of the HTML page and uncomment the dojo.require lines to use the individual files, allowing us to program on nicely formatted files that have comments and line breaks. When everything's tested and ready for prod we just re-comment the dojo.requires, uncomment the individual line, run ant create and increment the jsVersion variable so that clients get the new version.
<!-- Comment out the following line to test the individual js files
<script type="text/javascript" src="/js/dojo/document_workshop.js?v${jsVersion }"></script>
-->
<script type="text/javascript">
<!-- Uncomment these to test the individual js files-->
dojo.require("digitalcarpenter.widget.Element");
dojo.require("digitalcarpenter.widget.Canvas");
dojo.require("digitalcarpenter.system.DocState");
Now our production code is all nicely together in one file. We still have commented and formatted code to develop on, and running it all through ShrinkSafe has also lowered the file size. Our uncompressed file has gone from 370KB to 262KB, but most importantly we've gone from about 50 individual file calls to 2. The file size still seems large, but with mod_deflate on Apache2 it comes down to 68KB and with aggressive caching, clients should only need to download it when we change it. Blogged with the Flock Browser Tags: AJAX, Web development, web 2.0, JavaScript, Blogging from FlockThursday, December 18. 2008
I installed the Flock browser a little while ago because I wanted 2 different browsers on my machine for testing websites, and also so I could have multiple sessions running. I initially wanted to use Safari, but then found out it there isn't a version that runs under Ubuntu.
I'm glad I made this choice. It's funny actually, because I began using it just to test sites, then I noticed it's social media extras, and thought I'd sign up for twitter. Now I'm writing this blog post using it. And after testing my site and doing some browsing, it actually feels a lot faster than Firefox too. I installed Firebug and yslow, so now am pretty happy to make this my default browser. Blogged with the Flock Browser Tags: flock, technology, browser A fun doculicious exampleWednesday, December 17. 2008
With the launch of Doculicious.com I thought I'd take the opportunity to post a couple of examples of how it looks and works on an external site.
The original launch article has an example of a business/government form, but I also want to show a more graphical and fun one. The following is an Award Certificate that can be used for many types of occasions. The border, flower decoration and title images are all changeable, just click them to choose a different image. This is one of the free awards certificate templates on doculicious.com, so with even just a free account you can copy this and change bits around and put it on your own site or blog. You could create more border and text images to have it work for whatever type of award you like. Your browser does not support frames, so you can't complete this form here. However, you can click here to download a PDF file of this form powered by doculicious Launch of www.doculicious.com!Tuesday, December 16. 2008
I'm happy to finally announce the launch of our new web application, www.doculicious.com. It's been under development for the past couple of months, and is a great enhancement on the underlying technology that we've used to build our previous applications.
Doculicious is similar to our previous sites in that it allows people to create documents in their browser, the difference is that we've opened it up so that anyone can create templates and embed them on their own websites. Because of it's support of PDF, Doculicious is perfectly placed to offer solutions similar to what a PDF file solves, and together with it's web based delivery, it can act like a web form too. We've chosen to focus on this idea of merging a web form and a PDF file, and allow the editing of a document directly in the browser using easy and simple fields, just like a web form. It's an alternative to offering a PDF download that offers many other benefits. A Doculicious template provides a downloadable PDF, but only after the user has filled in the fields - so the PDF is complete and ready to print, fax, mail or whatever else may be required. After the form is filled out we store the details that were entered and make it accessible to the form owner. This means it can be processed straight away, the data will have less mistakes, there's no retyping or handwriting to read and it's exportable as CSV or as the original PDF. The form owner can go in and edit or add details themselves. There's also integrated notifications, redirection after submissions, editable confirmation pages and you can make unique styles for each template, allowing you to make them match any design. Templates can also be made with a tracking code so when the PDF is printed and sent back, it's easy to match up with the data in the system. We're really happy with the current system, but we have many features we want to add, and plan on working with our existing and new clients to keep making Doculicious better. Doculicious has a free account that gives almost all the functionality listed above (styles and redirection are the only premium features), so if you have a need for a PDF application form, or a form where you'd like the data in PDF format, or even just a standard web form, give it a try or at least check out the example page and see just a few ways it can be used www.doculicious.com Make sure you keep reading to see the example template ... Continue reading "Launch of www.doculicious.com!" Australian Business Forms website decommissionedWednesday, December 10. 2008
Now that we have launched the Doculicious.com website, we have decommissioned www.AustralianBusinessForms.com. Doculicious allows people to create their own templates which can be embedded on their website as a web form. When the web form is completed, Doculicious provides the user with a PDF document compiled of whatever they entered. We have put the ASIC forms from the ABF site into Doculicious for existing subscribers, and have stopped actively promoting the site as we focus on Doculicious and the wider market this new application serves.
A range of ASIC forms within Doculicious.com are available for new subscribers on request, either to embed on their own websites, or for use solely within the Doculicious.com website. If you would like to enquire about how you could put ASIC forms on your own website, please contact me with your requirements. Doculicious.com Launch ImminentTuesday, December 9. 2008
We plan on launching our new site, doculicious.com, in the next few days. With this launch we will be decommissioning the AustralianBusinessForms.com website, as all the ASIC forms will now be within Doculicious. This is really exciting, and adds a whole new range of features for users, as they can now use front-end web forms to have their clients complete some parts of their forms, while still being able to complete the rest of the form themselves.
Currently we are clearing out the doculicious test database and forum so it's all shiny and new on launch. Also, after the last Open Coffee meet-up in Sydney I had someone mention a feature that I had planned on implementing, but had put off. On the train ride back I couldn't stop thinking about how I could do it. Luckily, the widgely website had a similar functionality developed, but was not moved into production. When I got back to the office and looked at the code I realised it would do everything required, and more. So my launch plans were put off a little as I put this new change in and had it tested. I was actually happy to do this, as for a while I'd had concerns about launching without this feature .. so hearing that it was something people would want gave me the impetuous to get it in. Proposed Internet Filter in AustraliaMonday, October 27. 2008
There's been a little bit of talk in the media lately about the Australian Governments proposed internet filter and the heavy-handed tactics they have used against some ISP employees bagging it. Unfortunately, there's not been enough talk in the media about how bad the filter really is. People need to understand how this solution can't work, and how it could eventually erode our rights.
I'll be writing about this more in the future, but initially wanted to post a link to the NoCleanFeed.com website and offer my support. ![]() Map a network drive from Windows to LinuxFriday, October 17. 2008
I use rdesktop to connect to my Windows machine for doing Photoshop work. I use the Gimp for some stuff, but I'm much more comfortable in Photoshop so use it for more complex work.
The default network connection I was getting through rdesktop kept failing, so I wanted to set up a Samba network to access my Ubuntu laptop, as that's where all my files are kept. A quick search on google gave me some tips, but not as much as I'd wanted, so i thought I would document it here in case it can help someone else: Hardware: Laptop - Ubuntu 7.10 Gutsy Gibbon Desktop - Windows XP Professional sp2
Startups and Small Business 2.0Friday, August 22. 2008
Lately I've been reading about marketing and how to create a marketing plan. One of the things I've seen repeatedly stressed is to define the benefits that your solution has for your customers. Why should they use your application or service over somebody else's? I started to think about the benefits that the Australian Business Forms application gives it's users, such as the convenience and ease of use, the ability to save your progress and no handwriting of forms. However, there are other benefits that the customer can enjoy, ones that are not just a result of the specific problem the application is solving, but benefits inherited from the application provider, the startup: being agile, quick to market, and the ability to utilise the latest technologies, such as web2.0, which enables software as a service.
Many startup enablers and commentators, such as Paul Graham and 37Signals, often mention the ability of a startup to move faster than the big companies. Large companies are usually the slowest in adopting new technologies - A survey in December 2007 found that 55.2% of companies still use IE 6. This alone would make it hard for their employees to effectively use some new web 2.0 applications. Not only that: how often do these companies upgrade the software that they sell to you, their consumers? Once every 12-18 months or more. Then you have to upgrade your systems and processes, which brings with it a range of other headaches, such as ensuring the compatibility of the new version, the IT costs involved in new hardware, testing, support etc. Whereas during this time, a fast moving startup could be constantly adding new features and content to their web based product, and these things will just flow through to you - and they may not even raise their prices. With people now talking about Enterprise 2.0 and how large companies are looking into ways that the new technologies such as cloud computing and social networking can help them, it's time for small businesses to use their size to get ahead and utilize the technologies that are out there now. Small businesses that don't have the IT budget to build applications themselves or utilize cloud computing, should be leveraging the agility and technological savvy of the web 2.0 startups that are out there, and thus gain these benefits by proxy. Not only do they get their problem solved, but they also get to move ahead in ways which their larger competitors may not take advantage of for years to come. Researching for a Media ReleaseFriday, August 8. 2008
I've been thinking lately about how to get the word out about newly developed web applications and had a chat with a few people at the Sydney Open Coffee yesterday about this. An interesting talk with Paul from WebEquity.com and a conversation on Silicon Beach Australia got me researching media contacts and how to write media releases.
I found a paid service called www.ozmedia.com that will send your release to multiple media outlets throughout Australia. I used a demo they had on the site, and it looks pretty cool, but as I'm bootstrapping this, I have to save as much cash as possible ... so will start by doing it all myself. A few Google searches later I found a list of newspaper, TV and radio contacts that can be downloaded as a spreadsheet. So I've now got the beginnings of my media contact list. As stated on that site, there are thousands of other magazines, niche publications, trade mags etc that can be found, but this is a good start. A Squidoo lens for free web press releases created by Bart Jellema from tjoos.com looks to also be a great research time saver for getting some SEO for your startup. As for writing the release, there are standards you should stick to. A search on Google about writing media releases finds a bunch of help sites. The main points seem to be: - Have a catchy title. - Make the subject line and first paragraph engaging. - Try not to go over 1 page. - Include contact details that your are contactable on (Obvious it seems, but many help pages I read stressed it) - Put "press release" prominently on it. - Put the date it can be released. "For Immediate Release" if you want it to go out straight away - Use quotable quotes that the journo's can use. Busy, busy, busyWednesday, July 9. 2008
I've been busy hacking away at the code behind Widgely, trying to make it into a more modular form so that I can re-use it across some other website ideas I have. This month will be very busy while I get this new idea launched, and make sure that the code is reusable.
I can see great potential for the template/document creation code behind Widgely, and I've got heaps of ideas for how to make some cool sites using it. But I need to focus on some ideas that have the potential for me to make some money from them. I love doing this, but in the end, I have to pay the bills. Widgely is a great website (If I do say so myself :), and so far the users I have seem to like it. Many keep coming back, and I can see through the Google Analytics that they spend a good amount of time on the site, creating documents. But a site like this is hard to monetize untill we have large amounts of users, who will only come when there is content, which only comes when there is a large amount of users, which .... you get the picture. So I plan on using the code behind widgely to create some more sites with a greater business flavour. One's that solve some problems for people who are willing and capable of paying. The first will be launched in a couple of weeks, and then I'll be working on another that is really getting me excited Welcome to the new blogThursday, May 15. 2008
I've finally replaced the old brochure style website with a blog. The old site was so 2003 ;p
As I have many new projects launching soon, I thought a blog would be a better way to show what we do here at Digital Carpenter. I'll be trying to move some of the articles we had on the old site over to here, but that is a much lower priority that the current things I'm working on, so the site will most likely look a little blank for a while.
(Page 1 of 1, totaling 15 entries)
Competition entry by David Cummins powered by Serendipity v1.0 |
QuicksearchWebsites
Doculicious
Create online PDF files with embeddable web forms. Recent EntriesDoculicious API launched
Thursday, June 4 2009 Doculicious.com Launch FAQ Monday, January 12 2009 Decreasing AJAX web app loading times Wednesday, December 24 2008 Blogging from Flock Thursday, December 18 2008 A fun doculicious example Wednesday, December 17 2008 Launch of www.doculicious.com! Tuesday, December 16 2008 Australian Business Forms website decommissioned Wednesday, December 10 2008 Doculicious.com Launch Imminent Tuesday, December 9 2008 Proposed Internet Filter in Australia Monday, October 27 2008 Map a network drive from Windows to Linux Friday, October 17 2008 CategoriesSyndicate This Blog |