windows
10 of my favorite softwares
I like to explore softwares. I usually install a lot of softwares on my system. I thought that I should make a list of my favorite softwares and share it with everybody. All of there softwares are either open-source or free.
1. Autohotkey(FOSS): It manages your hotkeys globally and allows you to create complex actions based on the keys pressed. Its actually got its own scripting language which is rather easy to learn. Just write a script in a file with extension .ahk and double click the file to execute it.
With AutoHotKey you can:
- manage processes, windows and control both keyboard and mouse.
- create macros saving you precious keystrokes.
- re-map keys and buttons on your keyboard and mouse.
I have been using AutoHotKey for quite a while now and I use it to manage my code snippets, have consistent hotkeys across applications and creating macros like googling the selected text in any application. The following is the AutoHotKey script for it:
1: #g::
2: Send ^c
3: Run http://www.google.co.in/search?hl=en&q=%clipboard%
4: return
So by using this script whenever I press Ctrl+G the script will open a browser and search the selected text in google. Nice isn’t it?
Creating a User Interface in Ruby using WPF
Let me first explain what is WPF?
WPF is the graphical subsystem if the .NET 3.0 framework and it is there to take the place of window forms which we used with earlier versions of .NET
So what’s so great about WPF?
Actually WPF is has its roots in DirectX API so you can easily create 2D and 3D interfaces in it without putting ant load on the processor. Also it is vector based and stores the information for the generating the UI in separate XAML files. So we have logical separation of a control from its appearance.
Further details: http://en.wikipedia.org/wiki/Windows_Presentation_Foundation
The following are the requirements for running this example:
- rubyclr gem. Use gem install rubyclr -y
- .NET framework 3.0
In this example I will creating a creating a textarea along with a button, trapping the events on the button and logging it inside the textarea .
Here is the code for the xaml file. Store this file with filename ui.xaml. This file contains the UI for the application.
1: <Window
2: xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3: xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
4: <Grid x:Name="LayoutRoot">
5: <Button Margin="8,0,8,5.723" VerticalAlignment="Bottom" Content="Button" Name="the_button"/>
6: <TextBox Margin="8,8,8,38" Name="the_text_box"/>
7: </Grid>
8: </Window>
Next I will be creating the codebehind file in ruby. Here in this file we have all the application logic. Save this file as logic.rb.
1: # load the libraries
2: require 'rubygems'
3: require 'wpf'
4: # load the xaml file
5: window = XamlReader.Load(System::IO::File.open_read('ui.xaml'))
6:
7: # get the controls
8: button = window.find_name('the_button')
9: txt_box = window.find_name('the_text_box')
10: # trap the mouse enter event
11: button.mouse_enter do |sender, args|
12: txt_box.text += "MOUSE ENTERED\n"
13: end
14: # trap the mouse leave event
15: button.mouse_leave do |sender, args|
16: txt_box.text += "MOUSE LEFT\n"
17: end
18: # trap the mouse click event
19: button.click do |sender, args|
20: txt_box.text += "MOUSE CLICKED\n"
21: end
22: # run the application (most important)
23: Application.new.run(window)
The code given above explains itself.
We are first loading the ui.xaml file and then finding the two controls in the lines 8, 9.
Then the three event handlers are declared in lines 11, 14, 19. So whenever the mouse events are fired the corresponding event if traced into the textbox.
And here is the output.
Automating Powerpoint with ruby
We know that ruby is a language of few words. We can express a lot of things in a relatively easy manner.
I was trying to export few slides in my powerpoint presentation to an image format using ruby.I could not find any documentation for it anywhere except for a few basic things. But when I tried it by hit and trial I found out it to be surprisingly easy. It required just a few lines.
Here is what you have to do:
1: require ‘win32ole’
2: # open powerpoint
3: ppt = WIN32OLE.new(‘Powerpoint.Application’)
4: # make sure it is visible
5: ppt.Visible = true
6: # open the presentation to be exported
7: pre = ppt.Presentations.Open(“d:\\imp_file.pptx”)
8: # export the file
9: pre.Slides(1).Export(“d:\\exp_file.png”,“png”)
10: # close powerpoint, will close all the currently open files
11: ppt.Quit()
You can always use RMagick to further process this image.
The Win32OLE extension library (actually spelled in lowercase, win32ole) provides an interface to Windows OLE automation. Your Ruby code can act as a client for any OLE automation server such as Microsoft Word, Outlook, and Internet Explorer and many other softwares.
So in the above code we are making a object is Powerpoint application, then opening a file and saving the first slide in the “png” format.
Blogroll
Recent Posts
- Autocompleting ssh, rake, cap command parameters using PowerShell
- Using RubyAmf for creating a CRUD application in Rails
- Multiple ways to open PowerShell in the current Explorer window
- Context sensitive auto-completion using PowerShell, PowerTab and GIT
- Displaying GIT Branch on your PowerShell prompt
XBox Live
Songs I like
Categories
- adobe (4)
- amarok (1)
- C# (2)
- chat application (1)
- crud (2)
- cygwin (1)
- explorer (1)
- expression blend (1)
- flex (4)
- FOSS (2)
- free (1)
- GIT (3)
- ID3 (1)
- java (1)
- microsoft (3)
- mxml (2)
- nokia (1)
- open source (5)
- perl (1)
- powerpoint (2)
- powershell (3)
- rails (3)
- right click (1)
- ruby (9)
- ruby on rails (3)
- security (3)
- silverlight (4)
- smart playlist (1)
- socket (1)
- software (7)
- ssh (1)
- sudo (1)
- tabs (1)
- tomcat (1)
- user interface (6)
- vista (9)
- vista, security (2)
- visual studio 2008 (1)
- win32ole (1)
- windows (13)
- windows media player (1)
- wpf (1)
- xaml (4)
- XP (3)
