Archive for the ‘Business Software’ Category

I had reason to call the people at TomTom today to ask why they didn’t have the facility for businesses to add their details to the TomTom POI database. I can navigate to a POI on route with my tomtom 910 and it has all macdonalds restaurants already included out of the box so it seemed reasonable to assume that there was a mechanism in place for people to submit their business details to TomTom so it would be included in everyone’s TomTom software (when it gets updated).

The guy at TomTom said it was a good idea and will pass it on to the marketing department. I know that there are 3rd party POI lists out there but you need to actually download and install them yourself but I think that it would a good (and maybe profitable) thing for TomTom to have a constantly updating business POI list for restaurants, hotels and bars etc that are included in all new products and updates.

related: tomtom POI for speedcameras

Popularity: 3% [?]

[Slashdot] [Digg] [Reddit] [del.icio.us] [Facebook] [Technorati] [Google] [StumbleUpon]

If you’re ever in need of a quick and professional 3d object design, you should definitely check out Milan Antovics’ portfolio.
This guy made me a logo to my exact specifications within hours of me asking, all the way through the process he sent me updates (usually within a couple of minutes of providing details) and was able to send me every kind of format of picture that I could want.

Here’s the final design.

Pitweb Logo

Awesome! You can see more examples of Milans 3d work at his 3D Portfolio Site and in most cases, you should be able to get a completed project done for less than 100 USD! how’s that for value?!

I got in contact with Milan initially through GetaFreelancer.

I have used GAF before and I have found it to be very easy to post a project, within minutes of being posted there were quite a few responses and bids from prospective freelancers. You have your own private message board so you can stay in touch with each freelancer.

When you have someone you want to do the work, you put the fee into escrow ready to release when the project is finished.

Easy peasy freelancing!

Popularity: 7% [?]

[Slashdot] [Digg] [Reddit] [del.icio.us] [Facebook] [Technorati] [Google] [StumbleUpon]

Shopping cartHere’s a great way to add a shopping cart to your Wordpress blog so you can sell products directly from your site without the user having to go to an external site. If you offer products for sale on your blog, it’s much nicer for your customers to stay on the same site that they see the products on.

This plugin is simple and powerful, it uses AJAX for some parts of it and it seems to work just dandily on the blog I have installed it on. Here’s how you do it…

[expert instructions]
Download plugin, upload to plugins directory, activate it.
Visit the ecommerce tab and set options for country and currency, edit categories, edit checkout options, edit gateway options, add products.
sell!
[/ expert instructions]

[Hand hold instructions]
First, get yourself a copy of the WP Shopping Cart plugin and upload it to your plugins directory, go to you plugins page and activate it :

wp shopping cart plugin activate
(more…)

Popularity: 8% [?]

Here's a handy little formula to add up a column or row of figures and only show the result if it's a non-zero.

HTML:
  1. =IF(SUM(D4:E4)>=1,SUM(D4:E4),"")

I find it hard to pick out positive numbers in a whole list of values if there are a lot of zero numbers. Look at the two following examples..

excel grab 1

if there are a whole lot of numbers in use like when you're looking at a stock list that goes on for pages and you're looking for what is left amongst a lot of zero quantity items, it's really easy to miss the numbers. But, by using the IF function of Excel you can test the normal formula and only output a result for whatever value you want. ie.

HTML:
  1. =IF(logical test,if true,if not true)

the example below uses this

  • logical test : = SUM(D4:E4)>=1
    the sum of the numbers between D4 and E4 is greater than equal to 1
  • if true: sum(D4:E4)
    if the logical test is true then output the sum of D4 to E4
  • if not true: ""
    output nothing, you could use whatever you want for the "if true" and "if not true". Text would go in quotes and formulas go without.

    Here's what it looks like:
    excel grab 2

    Loads better!






    Popularity: 5% [?]

    [Slashdot] [Digg] [Reddit] [del.icio.us] [Facebook] [Technorati] [Google] [StumbleUpon]

Excel Simple BarHere's a cool little thing to represent values as a simple bar graph without having to go to the trouble of using Excel's graph function, it really helps to give you a good quick reference on the values.
It's simply a case of using the formula command "=REPT("|",F4)".

=REPT is the command, the next option is what to display and next is the cell that you wish to represent. All REPT does is REPEAT a given character as many times as the value of the cell specified.

Very useful!

Popularity: 2% [?]

[Slashdot] [Digg] [Reddit] [del.icio.us] [Facebook] [Technorati] [Google] [StumbleUpon]