Main > Free Download Search >

Free persistence quotes software for linux

persistence quotes

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 400
subPersistence 0.10.0

subPersistence 0.10.0


subPersistence is an abstract, light-weight, yet flexible framework for working with O/R persistence mappers. more>>
subPersistence is an abstract, light-weight yet flexible framework for working with O/R persistence mappers. It provides for independence of a specific O/R mapper such as Hibernate or Castor.
While you can use Hibernate or Castor (or other O/R mappers) directly, coupling your application too tightly to those can be a bad thing. subPersistence makes it easy to switch underlying O/R mappers, thereby decoupling the application layer from those.
It abstracts away differences between the mappers, while still making it possible to use their specific features if needed.
Enhancements:
- This version updates to Java 5 features such as Generics and is the first version to require Hibernate 3.
<<less
Download (0.040MB)
Added: 2005-07-01 License: GPL (GNU General Public License) Price:
1575 downloads
Lexical::Persistence 0.97

Lexical::Persistence 0.97


Lexical::Persistence is a Perl module for persistent lexical variable values for arbitrary calls. more>>
Lexical::Persistence is a Perl module for persistent lexical variable values for arbitrary calls.

SYNOPSIS

#!/usr/bin/perl

use Lexical::Persistence;

my $persistence = Lexical::Persistence->new();
foreach my $number (qw(one two three four five)) {
$persistence->call(&target, number => $number);
}

exit;

sub target {
my $arg_number; # Argument.
my $narf_x++; # Persistent.
my $_i++; # Dynamic.
my $j++; # Persistent.

print "arg_number = $arg_numbern";
print "tnarf_x = $narf_xn";
print "t_i = $_in";
print "tj = $jn";
}

<<less
Download (0.011MB)
Added: 2007-05-18 License: Perl Artistic License Price:
889 downloads
Stock Quote 1.2.4

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
Simple persistence for Java 2.2.0

Simple persistence for Java 2.2.0


Simple persistence for Java is an object/relation mapping framework for Java. more>>
Simple persistence for Java is an object/relation mapping framework for Java. It is designed to be easy to use.
There are no XML files to write, no tables to create, no IDs to generate, and no primary keys to fiddle with; just point it to the database, check the API documentation for three basic methods, and code away.
Simple persistence for Java supports transactions, has its own simple query language (very similar to SQL), and can handle object references, lists, and maps.
You may ask: Why another O/R mapping library? Well.. Ive searched the net for a suitable O/R tool for a long time now, also tried a few in live projects, but each time, at the end of the project, I had always had a few thoughts to simplify the database interaction code. Ive started with EJB around 2000. Now, I think everyone who used EJBs also at least once wondered why saveing a friggin object requires a separate server installation, the extensive knowledge of a 200+ page documentation, generating 3 classes/interfaces per object, installing stubs, rmi, and other things I dont even want to know about. Lets just skip this chapter of my life directly to my last experience with an O/R library: pbeans. This library is generally good, I can recommend it for those, who want a stable O/R mapping tool, but it was not the one for me. I found a few points I couldnt get over:
- Save and insert should be one method. I usually dont care if an object is inserted or saved phisically, as long as its saved.
- It should handle Lists and Maps. Well, "Lists should be enough for everybody", but sometimes Maps are handy too. Lists are used very often, I think it should be handled automatically.
- The query code is too difficult, and at the same time does not offer enough features.
- The code you have to write wont be "pretty". It requires classes to be parameters, at least for queries, and I cant read the query itself.
- The Id handling is not transparent.
Enhancements:
- A major scalability feature has been added: the library is now capable of working in a distributed environment, such as load-balanced Web server clusters.
- All the library nodes connected to the same database will form a self-regulating, self-organizing, failure-tolerant network to manage exclusive resources (such as locks, etc).
- The documentation and site were updated accordingly.
<<less
Download (1.1MB)
Added: 2007-02-25 License: LGPL (GNU Lesser General Public License) Price:
971 downloads
Irssi Quotes System 1.2

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.
<<less
Download (0.003MB)
Added: 2006-07-05 License: Public Domain Price:
1207 downloads
Finance::Quote 1.12

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.

<<less
Download (0.090MB)
Added: 2006-12-14 License: Perl Artistic License Price:
1046 downloads
Finance::Quote::ASX 1.12

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.

<<less
Download (0.090MB)
Added: 2006-12-20 License: Perl Artistic License Price:
1038 downloads
LiveJournal Quote 0.5

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
<<less
Download (0.021MB)
Added: 2007-05-30 License: MPL (Mozilla Public License) Price:
882 downloads
bigquotes 0.1

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.

<<less
Download (0.013MB)
Added: 2006-05-16 License: GPL (GNU General Public License) Price:
1256 downloads
Open Source Quotes DataBase 0.1 Alpha

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.
<<less
Download (0.081MB)
Added: 2005-12-05 License: GPL (GNU General Public License) Price:
1425 downloads
Quotable Homer quotes .9

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.
<<less
Download (0.023MB)
Added: 2006-12-13 License: GPL (GNU General Public License) Price:
1052 downloads
Text::Quote 0.3

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;

