My Steve Jobs Photo collection

This post is dedicated to one of my favorite people Steve Jobs who is stepping down from Apple CEO to Chairman today.

I love Steve Jobs... (but I love Google more though).. You've gotta love such people who can change the lifestyle of all other people (thanks especially to his iPhone.) Years back, I read his story on Digit Magazine's FastTrack on Apple. I was really impressed with him and Apple. I was a Microsoft fanboy until then. After learning they copied all stuffs from Apple, I changed.

Another best thing of him is his presentation skills which is top notch.

You've gotta see these two videos and see if you can do a solo presentation like that. He's full of passion.

Even after two major surgeries, he's still in bad shape now. Praying for his good health.

I have some of his good photos I'd like to share. See this gallery.

Posted via email from Art, Science & Technology

CheckyButton! A combination of JCheckBox and JButton

I liked the checkbox+pulldown menu combination in Gmail. I have been dreaming of creating fascinating new type of controls including this one even before it came out. Last night I have been thinking about how to add a requested feature in Neembuu Uploader that clears the list of rows of completed downloads whenever the user wishes or always automatically. I got this idea for such control that combines both the actions of a button and checkbox in a single control.

Something like this:
Checky2

And creating it in Swing is very simple. Just extend the JButton and add a JCheckBox into it. As simple as that!

 

 

Create a CheckyButton class like this:

Checkybutton
Then in your frame or other class, import this class and construct it like a normal JButton(String text).

//Add our Checky Button

        final CheckyButton cb = new CheckyButton("Clear Completed");

        cb.setSize(100,20);

Then add the action listeners for both Button part and Checkbox part of our CheckyButton

//Add an Action Listener for "Button" part of CheckyButton

        cb.addActionListener(new ActionListener() {

            @Override

            public void actionPerformed(ActionEvent e) {

                JOptionPane.showMessageDialog(null, "JButton Clicked :)");

            }

        });

 

        //Add an Action Listener for "Checkbox" part of CheckyButton

        cb.getCheckBox().addActionListener(new ActionListener() {

            @Override

            public void actionPerformed(ActionEvent e) {

                if(cb.getCheckBox().isSelected())

                    JOptionPane.showMessageDialog(null, "Checkbox selected");

                else

                    JOptionPane.showMessageDialog(null, "Checkbox not selected");

            }

        });

And finally add this CheckyButton to your frame or any other container using their add(Component comp) method.

Done!

This is a test screenshot of one of the possible ways Neembuu Uploader might look like in next version:

Neembuuuploader2

 

Posted via email from Art, Science & Technology

Film Info and Reviews for Opera

As you may know, I've made and blogged about this same extension previously for Chrome and then for Firefox. Now I have made it available for Opera geeks too. (P.S. Having some technical problems with Safari Developer Certificate installation. Otherwise I could have made this extension for Safari too completing a collection. Sigh!)

I have released the version 1.0 some 10 days ago. It was an exact replica of the chrome extension. And then the best thing happened. Some user named Basilla from Russia requested for a feature in extension that enables users to add their own favorite movie sites as 11th option.

I hadn't think about that. I narrow-mindedly thought that these 10 sites will be enough. But that user being Russian wanted to have "Kinopoisk.ru" site in the extension. So I have added that feature (for both Chrome and Opera) and released v2.0 on August 8. Now it has around 181 users.

Short Desc: View complete info and reviews of a film from upto 10 sites of your choice such as Wikipedia, IMDB, RottenTomatoes, Roger Ebert etc

Screenshot:

Scr1
Scr5

 

Get it from here: https://addons.opera.com/addons/extensions/details/film-info-and-reviews/2.0/

Posted via email from Art, Science & Technology