Posts for the 'Software' Category

  1. 2008 Applications of the year

    So here are my most used OS X applications of the year, in no particular order:

    * Spotify. This is just an excellent music application, the speed with which the streams start is simply amazing and I don’t find that I get that many adverts in the way of the vast array of songs on offer.

    * Textmate. I probably use this more than any other application on the Mac, for me hands down the best text editor that I have ever used and I find more and more features in it everyday.

    * NetNewsWire Pro. Having all my RSS feeds in one place is really just what I need. Must remember to integrate it with FriendFeed.

    * Adium. Always there, some times a pain with XMMP but otherwise just awesome.

    * Python 2.5. Best scripting language by far, but then I am biased.

    All free (I did buy a license for NetNewsWire but you no longer have to) apart from TextMate which is more than worth the price.

    By timc3 on the
    January 9th, 2009
  2. This is awesome – Papervision

    This is really really awesome, and you have to really check it out for your self.

    MeWithAPet.jpg

    Its a little flash application that uses a webcam or other camera attached to your computer to project a little ‘Proto’ guy on top of a printed piece of paper. They have even got some code released for it.

    Check it out here with some images and video, but it really works better to try it yourselves:

    http://www.boffswana.com/news/

    By timc3 on the
    December 16th, 2008
  3. Creating workflow diagrams

    I haven’t seen any good examples recently of workflow diagrams, at least not more technical ones based around software, services and workflow.

    Creating a diagram like this its always nice to see other examples of how people have approached the problem but in this scenario I have yet to see anything. Even Edward Tufte came short on this, though the diagrams and illustrations he provides examples for are excellent.

    So this is what I came up with to illustrate a workflow with our software in a newsroom environment.

    By timc3 on the
    August 4th, 2008
  4. My top ten OS X applications

    Its been a year with this Mac Book Pro that I am using so I thought that I would round up with my top ten Mac software – the software that I would install first of all after a crash.

    1. Quicksilver. This is a must have on the Mac. I find out something new about it every week if not everyday and it makes using OS X even easier and more streamlined. For instance, finding a contact and then sending an SMS through skype can be achieved in a few keystrokes, far faster than clicking around in the GUI.

    2. NetNewsWire Pro. Now free to download, I had a paid version of this and its the best way to read newsfeeds that I have come across. It syncs with a web version so I can still access the my newsfeeds when I am away, and there are clients for other platforms including Windows Mobile.

    3. Knox. I use this to keep all my important documents and things that I don’t want to go missing. It backups to my USB thumbdrive everyday, and its easy to backup online.

    4. SSHFS and MacFuse. Easy easy way to mount external SSH shares onto the desktop.

    5. Address book, Apple Mail and iPhoto. At first I stayed away from the integrated applications, but they are REALLY integrated, and work so well together the extra functionality that you get from using them together is well worth the switch.

    6. Adium. The best chat client that I have found for instant messaging on OS X. It doesn’t have all the features that individual applications might have (voice and webcam for one). But sometimes you just don’t need that, and really skype running along side is better for this. If it had all the features of skype it would be really the true all rounder.

    7. Unison. I use Usenet alot. Its a great news client. Perhaps the best on any platform at the moment.

    8. Textmate. Perhaps the best editor on OS X – I tried many until I paid up and bought Textmate. Its strong bundles and integration with svn plus the nice support for Django wins for me.

    9. MarsEdit. Great blog posting tool.

    10. Versions. This is quite new but it makes working with SVN just a little easier.

    By timc3 on the
    July 21st, 2008
  5. django one form, two models

    This post is a work in progress is now working I am glad to say. I have been working on a django site which needs two models updated for one post. It is actually using models very close to that on django-forums and I have created a forms.py file:

    class ThreadForm(forms.ModelForm):
        class Meta:
            model = Thread
            exclude = ('forum', 'sticky', 'closed', 'posts', 'views', 'latest_post_time')
         
        def clean_title(self):
            title = self.cleaned_data['title']
            if not alnum_re.search(title):
                raise forms.ValidationError(ugettext("Titles can only contain letters, numbers and underscores"))

            if len(title) < 1:
                raise forms.ValidationError(ugettext("Please enter a title"))
            return title

           
    class PostForm(forms.ModelForm):
        class Meta:
            model = Post
            exclude = ('thread', 'author', 'time', 'related_item')
           
        def clean_body(self):
            body = self.cleaned_data['body']
            if len(body) < 1:
                raise forms.ValidationError(ugettext("Please enter some body text"))
            return body

    And then in my views (after importing in the correct models):

    @login_required
    def groupnewthread(request, slug):
        thegroup = get_object_or_404(GroupsOfUser, slug=slug)
        if request.method == 'POST':
            f = request.POST.copy()
            tdata = {
                'title': f['title'],
            }
            pdata = {
                'body': f['body'],
            }
            t = ThreadForm(tdata)
            p = PostForm(pdata)
            if t.is_valid():
                newthread = t.save(commit=False)
                newthread.forum = thegroup
               
               
                if p.is_valid():
                    newthread.save()
                    newpost = p.save(commit=False)
                    newpost.thread = newthread
                    newpost.author = request.user
                    newpost.save()
             
                    strmessage = 'has created a thread <a href="%s">%s</a>' % (newthread.get_absolute_url(), newthread.title)
                    usm = UserStatus(user = newpost.author, message = strmessage)
                    usm.save()
             
                    return HttpResponseRedirect(reverse('groupdetail', args=[thegroup.slug]))
           
        else:

            t = ThreadForm()
            p = PostForm()
           
        objContext = RequestContext(request, {'threadform': t, 'postform': p})
        return render_to_response('groups/group_thread_add.html', objContext)

    Now the bit that is in progress is the returning part of dealing with the form data being bound, but I am going to write a custom handler. This is obviously going to be much easier to handle than an update, which I will have to deal with at a point.

    The form HTML looks like this btw:

    {% extends "base.html" %}
    {% load i18n %}
    {% block title %}
        {% trans 'Add a new group thread' %}
    {% endblock %}
    {% block body %}
        <h1>{% trans 'Create a new group thread' %}</h1>
    <div class="column span-14">
        {% if t.errors %}
        <h3>{% blocktrans count t.errors|length as count %}Please correct the following error:{% plural %}Please correct the following errors:{% endblocktrans %}</h3>
        {% endif %}
        {% if p.errors %}
        <h3>{% blocktrans count p.errors|length as count %}Please correct the following error:{% plural %}Please correct the following errors:{% endblocktrans %}</h3>
        {% endif %}
        <table>
        <form method="post" action=".">
            {{ threadform.as_table }}
            {{ postform.as_table }}
        <tr><td></td><td><input type="submit" value="{% trans "Update" %}"/></td></tr>
        </form>
        </table>
    </div>
    {% endblock %}
    By timc3 on the
    June 21st, 2008
  6. Looks like Django is really taking off

    Since the introduction of Google’s appengine which includes support for some of Django’s code, and the template system there has been an incredible amount of press for Django.

    At the moment there is no backend support for AppEngine in Django (and DB2 support is still lacking – there was a blog post about a year ago but nothing seems to have happened since, and I would love to be proved wrong on that one) but it must only be a matter of time before this happens so for the moment you have to disable the ORM support. Pity, but I can see why.

    But I am glad that Django is getting the attention that it deserves, I have long know that Python is well used in Google (and Yahoo for that matter), and now we should see even more people using Django which can only be a good thing for the ever-growing community.

    Here is an excellent write-up on Google App Engine http://www.dougma.com/archives/81

    By timc3 on the
    April 18th, 2008
  7. Microsofts WorldWide Telescope

    This looks really awesome, Microsoft research have combined the feeds from satellites and telescopes all over to create a window into the universe. The Ted video will show more:

    There is more information on their website http://wwtelescope.com/ and release should be in spring time sometime.

    By timc3 on the
    February 28th, 2008
  8. MacHeist

    Today I purchased the MacHeist bundle of OS X software. This will be available for the next 5 days and includes quite a few applications and gives a major saving on buying them alone for the amazingly cheap price of $49. On top of this it also gives money to charity. The included applications are:

    MacHeist.jpg
    • 1password – a password manager. I currently use KeepassX because its cross platform
    • CoverSutra – a iTunes player
    • Cha-Ching – A personal money organiser. One of the reasons that I bought this
    • iStopMotion – For create stop animations using still and video cameras
    • Awaken – A alarm clock for Mac
    • Speed download – Looks like a very nice download manager
    • Appzapper – for cleanly removing applications. Recommended
    • TaskPaper – Simple GTD organiser
    • CSSEdit – As it say a simple CSS Editor
    • Snapz Pro X – for screencaptures and screencasts. I really wanted this
    • Pixelmator – Image editor
    • Wingnuts 2 – A game.

    Of course a lot of users will not need all these applications, or it would be unusual, but even on one application you can make a saving and give money to Charity.

    By timc3 on the
    January 18th, 2008
  9. Sun aquires MySQL

    News just in, Sun acquires MySQL. MySQL makes one of the most popular opensource database in the world and they have just acquired it for $1billion.

    More about it here: http://www.sun.com/aboutsun/pr/2008-01/sunflash.20080116.1.xml

    By timc3 on the
    January 17th, 2008
  10. NetNewsWire now free

    One of my favourite applications and one of my most used applications on the Mac is NetNewsWire from Newsgator and it has been since I started using it. I have found it to be the best way to deal with Newsfeeds for me, the integration of browser, the ease of use and probably the way it syncs with its online counterpart has kept me away from other solutions.

    MarsEdit.png

    My first thoughts when I found out that it was now free was “I paid for that!” but it only took me a couple of seconds to realise that I had already got my moneys worth and if others can now take advantage of this then all the better for everyone. After all I got it when it was bundled with Marsedit, another program that sees a lot of usage. MarsEdit has been aquired by Red Sweater software now

    NetNewsWire.png

    NetNewsWire has now been updated to version 3, and I was also really happy to see that the Windows Mobile version of Newsgator, Newsgator Go is now also a free download. I had tried the trial of this on my windows mobile and was very impressed but hadn’t got around to purchasing it. Now its another free download and perhaps one of the most useful on the Windows Mobile platform.

    Well done to Newsgator for this.

    By timc3 on the
    January 16th, 2008