<<less
Download (0.012MB)
Added: 2007-08-06 License: Perl Artistic License Price:
810 downloads
Finance::QuoteHist::Yahoo 1.09

Finance::QuoteHist::Yahoo 1.09


Finance::QuoteHist::Yahoo is a Perl module with site-specific subclass for retrieving historical stock quotes. more>>
Finance::QuoteHist::Yahoo is a Perl module with site-specific subclass for retrieving historical stock quotes.

SYNOPSIS

use Finance::QuoteHist::Yahoo;
$q = new Finance::QuoteHist::Yahoo
(
symbols => [qw(IBM UPS AMZN)],
start_date => 01/01/1999,
end_date => today,
);

# Values
foreach $row ($q->quotes()) {
($symbol, $date, $open, $high, $low, $close, $volume) = @$row;
...
}

# Splits
foreach $row ($q->splits()) {
($symbol, $date, $post, $pre) = @$row;
}

# Dividends
foreach $row ($q->dividends()) {
($symbol, $date, $dividend) = @$row;
}

Finance::QuoteHist::Yahoo is a subclass of Finance::QuoteHist::Generic, specifically tailored to read historical quotes, dividends, and splits from the Yahoo web site (http://table.finance.yahoo.com/).

For quotes and dividends, Yahoo can return data quickly in CSV format. Both of these can also be extracted from HTML tables. Splits are only available embedded in the HTML version of dividends.

There are no date range restrictions on CSV queries for quotes and dividends.
For HTML queries, Yahoo takes arbitrary date ranges as arguments, but breaks results into pages of 66 entries.

Please see Finance::QuoteHist::Generic(3) for more details on usage and available methods. If you just want to get historical quotes and are not interested in the details of how it is done, check out Finance::QuoteHist(3).

<<less
Download (0.028MB)
Added: 2006-12-12 License: Perl Artistic License Price:
1048 downloads
Finance::Quote::Yahoo::Asia 1.12

Finance::Quote::Yahoo::Asia 1.12


Finance::Quote::Yahoo::Asia is Perl module to fetch quotes from Yahoo Asia. more>>
Finance::Quote::Yahoo::Asia is Perl module to fetch quotes from Yahoo Asia.

SYNOPSIS

use Finance::Quote;
$q = Finance::Quote->new;

%info = $q->fetch("asia","CREA.SI"); # Failover to other methods ok.
%info = $q->fetch("yahoo_asia","CREA.SI"); # Use this module only.

This module fetches information from Yahoo Asia. Symbols should be provided in the format "SYMBOL.EXCHANGE", where the exchange code is one of the following:
SI - Singapore
BO - Bombay
JK - Jakarta
HK - Hong Kong
NS - India
KS - Korea
KL - Kuala Lumpur
NZ - New Zealand
SS - Shanghai
SZ - Shenzhen
TW - Taiwan
TH - Thailand

This module provides both the "asia" and "yahoo_asia" methods. The "asia" method should be used if failover methods are desirable. The "yahoo_asia" method should be used you desire to only fetch information from Yahoo Europe.

Stocks are returned in the currency of the local exchange. You can use Finance::Quotes set_currency() feature to change the currency in which information is returned.

This module is loaded by default by Finance::Quote, but can be loaded explicitly by specifying the parameter "Yahoo::Asia" to Finance::Quote->new().

Information obtained by this module may be covered by Yahoos terms and conditions. See http://sg.finance.yahoo.com/ for more details.

<<less
Download (0.090MB)
Added: 2006-12-07 License: Perl Artistic License Price:
1058 downloads
Finance::QuoteHist::Generic 1.09

Finance::QuoteHist::Generic 1.09


Finance::QuoteHist::Generic is a base class for retrieving historical stock quotes. more>>
Finance::QuoteHist::Generic is a base class for retrieving historical stock quotes.

SYNOPSIS

package Finance::QuoteHist::MyFavoriteSite;
use strict;
use vars qw(@ISA);
use Finance::QuoteHist::Generic;
@ISA = qw(Finance::QuoteHist::Generic);

sub url_maker {
# This method returns a code reference for a routine that, upon
# repeated invocation, will provide however many URLs are necessary
# to fully obtain the historical data for a given target mode and
# parsing mode.
}

This is the base class for retrieving historical stock quotes. It is built around LWP::UserAgent. Page results are currently parsed as either CSV or HTML tables.
In order to actually retrieve historical stock quotes, this class should be subclassed and tailored to a particular web site.

In particular, the url_maker() factory method should be overridden, which provides a code reference to a routine that provides however many URLs are necessary to retrieve the data over a list of symbols within the given date range, for a particular target (quotes, dividends, splits). Different sites have different formats and different limitations on how many quotes are returned for each query. See Finance::QuoteHist::Yahoo and Finance::QuoteHist::QuoteMedia for some examples of how to do this.

For more complicated sites, such as Yahoo, overriding additonal methods might be necessary for dealing with things such as splits and dividends.

<<less
Download (0.028MB)
Added: 2006-12-20 License: Perl Artistic License Price:
1039 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5