Showing posts with label twitter. Show all posts
Showing posts with label twitter. Show all posts

Friday, May 21, 2010

iDenTickle updated, again!

I did it again.
I added more stuff to iDenTickle, again.


This time, I added the option of updating your gNewBook microblog.

I also added a handy little "clear" button.

Also, the setup and about "windows" are now just frames that appear in the main interface, rather than distinct windows.





posted with Xpostulate

iDenTickle version 1.1

Well...I just couldn't leave well enough alone.
Yesterday I released version 1.0 of IdenTickle, my tcl/tk denter/tweeter tool...but I just kept thinking, it could be better.
The interface could be cleaner, with the setup stuff separate.
And, perhaps an about button, as is common, to bring up a little dialog with a bit of info, and direct the user to the homepage.
Plus buttons to open your browser to your identi.ca or twitter feed...stuff like that.

So, today you have IdenTickle version 1.1.


The main interface.


and, when you open the setup tab/frame to enter your setup information.
As you'll recall, v 1.0 was already saving your login data (previous version required entry of said data, every time...annoying).

enjoy
./tony

Thursday, May 20, 2010

Iden.Tcl v 1.0 released

Moments ago, I released a new version of IdenTickle, the tcl/tk identi.ca and twitter status update tool..



Now it saves your login information, so you don't have to enter it every time.
Additionally, I built installers for Windows and Linux.
(Mac and BSD folks, etc., will still have to install from source...sorry).

Monday, April 12, 2010

Xpostulate v0.2

Xpostulate v0.2 - x-posting blog client in tcl/tk
I've made a ton of improvements and added various features to Xpostulate since posting here in reference thereto.

I've programmed in xml-rpc posting, and added Wordpress, Inksome, and Scribbld, so it now posts to LiveJournal, InsaneJournal, Dreamwidth, DeadJournal, Iziblog, and the above mentioned 3.

I've also customized the script running on my own machine, to post to my custom wordpress installation on baldwinsoftware.com/blog, which means I'll be able to write than in for users rather easily (not posting to MY blog, but to their own wordpress installations, of course).

I've also fixed the identi.ca denting and twitter tweeting to use Tcl's own HTTP library, rather than calling cURL. This facilitates installation and use on Windows, mostly, but also, it's good that now Xpostulate is completely, 100% tcl/tk, without calling outside resources to perform any of its functions.

Today I built install wizards for both Linux and Windows. This was probably hardly necessary for most Linux users, since the installer hardly does much different from the install.sh script (well, except the install.sh installs to /usr/local/bin, and, thus, must be run as root, while the installer can be run as users, installing to the user's /home). The Windows installer, however, will significantly simplify installation for Windows users.

Now, I still have to figure out the google api for posting to blogger, so I can post to this blogspto/blogger blog.
I'm also considering adding a feature for updating facebook status, as well...maybe sometime later this week.
I'm rather impressed with myself, I must say, being an old, creEpy guy with no computer classes or formal technology training. For me, Xpostulate is immensely useful, and, when I think that I programmed it, and that others are using it, too, well, I feel pretty smug and content with myself.
Sometimes I'm so awesome, I can't stand myself...
:P

Saturday, March 27, 2010

dent, tweet, xpost - all in one


Tweeting and Denting are now incorporated within the eXpostulate interface, so you can really annoy all your online friends, by x-xposting to 4 distinct blogging services, & denting and tweeting to announce your new articles!

At this moment, the denting/tweeting is still using curl, however, which is only native to * nix systems (should work on lin/bsd/mac without further configuration, but win users will have to install curl, which can be done, of course).

I will be attempting to work out tweeting/denting with tcl's own http post method. I've tried a few times, but unsuccessfully, so far. Need to log on to #tcl at freenode and get some help, or something.



posted with eXpostulate

Monday, March 22, 2010

Python v. Tcl/Tk: denting & tweeting


So. I have now made two little denter/tweeter programs (to send updates to twitter.com and identi.ca), one with Tcl/Tk, the other with Python. I figured a little comparison, perhaps, was in order.
If you look at them, of course, they look, well, just about the same. Tkinter is, after all, analogous to Tk.

The Tcl/Tk program made it incredibly simple to display the response from the remote server, which I haven't succeeded in doing with the python script, yet. Both rely on calling an external program (curl) to send updates, rather than relying on the languages' built-in tools. I could probably work out HTTP POST in tcl rather painlessly. I did try to use python's urllib to post, unfruitfully, and resorted back to calling curl.


the code for both programs is available at the above wiki links

The Tcl/Tk program, which has the added feature of displaying the server response, has only 47 lines of code, 245 words, 1844 characters. It took me less than an hour to write it.
The Python program, however, which does precisely the same exact thing as the tcl/tk program, without displaying the server response, has 104 lines of code, 564 words, and 4073 characters. It took me the better part of a day to write it.

One must ask oneself, of course, is this a testament to the power and simplicity of tcl/tk? Or, is it simply an indication of my lack of skill with python?

I can't answer that defnitively, but, to me, it really looks like tcl/tk is a bit more efficient. Admittedly, I'm not a very skilled programmer at all, in truth. Timewise, of course, I have been writing tcl/tk for a couple of years, and only just now delving into python. As such, I was able to throw the tcl/tk program together quickly, while, my efforts to "translate" my tcl/tk program into python required a bit of research on the syntax for writing tkinter guis, and other elements. It just really looks to me as though Python/Tkinter takes a lot more code to do the same thing. I really have drawn that conclusion. Especially building a gui, it seems, is more cumbersome with tkinter than with simple, good old tcl/tk. I know there are other means of building a gui with python (wxwidgets, pygtk, pyqt, etc.), but I wanted to try the one most similar to that with which I am already familiar, and, I believe it is a fairer comparison when using a similar gui ToolKit.

At this juncture, I do have to say, I feel a great loyalty and deep affinity for tcl/tk. I don't understand why it isn't in wider use, frankly. It is an incredibly powerful language, used for a vast array of purposes, and, in my opinion, is probably the easiest programming language to learn (of course, I haven't tried them all), especially for a beginning programmer. One can be up and running, creating useful programs in a relatively short time. I also feel the need to give kudoz to the tcl/tk community and the tcl.tk wiki, which is replete tons of example code, detailed explanations, and great resources for learning how to program in tcl/tk. The tcl-ers that hang out at #tcl on irc.freenode.net, additinoally, are extremely helpful, and patient. They won't hold your hand, but they'll tolerate a newbie, and point them in the right direction, without any snobbishness or derision.

I can't say the same for my experiences with pythonistas. Their irc channel was a little less friendly, imho. Maybe I just caught them on a bad day, or maybe I was having a bad day. After all, Pythonistas are known for having a sense of humor. Admittedly, I was frustrated when I finally went to their channel for a bit of support, and frustrated, whiny n00b is no fun to play with, any way. Moreover, the python community does have a lot of documentation available online. Nonetheless, to me, it seems that it is written for other programmers, not for the uninitiated, so, is not so easily read as much of the tcl/tk resources. Their sample code is not well explained, where someone new to programming can really make sense of it. This may also be a function of time, since tcl/tk has been around a bit longer than python.

I do want to make it very clear: I'm really not here to pick on python. I know that it's a powerful language with a great many uses, and a favorite of a great many real hackers who know a lot more about programming than I do. I will continue to learn to write it, and believe it will serve me quite well for various purposes, and I believe I will continue to have fun learning it. But, I think I might continue to point out how tcl/tk is much easier and seemingly efficient, too...