Difference between revisions of "User:AaronMT"
(→Labs) |
(→Mozilla Ubiquity) |
||
Line 34: | Line 34: | ||
Ubiquity Commands - <b>Work in Progress</b><br /> | Ubiquity Commands - <b>Work in Progress</b><br /> | ||
=====Display IP address===== | =====Display IP address===== | ||
− | <b>Displays users IP address immediately</b><br /> | + | *<b>Displays users IP address immediately</b><br /> |
by [[User:AaronMT|AaronMT]]<br /> | by [[User:AaronMT|AaronMT]]<br /> | ||
Line 63: | Line 63: | ||
=====Search MedicineNet===== | =====Search MedicineNet===== | ||
− | <b>Searches MedicineNet with a given keyword</b> | + | *<b>Searches MedicineNet with a given keyword</b> |
by [[User:AaronMT|AaronMT]]<br /> | by [[User:AaronMT|AaronMT]]<br /> | ||
Line 90: | Line 90: | ||
=====<b>Pastebin</b><br />===== | =====<b>Pastebin</b><br />===== | ||
− | <i>Transfers selected text to a new pastebin</i>><br /> | + | * <i>Transfers selected text to a new pastebin</i>><br /> |
<b>Usage:</b> <i>pb</i> | <b>Usage:</b> <i>pb</i> | ||
<pre>CmdUtils.CreateCommand({ | <pre>CmdUtils.CreateCommand({ |
Revision as of 13:10, 13 September 2008
Contents
Greetings
Contact
- Internet Relay Chat (IRC)
- AaronMT on IRC (moznet#seneca or freenode#seneca)
- E-Mail
- Seneca E-Mail: amtrain@learn.senecac.on.ca
- Personal E-Mail: aaron.train@gmail.com
Blog
- Open Source Weblog: Aaron on Software
DPS909A - Fall 2008
Mozilla Project
Labs
Mozilla Building
- Operating System: Ubuntu 8.04 (Hardy Heron)
- Computer Used: Dell Inspiron 1501
- Date Performed: --AaronMT 18:10, 13 September 2008 (UTC)
Mozilla Ubiquity
Ubiquity Commands - Work in Progress
Display IP address
- Displays users IP address immediately
by AaronMT
Usage: ip
Utilizes the whatismyip website to parse the IP and display it right in the console
CmdUtils.CreateCommand({ name: "ip", homepage: "http://aaronmt.wordpress.com", author: { name: "Aaron Train", email: "aaron.train@gmail.com"}, description: "Displays your internal IP address.", help: "Just type IP", icon: "http://whatismyip.com/favicon.ico", preview: function(pblock) { var url = "http://whatismyip.com/automation/n09230945.asp"; jQuery.get( url, function(data) { pblock.innerHTML = data; }); }, execute: function() { var url = "http://whatismyip.com"; Utils.openUrlInBrowser(url); }, });
Search MedicineNet
- Searches MedicineNet with a given keyword
by AaronMT
Usage: health keyword phrase
CmdUtils.CreateCommand( { name: "health", homepage: "http://medicinenet.com", author: { name: "Aaron Train", email: "aaron.train@gmail.com" }, description: "Takes keyword phrase and searches MedicineNet", help: "health <i>keyword phrase</i>", icon: "http://images.medicinenet.com/images/fav/MN.ico", takes: {"Enter a noun": noun_arb_text}, preview: function(pblock, keywordPhrase) { pblock.innerHTML = "Search the MedicineNet by entering any phrase <b>" + keywordPhrase.text + "</b>" }, execute: function(keywordPhrase) { var searchURL = "http://www.medicinenet.com/" + keywordPhrase.text; Utils.openUrlInBrowser(searchURL); } });
Pastebin
- Transfers selected text to a new pastebin>
Usage: pb
CmdUtils.CreateCommand({ name: "pb", homepage: "http://aaronmt.wordpress.com", author: { name: "Aaron Train", email: "aaron.train@gmail.com"}, description: "Transfers selected text to a new Pastebin.", help: "Selected text will be sent to a new Pastebin", icon: "http://pastebin.ca/pastebin.ico", preview: function(pblock) { var text=context.focusedWindow.document.getSelection(); var url = "http://pastebin.ca"; }, execute: function() { var url = "http://pastebin.ca"; var text=context.focusedWindow.document.getSelection(); displayMessage(text); Utils.openUrlInBrowser(url); }, });
Bugs
Ubuntu
[1] Bugs I have reported
Firefox
[2] Bugs I have reported
External Projects
I am deeply passionate with the Ubuntu project. Having first used it in its infancy and being involved with the community, collaborating with the community to better the product has been a hobby and passion of mine for the past few years. I have been contributing to many tutorials and solutions in the community, such as: