some quotes
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 279
Quotable Homer quotes .9
Quotable Homer quotes project consists of Homer Simpson quotes for `fortune`. more>>
Quotable Homer quotes project consists of Homer Simpson quotes for `fortune`.
In 1999, Fox published a one-a-day calendar of Homer Simpson quotes. On the back of each page was the name of the episode from the quote came, providing us fanatics with some fun trivia.
At some point, I decided that itd be nice to have all of those quotes in a file parsable by `fortune`. So, you get what we have here.
Installing:
Simply place the files `homer and `homer.dat into same the directory as the other fortune files.
Usually, this is (on GNU/Linux) `/usr/share/games/fortunes.
If, for some reason, youd rather not get homer quotes, simply delete the file `homer.dat.
At any later date, you may run `strfile homer` and the .dat file will be recreated. Could it be any easier?
Enhancements:
- this is now released under a license.
<<lessIn 1999, Fox published a one-a-day calendar of Homer Simpson quotes. On the back of each page was the name of the episode from the quote came, providing us fanatics with some fun trivia.
At some point, I decided that itd be nice to have all of those quotes in a file parsable by `fortune`. So, you get what we have here.
Installing:
Simply place the files `homer and `homer.dat into same the directory as the other fortune files.
Usually, this is (on GNU/Linux) `/usr/share/games/fortunes.
If, for some reason, youd rather not get homer quotes, simply delete the file `homer.dat.
At any later date, you may run `strfile homer` and the .dat file will be recreated. Could it be any easier?
Enhancements:
- this is now released under a license.
Download (0.023MB)
Added: 2006-12-13 License: GPL (GNU General Public License) Price:
1052 downloads
Stock Quote 1.2.4
Stock Quote allows getting stock quote of selected ticker from any financial site that you define in the setting page. more>>
Stock Quote is a Firefox extension that allows you to get stock quote of selected ticker from any financial site that you define in the setting page.
<<less Download (0.007MB)
Added: 2007-06-02 License: MPL (Mozilla Public License) Price:
887 downloads
bigquotes 0.1
bigquotes is a quotes database based on the bpquotes project, with some minor (for the moment) enhancements. more>>
bigquotes is a quotes database based on the bpquotes project, with some minor (for the moment) enhancements. bigquotes is designed to let IRC users add funny quotes for others to see.
A banning system, Web-configurable options (session support, registratuib, admins, timeout for voting, etc.), and other facilities are planned.
<<lessA banning system, Web-configurable options (session support, registratuib, admins, timeout for voting, etc.), and other facilities are planned.
Download (0.013MB)
Added: 2006-05-16 License: GPL (GNU General Public License) Price:
1256 downloads
Irssi Quotes System 1.2
Irssi Quotes System is a script for the Irssi IRC client that provides commands for showing random or specific quotes. more>>
Irssi Quotes System is a script for the Irssi IRC client that provides commands for showing specific or random quotes, searching for quotes using SQL-style wild cards, and adding and deleting quotes.
Commands:
!quote [id] - Shows the quote with that id, or a random quote if none is used.
!search - Searches for *string* - SQL-style wildcards.
!whoset - Shows the author of the quote under that id.
!addquote - Adds a quote in the database.
!db - Prints number of non-deleted quotes in the database.
/delquote - Deletes a quote (actually it just marks the quote as deleted, nobody will be able to see it unless you restore it)
/restore - Restores a quote.
In order to install the irssi quotes system you have to do the following:
Download http://surferz.info/irssi_quotes.sql
Execute it: mysql -p yourdbname < irssi_quotes.sql
Go to your Irssi scripts directory, normally it is ~/.irssi/scripts/
Download http://surferz.info/irssi_quotes.pl
Open irssi_quotes.pl with your favorite text editor and edit these variables:
$database = (yourdbname);
$username = (dbuser);
$password = (dbpass);
Save irssi_quotes.pl
In your Irssi client type: /script load irssi_quotes.pl
Thats it! If you want the script to be loaded automatically at startup, put irssi_quotes.pl in the ~/.irssi/scripts/autorun/ directory. If the directory doesnt exist, create it.
Enhancements:
- Levels were added for the !addquote command.
- The owner can choose who may add quotes: only opped clients, only opped and voiced clients, or everyone.
- The commands must be written on a #channel, as the script wont listen to query windows anymore.
<<lessCommands:
!quote [id] - Shows the quote with that id, or a random quote if none is used.
!search - Searches for *string* - SQL-style wildcards.
!whoset - Shows the author of the quote under that id.
!addquote - Adds a quote in the database.
!db - Prints number of non-deleted quotes in the database.
/delquote - Deletes a quote (actually it just marks the quote as deleted, nobody will be able to see it unless you restore it)
/restore - Restores a quote.
In order to install the irssi quotes system you have to do the following:
Download http://surferz.info/irssi_quotes.sql
Execute it: mysql -p yourdbname < irssi_quotes.sql
Go to your Irssi scripts directory, normally it is ~/.irssi/scripts/
Download http://surferz.info/irssi_quotes.pl
Open irssi_quotes.pl with your favorite text editor and edit these variables:
$database = (yourdbname);
$username = (dbuser);
$password = (dbpass);
Save irssi_quotes.pl
In your Irssi client type: /script load irssi_quotes.pl
Thats it! If you want the script to be loaded automatically at startup, put irssi_quotes.pl in the ~/.irssi/scripts/autorun/ directory. If the directory doesnt exist, create it.
Enhancements:
- Levels were added for the !addquote command.
- The owner can choose who may add quotes: only opped clients, only opped and voiced clients, or everyone.
- The commands must be written on a #channel, as the script wont listen to query windows anymore.
Download (0.003MB)
Added: 2006-07-05 License: Public Domain Price:
1207 downloads
Text::Quote 0.3
Text::Quote contains quotes strings as required for perl to eval them back correctly. more>>
Text::Quote contains quotes strings as required for perl to eval them back correctly.
SYNOPSIS
use Text::Quote;
my @quotes=map{$quoter->quote($_,indent=>6,col_width=>60)}(
"The time has come"
the walrus said,
"to speak of many things..."
," 123456abtn13fr16172021222324252627303132e34353637",
("6abtn13fr32e34" x 5),2/3,10,00);
for my $i (1..@quotes) {
print "$var$i=".$quotes[$i-1].";n";
}
Would produce:
$var1=qq"The time has come"ntthetwalrus said,nt"to speak of man.
qqy things...";
$var2=" 123456abtn13fr16172021222324252627".
"303132e34353637";
$var3=("6abtn13fr32e34" x 5);
$var4=0.666666666666667;
$var5=10;
$var6=00;
<<lessSYNOPSIS
use Text::Quote;
my @quotes=map{$quoter->quote($_,indent=>6,col_width=>60)}(
"The time has come"
the walrus said,
"to speak of many things..."
," 123456abtn13fr16172021222324252627303132e34353637",
("6abtn13fr32e34" x 5),2/3,10,00);
for my $i (1..@quotes) {
print "$var$i=".$quotes[$i-1].";n";
}
Would produce:
$var1=qq"The time has come"ntthetwalrus said,nt"to speak of man.
qqy things...";
$var2=" 123456abtn13fr16172021222324252627".
"303132e34353637";
$var3=("6abtn13fr32e34" x 5);
$var4=0.666666666666667;
$var5=10;
$var6=00;
Download (0.012MB)
Added: 2007-08-06 License: Perl Artistic License Price:
810 downloads
LiveJournal Quote 0.5
LiveJournal Quote is a Firefox extension that tires to make our communication in LJ more easy. more>>
LiveJournal Quote is a Firefox extension that tires to make our communication in LJ more easy. It makes quotes.
How does it works?
1) You can write in post-form tags [quote]Text[/quote] and on clicking the Send-button tags will be converted in html-quote (Div element)
2) You can also select some text on page, right-click, and choose Quote: "Selected Text" and your selected text will be quoted in Send-form.
3) You can easily modify the quote-element as you want. Just open "Settings" in Tools menu, and youll be able to edit CSS code of our Quote-elements
Localization:
- English,
- Russian,
- Deutch
<<lessHow does it works?
1) You can write in post-form tags [quote]Text[/quote] and on clicking the Send-button tags will be converted in html-quote (Div element)
2) You can also select some text on page, right-click, and choose Quote: "Selected Text" and your selected text will be quoted in Send-form.
3) You can easily modify the quote-element as you want. Just open "Settings" in Tools menu, and youll be able to edit CSS code of our Quote-elements
Localization:
- English,
- Russian,
- Deutch
Download (0.021MB)
Added: 2007-05-30 License: MPL (Mozilla Public License) Price:
882 downloads
Kuotes 0.0.5
Kuotes gets a random quote from wikiquote. more>>
Kuotes gets a random quote from wikiquote, fortune or http://www.softwarequotes.com/ and put it to your desktop.
To install it, first uncompress the package, then put the quotes.sh shell script in your ~/bin. Thats all.
To configure, edit ~/.kuotes/config.txt file.
<<lessTo install it, first uncompress the package, then put the quotes.sh shell script in your ~/bin. Thats all.
To configure, edit ~/.kuotes/config.txt file.
Download (0.006MB)
Added: 2006-06-23 License: GPL (GNU General Public License) Price:
1218 downloads
Open Source Quotes DataBase 0.1 Alpha
Open Source Quotes DataBase is a Web site which is very similar in style to the bash.org QDB. more>>
Open Source Quotes DataBase is a Web site which is very similar in style to the bash.org QDB. Open Source Quotes DataBase is designed for people who would like to run their own quote sites.
Enhancements:
- The ability has been added for all admin users to change their own passwords, including mods.
- An error on some systems that stopped you from changing the admin password has been fixed.
- The voting page bug has been fixed.
- This will need a complete rewrite at a later stage.
- The browse function has been rewritten so that there are fewer problems with the page number output.
- The "Hacking Attempt" code has been fixed.
<<lessEnhancements:
- The ability has been added for all admin users to change their own passwords, including mods.
- An error on some systems that stopped you from changing the admin password has been fixed.
- The voting page bug has been fixed.
- This will need a complete rewrite at a later stage.
- The browse function has been rewritten so that there are fewer problems with the page number output.
- The "Hacking Attempt" code has been fixed.
Download (0.081MB)
Added: 2005-12-05 License: GPL (GNU General Public License) Price:
1425 downloads
Finance-QuoteHist 1.07
Finance-QuoteHist provides Finance::QuoteHist, a Perl module that provides easy fetching of historical stock quotes. more>>
Top level aggregator that will select a default lineup of site instances default lineup of site instancesof site instancesof site instancesof site instances from which to retrieve quotes.
Other than the default lineup, this module behaves identically to whichever site-specific module is first in the lineup. See below for site-specific modules.
METHODS
The basic user interface consists of several methods, as seen in the example above. Those methods are:
quotes()
Returns a list of rows (or a reference to an array containing those rows, if in scalar context). Each row contains the Symbol, Date, Open, High, Low, Close, and Volume for that date. Optionally, if non-adjusted values were requested, their will be an extra element at the end of the row for the Adjusted closing price.
dividends()
Returns a list of rows (or a reference to an array containing those rows, if in scalar context). Each row contains the Date and amount of the Dividend, in that order.
splits()
Returns a list of rows (or a reference to an array containing those rows, if in scalar context). Each row contains the Date, Post split shares, and Pre split shares, in that order.
source($ticker, $target)
Each of these methods displays which site-specific class actually retrieved the information, if any, for a particular ticker symbol and target such as quote (default), dividend, or split.
Enhancements:
- The internal structure was changed to use date iterators where appropriate.
- The documentation was fixed for MSN.
- Various minor edge cases were fixed.
<<lessOther than the default lineup, this module behaves identically to whichever site-specific module is first in the lineup. See below for site-specific modules.
METHODS
The basic user interface consists of several methods, as seen in the example above. Those methods are:
quotes()
Returns a list of rows (or a reference to an array containing those rows, if in scalar context). Each row contains the Symbol, Date, Open, High, Low, Close, and Volume for that date. Optionally, if non-adjusted values were requested, their will be an extra element at the end of the row for the Adjusted closing price.
dividends()
Returns a list of rows (or a reference to an array containing those rows, if in scalar context). Each row contains the Date and amount of the Dividend, in that order.
splits()
Returns a list of rows (or a reference to an array containing those rows, if in scalar context). Each row contains the Date, Post split shares, and Pre split shares, in that order.
source($ticker, $target)
Each of these methods displays which site-specific class actually retrieved the information, if any, for a particular ticker symbol and target such as quote (default), dividend, or split.
Enhancements:
- The internal structure was changed to use date iterators where appropriate.
- The documentation was fixed for MSN.
- Various minor edge cases were fixed.
Download (0.025MB)
Added: 2006-03-27 License: GPL (GNU General Public License) Price:
1306 downloads
Finance::Quote::ASX 1.12
Finance::Quote::ASX is a Perl module that can obtain quotes from the Australian Stock Exchange. more>>
Finance::Quote::ASX is a Perl module that can obtain quotes from the Australian Stock Exchange.
SYNOPSIS
use Finance::Quote;
$q = Finance::Quote->new;
%stockinfo = $q->fetch("asx","BHP"); # Only query ASX.
%stockinfo = $q->fetch("australia","BHP"); # Failover to other sources OK.
This module obtains information from the Australian Stock Exchange http://www.asx.com.au/. All Australian stocks and indicies are available. Indexes start with the letter X. For example, the All Ordinaries is "XAO".
This module is loaded by default on a Finance::Quote object. Its also possible to load it explicity by placing "ASX" in the argument list to Finance::Quote->new().
This module provides both the "asx" and "australia" fetch methods. Please use the "australia" fetch method if you wish to have failover with other sources for Australian stocks (such as Yahoo). Using the "asx" method will guarantee that your information only comes from the Australian Stock Exchange.
Information returned by this module is governed by the Australian Stock Exchanges terms and conditions.
<<lessSYNOPSIS
use Finance::Quote;
$q = Finance::Quote->new;
%stockinfo = $q->fetch("asx","BHP"); # Only query ASX.
%stockinfo = $q->fetch("australia","BHP"); # Failover to other sources OK.
This module obtains information from the Australian Stock Exchange http://www.asx.com.au/. All Australian stocks and indicies are available. Indexes start with the letter X. For example, the All Ordinaries is "XAO".
This module is loaded by default on a Finance::Quote object. Its also possible to load it explicity by placing "ASX" in the argument list to Finance::Quote->new().
This module provides both the "asx" and "australia" fetch methods. Please use the "australia" fetch method if you wish to have failover with other sources for Australian stocks (such as Yahoo). Using the "asx" method will guarantee that your information only comes from the Australian Stock Exchange.
Information returned by this module is governed by the Australian Stock Exchanges terms and conditions.
Download (0.090MB)
Added: 2006-12-20 License: Perl Artistic License Price:
1038 downloads
Finance::Quote 1.12
Finance::Quote is a Perl module to get stock and mutual fund quotes from various exchanges. more>>
Finance::Quote is a Perl module to get stock and mutual fund quotes from various exchanges.
SYNOPSIS
use Finance::Quote;
$q = Finance::Quote->new;
$q->timeout(60);
$conversion_rate = $q->currency("AUD","USD");
$q->set_currency("EUR"); # Return all info in Euros.
$q->require_labels(qw/price date high low volume/);
$q->failover(1); # Set failover support (on by default).
%quotes = $q->fetch("nasdaq",@stocks);
$hashref = $q->fetch("nyse",@stocks);
This module gets stock quotes from various internet sources, including Yahoo! Finance, Fidelity Investments, and the Australian Stock Exchange. There are two methods of using this module -- a functional interface that is depreciated, and an object-orientated method that provides greater flexibility and stability.
With the exception of straight currency exchange rates, all information is returned as a two-dimensional hash (or a reference to such a hash, if called in a scalar context). For example:
%info = $q->fetch("australia","CML");
print "The price of CML is ".$info{"CML","price"};
The first part of the hash (eg, "CML") is referred to as the stock. The second part (in this case, "price") is referred to as the label.
<<lessSYNOPSIS
use Finance::Quote;
$q = Finance::Quote->new;
$q->timeout(60);
$conversion_rate = $q->currency("AUD","USD");
$q->set_currency("EUR"); # Return all info in Euros.
$q->require_labels(qw/price date high low volume/);
$q->failover(1); # Set failover support (on by default).
%quotes = $q->fetch("nasdaq",@stocks);
$hashref = $q->fetch("nyse",@stocks);
This module gets stock quotes from various internet sources, including Yahoo! Finance, Fidelity Investments, and the Australian Stock Exchange. There are two methods of using this module -- a functional interface that is depreciated, and an object-orientated method that provides greater flexibility and stability.
With the exception of straight currency exchange rates, all information is returned as a two-dimensional hash (or a reference to such a hash, if called in a scalar context). For example:
%info = $q->fetch("australia","CML");
print "The price of CML is ".$info{"CML","price"};
The first part of the hash (eg, "CML") is referred to as the stock. The second part (in this case, "price") is referred to as the label.
Download (0.090MB)
Added: 2006-12-14 License: Perl Artistic License Price:
1046 downloads
Fortune Osho 1.1
Fortune Osho project consists of quotes from the spiritual guru Osho. more>>
Fortune Osho project consists of quotes from the spiritual guru Osho.
Examples:
Awareness
Mind can never be intelligent - only no-mind is intelligent. Only no-mind is original and radical. Only no-mind is revolutionary - revolution in action.
This mind gives you a sort of stupor. Burdened by the memories of the past, burdened by the projections of the future, you go on living - at the minimum. You dont live at the maximum. Your flame remains very dim.
Once you start dropping thoughts, the dust that you have collected in the past, the flame arises - clean, clear, alive, young. Your whole life becomes a flame, and a flame without any smoke. That is what awareness is.
Enhancements:
- More cookies has been added. The count now reaches to 50.
<<lessExamples:
Awareness
Mind can never be intelligent - only no-mind is intelligent. Only no-mind is original and radical. Only no-mind is revolutionary - revolution in action.
This mind gives you a sort of stupor. Burdened by the memories of the past, burdened by the projections of the future, you go on living - at the minimum. You dont live at the maximum. Your flame remains very dim.
Once you start dropping thoughts, the dust that you have collected in the past, the flame arises - clean, clear, alive, young. Your whole life becomes a flame, and a flame without any smoke. That is what awareness is.
Enhancements:
- More cookies has been added. The count now reaches to 50.
Download (0.016MB)
Added: 2006-12-13 License: Freely Distributable Price:
1049 downloads
Kuote 0.9.3
Kuote is an applet for the KDE panel, inspired by Gnomes Wanda the Fish. more>>
Kuote is an applet for the KDE panel, inspired by Gnomes Wanda the Fish. It displays an animated character (a fish by default), which pops up quotes generated by the fortune(6) program when clicked (and optionally shows them in tooltips, too).
Kuote supports kioslaves for both the animation file and fortune files (fortune directories still work from local filesystems only). This means that you can enter any URL, not only local file names.
Try for example this fortune file available over WWW: http://hektor.umcs.lublin.pl/~mikosmul/computing/inet-fortune
It contains only two quotes, so for testing purposes use it as the only fortune file or assign it a high probability if you want to actually see these fortunes.
Main features:
- support for user-defined animations (file format compatible with Wanda the Fish)
- run fortune or any other program to generate quotes
- fortune can be configured through the GUI
Enhancements:
- added new animation: "See, Hear, Speak" (CC-BY-NC-SA license) - thanks to Mark Riedesel [Klowner]
- added French translation (thanks to Nicolas Ternisien)
- added "Next" button to fortune dialog
- fixed a memory leak associated with dialog boxes
<<lessKuote supports kioslaves for both the animation file and fortune files (fortune directories still work from local filesystems only). This means that you can enter any URL, not only local file names.
Try for example this fortune file available over WWW: http://hektor.umcs.lublin.pl/~mikosmul/computing/inet-fortune
It contains only two quotes, so for testing purposes use it as the only fortune file or assign it a high probability if you want to actually see these fortunes.
Main features:
- support for user-defined animations (file format compatible with Wanda the Fish)
- run fortune or any other program to generate quotes
- fortune can be configured through the GUI
Enhancements:
- added new animation: "See, Hear, Speak" (CC-BY-NC-SA license) - thanks to Mark Riedesel [Klowner]
- added French translation (thanks to Nicolas Ternisien)
- added "Next" button to fortune dialog
- fixed a memory leak associated with dialog boxes
Download (0.56MB)
Added: 2005-06-20 License: GPL (GNU General Public License) Price:
1586 downloads
Kwotes 1.2.1
Kwotes is a chat quote database system with a twist. more>>
Kwotes is a chat quote database system with a twist.
The quotes are publicly moderated, so its up to you to maintain the quality. All quotes are accepted and if their ranking falls too low for too long, they are deleted.
<<lessThe quotes are publicly moderated, so its up to you to maintain the quality. All quotes are accepted and if their ranking falls too low for too long, they are deleted.
Download (0.014MB)
Added: 2005-12-22 License: GPL (GNU General Public License) Price:
1401 downloads
Snippets 1.0
Snippets is a CGI script where fortune cookie meets wiki. more>>
Snippets is a CGI script where fortune cookie meets wiki. The project provides:
- A way for people to share quotes, recipes, jokes...
- A private niche where a person can keep track of sites to visit, people to e-mail.
- A tool for administrators to turn a large repository of static content into a manageable amount of dynamic content.
Snippets is designed to be easy to configure and customize.
Snippets is a versatile CGI script that allows administrators to turn a large amount of static content into a small amount of dynamic content, and users to have an editable quote of the day. Its a cross between a fortune cookie program and a wiki. Snippets can be used for much more than memorable quotes, though; Snippets can be used to show people, or remind them of:
- Jokes
- Quotes
- Recipes
- Websites to visit
- Friends to write/e-mail/call
- Long-term to do items
- Places to visit
- Books to read
- Favorite pictures
- Etc.
Go ahead and play around with it; see what it can do.
<<less- A way for people to share quotes, recipes, jokes...
- A private niche where a person can keep track of sites to visit, people to e-mail.
- A tool for administrators to turn a large repository of static content into a manageable amount of dynamic content.
Snippets is designed to be easy to configure and customize.
Snippets is a versatile CGI script that allows administrators to turn a large amount of static content into a small amount of dynamic content, and users to have an editable quote of the day. Its a cross between a fortune cookie program and a wiki. Snippets can be used for much more than memorable quotes, though; Snippets can be used to show people, or remind them of:
- Jokes
- Quotes
- Recipes
- Websites to visit
- Friends to write/e-mail/call
- Long-term to do items
- Places to visit
- Books to read
- Favorite pictures
- Etc.
Go ahead and play around with it; see what it can do.
Download (0.046MB)
Added: 2007-02-23 License: GPL (GNU General Public License) Price:
973 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above some quotes search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed