active questions tagged example - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T22:04:54Zhttp://stackoverflow.com/feeds/tag/examplehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1769953/where-i-can-find-good-spring-project-example-with-hibernate1Where I can find good Spring project example with Hibernate?newbie2009-11-20T11:43:03Z2009-11-20T19:31:10Z
<p>I need to make project with Spring + Hibernate, where I could find good example project how basic things are done?</p>
http://stackoverflow.com/questions/1756096/understanding-generators-in-python7Understanding Generators in Python?_bravado2009-11-18T13:46:51Z2009-11-18T17:54:00Z
<p>Reading the Python cookbook at the minute and currently looking at generators. I'm finding it hard to get my head round.</p>
<p>As I come from a Java background, is there a Java equivelant? The book was speaking about 'Producer / Consumer', however when I hear that I think of threading.</p>
<p>Can anyone explain what a generator is and why you would use it? Without quoting any books, obviously(Unless you can find a decent, simplistic answer direct from a book). Perhaps with examples, if you're feeling generous! :) Much appreciated.</p>
http://stackoverflow.com/questions/1751186/impressing-ruby-example7Impressing Ruby examplebrainfck2009-11-17T19:28:48Z2009-11-17T23:27:30Z
<p>Hi,</p>
<p>in some days I am giving a talk about a Rails project at university and I want to introduce the audience to Ruby.</p>
<p>I want to show them one or two really nice code examples to demonstrate how awesome Ruby is.</p>
<p>Do you know a good example?</p>
<p>Best regards</p>
http://stackoverflow.com/questions/1255762/synchro-boost-example-problem0Synchro boost example problemDaniel B.2009-08-10T16:05:36Z2009-11-17T18:06:28Z
<p>Dear everybody,<br />
I have a problem using asio. My client/server application requires only synchronous communication. So, using the examples for synchro from the boost homepage, I have set up two procedures to send and receive data. Their code is as follows:</p>
<pre><code>void vReceive(tcp::socket & socket, std::string & szDest){
char szTmp_Buf [BUF_LEN + 1];
szDest = "";
std::cout << "Entering vReceive . . ." << std::endl;
for (;;){
char szBuf [BUF_LEN];
boost::system::error_code error;
uInt uiBytes_Recv = socket.read_some(boost::asio::buffer(szBuf), error);
std::cout << " Read " << uiBytes_Recv << " bytes" << std::endl;
if (error == boost::asio::error::eof)
break; // Connection closed cleanly by peer.
else if (error)
throw boost::system::system_error(error); // Some other error.
memcpy((void*) szTmp_Buf, (void*) szBuf, uiBytes_Recv );
szTmp_Buf[ uiBytes_Recv ] = '\0';
szDest += szTmp_Buf;
};
std::cout << "Received" << szDest << std::endl;
std::cout << "Leaving vReceive . . ." << std::endl << std::endl;
};
void vSend(tcp::socket & socket, std::string & szSrc){
std::cout << "Entering vSend . . . " << std::endl;
std::cout << "Sending " << szSrc << std::endl;
boost::system::error_code ignored_error;
boost::asio::write(socket, boost::asio::buffer(szSrc), boost::asio::transfer_all(), ignored_error);
std::cout << "Leaving vSend . . . " << std::endl << std::endl;
};
</code></pre>
<p>These procedures are just wrappers for the lines of code extracted from the boost examples.</p>
<p>In my test applications, the client calls</p>
<pre><code>std::string szDate;
vReceive(socket, szDate);
vSend(socket, std::string("Chop Suey!") );
vReceive(socket, szDate);
vSend(socket, std::string("Halo"));
</code></pre>
<p>and the server calls</p>
<pre><code>std::string message = make_daytime_string();
std::string szReceived;
vSend(socket, message);
vReceive(socket, szReceived);
vSend(socket, message);
vReceive(socket, szReceived);
</code></pre>
<p>just to test the functionality. The problem is that both applications freeze after the first information exchange, as I have depicted on the following <a href="http://eubie.sweb.cz//asio_problem.JPG" rel="nofollow">picture</a>. It seems that <i>vReceive()</i> procedure on the client side doesn´t finish while <i>vSend()</i> finishes on the server side. So, does anybody have any idea, what might be wrong?</p>
<p>Just in case someone wanted to replicate the problem, I uploaded the sources complete sources to to same server, where the picture is in the asio_problem.rar file (I can have one hyperlink per post as a new member).</p>
<p>Thank you all in advance,
Daniel.</p>
http://stackoverflow.com/questions/1663980/rich-domain-model-example4rich domain model exampleDon2009-11-02T21:57:43Z2009-11-17T09:59:16Z
<p>Hi,</p>
<p>I'm looking for a simple example to illustrate the benefits of using a rich domain model. Ideally, I'd like a before and after code listing (which should be as short as possible).</p>
<p>The before code listing should show the problem being solved using an anaemic domain model, and a lot of fairly procedural service-layer code, and the after code listing should show the same problem being solved using a rich, object-oriented domain model.</p>
<p>Ideally the code listing should be in Java or Groovy, but anything fairly similar (e.g. C#) would do.</p>
<p>Thanks,
Donal</p>
http://stackoverflow.com/questions/1734738/php5-oop-tutorial-or-examples1PHP5 OOP Tutorial or examplesKeet2009-11-14T16:31:38Z2009-11-14T17:50:04Z
<p>Hello,
I am currently trying to get my head around OOP in PHP, I understand the basic concepts etc.
Up to this I have been working for tutorials and books.
What I am looking for is some good tutorials that use real examples [ie make a functioning application] or a simple well written application [with source code] so I can look through the source and see how it works. </p>
<p>I understand that there are 1,00's of tutorials and application out there, but all the tutorial I can find and either theoretical or too basic, and the open source app I have looked at are too complicated.</p>
<p>Any advise/suggestions would be great Thanks in advance.</p>
<p>PS. for bonus points, I have a site that is current in need of an upgrade, it is a small event listing for a theater, [showing detail/info for event from a mysql db]</p>
<p>Ideally I would like to write this using OOP as a test, so any tutorial/example along these line would be great !</p>
<p>UPDATE</p>
<p>Basically I am looking for a tutorial that show how to build an event listing app in OO php, or a event listing app [again in OO php] which I can examine and rework the code.</p>
<p>Not links to wikipeadia etc. </p>
http://stackoverflow.com/questions/1733004/python-next-function1Python: next() functionNimbuz2009-11-14T02:17:05Z2009-11-14T03:49:51Z
<p>I'm learning Python from a book, and I came across this example:</p>
<pre><code>M = [[1,2,3],
[4,5,6],
[7,8,9]]
G = (sum(row) for row in M) # create a generator of row sums
next(G) # Run the iteration protocol
</code></pre>
<p>Since I'm an absolute beginner, and the author hasn't provided any explanation of the example or the next() function, I don't understand what the code is doing.</p>
http://stackoverflow.com/questions/1719929/filtering-odd-numbers1Filtering odd numbersNimbuz2009-11-12T04:43:30Z2009-11-12T05:02:04Z
<pre><code>M = [[1,2,3],
[4,5,6],
[7,8,9]]
col2 = [row[1] + 1 for row in M if row[1] % 2 == 0]
print (col2)
</code></pre>
<p>Output: <code>[3, 9]</code></p>
<p>I'm expecting it to filter out the odd numbers, but it does the opposite.</p>
http://stackoverflow.com/questions/1677984/where-can-i-find-examples-of-quartz-2d-drawing-on-the-iphone0Where can I find examples of Quartz 2D drawing on the iPhone?Mishal2009-11-05T02:37:46Z2009-11-10T16:35:46Z
<p>Hi,</p>
<p>I am going to develope the 2D game in Iphone using Quartz.</p>
<p>what is the main Difference between Quartz and QuartzCore?</p>
<p>I have searched a lot over the internet, but only able to find out the MAC OS with Quartz Examples.</p>
<p>If any body has any Link/URL for Examples of Quartz(2D) using Iphone Developement,which would be run in the Real Iphone Device?
Also if possible than give the Link for Bunch of examples/repository for Quartz Iphone.</p>
<p>Thanks,</p>
<p>Mishal Shah </p>
http://stackoverflow.com/questions/1698565/good-problem-domain-for-introduction-to-oo-project1Good problem domain for introduction to OO project?Kaleb Brasee2009-11-09T00:53:01Z2009-11-09T01:42:01Z
<p>I'm working with someone who's looking to get back into programming after several years of IT support work. They know all the iterative programming basics and have used them frequently, but their only object-oriented programming experience was in college. The goal is to come up with a decent-sized project that is good for illustrating and practicing OO concepts. Has anyone ever used or thought of a good problem domain for an introduction to OO? I'm looking for a domain where concepts such as inheritance, abstraction and polymorphism really make sense and provide an advantage when modeling with the classes.</p>
<p>Of course, I did some googling and found the popular <a href="http://www.math-cs.gordon.edu/courses/cs211/" rel="nofollow">ATM and Address Book OO examples</a>. They're both pretty good, but ATM is a little more complex than what I'm looking for. Address Book may be decent, but I think it might not be complex enough, or a clear enough domain for modeling objects. The goal is for the project to take a decent amount of effort to complete, not something that can be completely done in an afternoon or two.</p>
<p>As for implementation specifics, the project will be implemented as a Java console app with a minimal UI. Learning the OO concepts and how to implement them in Java is the primary purpose of this app.</p>
http://stackoverflow.com/questions/1676781/boost-serializing-of-object-containing-map-with-object-values-and-multimap-wit2Boost Serializing of Object containing Map (with object values) and Multimap (with std::string values): what is needed?bhartsb2009-11-04T21:34:41Z2009-11-08T23:25:27Z
<p>See below a main() and two very simple classes. Then per Boost serialization (and what is shown) my questions are:</p>
<p>1) Does class B need the normal overloaded stream insertion operators '<<' and '>>' to be defined? Currently in my real code it doesn't have these.</p>
<p>2) Does class A in the store() and load() methods need to iterate through the map and multimap containers explicitely, storing/loading their key:value pairs explicitely?
e.g. something like:</p>
<pre><code>void A::store(const char* filename){
std::ofstream ofs(filename);
boost::archive::text_oarchive oa(ofs);
std::map< std::string, B >::iterator it;
BMap.size();
oa << BMap.size();
for( it = BMap.begin(); it != BMap.end(); it++ ){
oa << it->first;
oa << it->second;
}
//similar for strMultimap
}
</code></pre>
<p>I assume that I don't need to do this, but am not certain.</p>
<p>3) Assuming class B has only the two data members shown, does it need a default contructor included explicitely? (as opposed to the implicit default constructor)</p>
<p>4) Does B need to have an overide for the comparison operator '>'? I assume that it doesn't since this is a very simple class.</p>
<p>Finally, any other comments per anything that I've failed to cover is appreciated!</p>
<p>Example code for my above questions:</p>
<pre><code>//includes ommitted
int main() {
std::string file("test.dat");
A * pA = new A;
pA->store(file.c_str());
pA->fillMaps();
//release data
pA->load(file.c_str());
return 0;
}
//includes ommitted
class A
{
friend class boost::serialization::access;
public:
std::map< std::string, B > BMap;
std::multimap< std::string, std::string > strMultimap;
template<class Archive>
void serialize(Archive & ar, const unsigned int version)
{
ar & BMap;
ar & strMultimap;
}
void store(const char* filename){
std::ofstream ofs(filename);
boost::archive::text_oarchive oa(ofs);
oa << this;
}
void load(const char* filename){
std::ifstream ifs(filename);
boost::archive::text_iarchive ia(ifs);
ia >> this;
}
void fillMaps(){
//code to allocate B objects and put them in BMap and fill strMultimap with whatever number of key:value pairs
}
class B
{
friend class boost::serialization::access;
public:
std::string str;
unsigned int num;
B::B(void)
: str("a string")
, num(7)
{
}
template<class Archive>
void serialize(Archive & ar, const unsigned int version)
{
ar & str;
ar & num;
}
}
</code></pre>
http://stackoverflow.com/questions/1650752/any-references-to-example-projects0Any References to Example ProjectsRohan2009-10-30T16:08:51Z2009-10-30T21:37:45Z
<p>Currently I am a moderate (in terms of difficulty) when it comes to PHP. I would like to test my knowledge by developing certain utilities using PHP (and maybe SQL). But the problem is that I am not able to find any example projects. Does anyone have any links or some small sample projects? </p>
http://stackoverflow.com/questions/1625311/open-source-non-trivial-soa-examples0Open source non-trivial SOA examplesiemejia2009-10-26T14:54:44Z2009-10-26T15:51:10Z
<p>Hello,</p>
<p>I've been looking for open source examples of SOA applications, but most of the times I find simple tutorial hello world style examples that introduce the tricks of the respective middleware. </p>
<p>Do you have any suggestion about any middle to big size example with multiple layers and/or governance ? Isn't it some kind of common example (a la Lena in image processing) for SOA ?</p>
<p>Any suggestions ?
Thanks</p>
http://stackoverflow.com/questions/1616463/apache-i-want-to-enable-ssi-can-anyone-furnish-an-example-config-file0Apache: I want to enable SSI. Can anyone furnish an example config file?Jim G.2009-10-23T23:35:18Z2009-10-25T20:20:22Z
<p>Yes - Google abounds with information about configuring Apache to support SSI.</p>
<p>But unfortunately, I still cannot seem to get it right.</p>
<p>My questions:</p>
<blockquote>
<ul>
<li><p>Can anyone furnish me a <strong>full-fledged</strong> example config file that enables SSI on an Apache server? </p></li>
<li><p>Also can you please tell me where I should drop this config file (i.e. which<br />
directory)?</p></li>
</ul>
</blockquote>
http://stackoverflow.com/questions/1376434/looking-for-a-cocotron-example0Looking for a cocotron exampleMichael Minerva2009-09-03T23:09:23Z2009-10-23T18:49:59Z
<p>I have been having a lot of trouble getting cocotron to create a simple window app that can be compiled on the mac and will produce an that will run on the pc. Does anyone have a link to a simple example that I could download where all the setting are correct? This would really help me look and see what the differences are and help me see what I am doing wrong. Anyone out there have anything like this? </p>
http://stackoverflow.com/questions/1580483/a-simple-practical-example-of-fuzzy-c-means-algorithm0a simple/practical example of fuzzy c-means algorithmfin2009-10-16T21:16:57Z2009-10-22T11:30:46Z
<p>i a writing my master thesis on the subject of dynamic keystroke authentication. to support ongoing research, i am writing code to test out different methods of feature extraction and feature matching.</p>
<p>my current simple approach just checks if the reference password keycodes matches the currently typed in keycodes and also checks if the keypress times (dwell) and the key-to-key times (flight) are the same as reference times +/- 100ms (tolerance). this is of course very limited and i want to extend it with some sort of fuzzy c-means pattern matching.</p>
<p>for each key the features look like: keycode, dwelltime, flighttime (first flighttime is always 0).</p>
<p>obviously the keycodes can be taken out of the fuzzy algorithm because they have to be exactly the same.
in this context, how would a practical implementation of fuzzy c-means look like?</p>
http://stackoverflow.com/questions/1587397/jpa-one-to-many-relationship-question-relations-on-one-entity1JPA one-to-many relationship question (relations on one entity)cetnar2009-10-19T07:41:05Z2009-10-19T08:49:26Z
<p>In <a href="http://www.java2s.com/Code/Java/JPA/Relationsononeentity.htm" rel="nofollow">this</a> JPA example there is a code:</p>
<pre><code>@OneToOne(cascade=CascadeType.ALL)
private Deity mother;
@OneToOne(cascade=CascadeType.ALL)
private Deity father;
@OneToMany(cascade=CascadeType.ALL)
private Set<Deity> children;
</code></pre>
<p>Why relation with father and mother is implemented by <em>@OneToOne</em> annotation and not in <em>@ManyToOne</em> relation? If <em>Child</em> and <em>Parent</em> will be separate classes <em>Parent</em> will have <code>@OneToMany Collection<Child> children</code> and <em>Child</em> have <code>@ManyToOne Parent parent</code>. This (deity) example seems reasonable but I looking for explanation why is that.</p>
<p>Links to JPA specification will be very appreciated.</p>
http://stackoverflow.com/questions/1572676/unexpected-result-in-a-simple-example0Unexpected result in a simple exampleNimbuz2009-10-15T14:21:44Z2009-10-15T14:42:07Z
<pre><code> def solve(numLegs, numHeads):
for numSpiders in range(0, numHeads + 1):
for numChicks in range(0, numHeads - numSpiders + 1):
numPigs = numHeads - numChicks - numSpiders
totLegs = 4*numPigs + 2*numChicks + 6*numSpiders
if totLegs == numLegs:
return [numPigs, numChicks, numSpiders]
return [None, None, None]
def barnYard(heads, legs):
pigs, chickens, spiders = solve(legs, heads)
if pigs == None:
print "There is no solution."
else:
print 'Number of pigs: ', pigs
print 'Number of Chickens: ', chickens
print 'Number of Spider: ', spiders
barnYard(20,56) # 8 pigs - 12 chickens
barnYard(21,62) # 10 pig - 11 chickens
</code></pre>
<p>20 heads and 56 legs returns 8 pigs and 12 chickens, so I made it 21 and 62 to add a spider, but it still returns pigs and chickens, whats wrong in the code?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/193632/where-can-i-find-good-examples-of-rails-applications36Where can I find good examples of Rails applications?Kyle Heironimus2008-10-11T04:18:30Z2009-10-15T10:24:45Z
<p>I would like to get source for a small, well written rails app to modify and "play with" as I learn how to program. I have found hundreds of open-source apps, but I don't know which are any good.</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/1549828/understanding-an-example0Understanding an exampleNimbuz2009-10-11T04:08:09Z2009-10-12T03:59:11Z
<pre><code>def solve(numLegs, numHeads):
for numChicks in range(0, numHeads + 1):
numPigs = numHeads - numChicks
totLegs = 4*numPigs + 2*numChicks
if totLegs == numLegs:
return [numPigs, numChicks]
return [None, None]
def barnYard(heads, legs):
pigs, chickens = solve(legs, heads)
if pigs == None:
print "There is no solution."
else:
print 'Number of pigs: ', pigs
print 'Number of Chickens: ', chickens
</code></pre>
<p>I'm learning Python and came across this example, can someone please explain in plain english (or pseudo-code) what this is doing line by line.</p>
<p>Many thanks</p>
http://stackoverflow.com/questions/1549795/unexpected-result-on-a-simple-example0Unexpected result on a simple exampleNimbuz2009-10-11T03:47:05Z2009-10-11T03:52:29Z
<pre><code># Barn yard example: counting heads and legs
def solve(numLegs, numHeads):
for numChicks in range(0, numHeads + 1):
numPigs = numHeads - numChicks
totLegs = 4*numPigs + 2*numChicks
if totLegs == numLegs:
return [numPigs, numChicks]
return [None, None]
def barnYard(heads, legs):
pigs, chickens = solve(legs, heads)
if pigs == None:
print "There is no solution."
else:
print 'Number of pigs: ', pigs
print 'Number of Chickens: ', chickens
barnYard(20,56)
</code></pre>
<p>Expected result is 8 and 12 I think, but it returns 'There is no solution'. What am I doing wrong?</p>
<p>I'm just starting with programming, so please be nice ... :)</p>
http://stackoverflow.com/questions/1546576/can-someone-post-an-example-of-creating-a-boost-invadjacencyiterator-using-inv0Can someone post an example of creating a boost inv_adjacency_iterator using inv_adjacency_iterator_generator?ypv2009-10-09T23:44:39Z2009-10-09T23:44:39Z
<p>Given definitions:</p>
<p>typedef typename boost::graph_traits::adjacency_iterator adjacency_iter;<br />
typedef typename boost::inv_adjacency_iterator_generator::type inv_adjacency_iter;</p>
<p>I am interested in semantics of boost::tie(i, end) = inv_adjacent_vertices((*start);</p>
<p>adjacent_vertices works fine where inv_adjacent_vertices fails with the following:</p>
<p>error C2679: binary '=' : no operator found which takes a right-hand operand of type 'const boost::inv_adjacency_iterator' (or there is no acceptable conversion) C:\boost_1_33_1\boost\tuple\detail\tuple_basic.hpp 637 domain</p>
<p>Tuple_basic.hpp defines adjacency_iterator using access_traits.</p>
<p>inv_adjacency_iterator is defined using the inv_adjacency_iterator_generator...</p>
http://stackoverflow.com/questions/1517651/guideline-for-code-examples-in-job-applications1Guideline for code examples in job applicationsJoe2009-10-04T23:05:20Z2009-10-04T23:12:15Z
<p>Very often in job offers one is asked to provide some 'example code' together with the CV. I found it kind of difficult do decide which code is a good choice.</p>
<p>Of cause it has to be meaningful code but on the other hand short enough to get a quick overview. It has to be well-documentated but not filled up with messy comments.</p>
<p>Okay, sure, it depends on context and language to some degree. In my case it would be web development and ruby/rails, but I think it matters for all others out there as well.</p>
<p>So, what are your experiences with this? Any guideline to take some orientation from? How did you decided your choice?</p>
<p>Or perhaps you're in the lucky position of querying for examples yourself - what would you like to see? Any hints?</p>
http://stackoverflow.com/questions/455910/what-is-the-function-construct-used-for1what is the function __construct used for?Levi2009-01-18T21:19:58Z2009-09-17T16:01:38Z
<p>I have been noticing *__construct* a lot with classes. I did a little reading and surfing the web, but I couldn't find an explanation I could understand. I am just beginning with OOP.</p>
<p>I was wondering if someone could give me a general what it is, and then a simple example of how it is used with php?</p>
<p>Thanks,<br>
Levi</p>
http://stackoverflow.com/questions/675108/fluentnhibernate-getting-the-examples-firstproject-to-work0FluentNHibernate: Getting the Examples.FirstProject to work2009-03-23T20:31:54Z2009-09-12T10:11:51Z
<p>Im trying to get the most basic of examples to run in FnH. I started with the Examples.FirstProject. However, I did not use the SQL lite configuration. Instead, I set the configuration to SQL2005 and created the tables as was diagramed in the example. </p>
<p>When stepping through the code, there appears to be no problems when creating the session factory. I do receive an error however when the code reaches the "transaction.commit" line. The error reads: </p>
<pre><code>Could not insert collection: [Examples.FirstProject.Entities.Store.Products#5][SQL:SQL not available]
</code></pre>
<p>Im wondering if there was an issue with the way the tables were created in SQL Server. The IDs were "int" type and the names and such were "varchar(50)." I set the PK of Store, Product, and Employee to its respective ID field. I also made the ID increment automatically by 1 (IdentitySpecification column property in SQL Server). StoreProduct is the many-to-many and is also there per the diagram.</p>
<p>Any help would be appreciated. Thanks.</p>
http://stackoverflow.com/questions/1374695/simple-c-hashset-example0simple C++ hash_set exampleDzhelil Rufat2009-09-03T17:01:42Z2009-09-03T17:14:34Z
<p>I am new to C++ and STL. I am stuck with the following simple example of a hash set storing custom data structures:</p>
<pre><code>#include <iostream>
#include <ext/hash_set>
using namespace std;
using namespace __gnu_cxx;
struct trip {
int trip_id;
int delta_n;
int delta_secs;
trip(int trip_id, int delta_n, int delta_secs){
this->trip_id = trip_id;
this->delta_n = delta_n;
this->delta_secs = delta_secs;
}
};
struct hash_trip
{
size_t operator()(const trip t)
{
hash<int> H;
return H(t.trip_id);
}
};
struct eq_trip
{
bool operator()(const trip t1, const trip t2) {
return (t1.trip_id==t2.trip_id) &&
(t1.delta_n==t2.delta_n) &&
(t1.delta_secs==t2.delta_secs);
}
};
int main()
{
hash_set<trip, hash_trip, eq_trip> trips;
trip t = trip(3,2,-1);
trip t1 = trip(3,2,0);
trips.insert(t);
}
</code></pre>
<p>when I try to compile it, I get the following error message:</p>
<pre><code>/usr/include/c++/4.2.1/ext/hashtable.h: In member function ‘size_t __gnu_cxx::hashtable<_Val, _Key, _HashFcn, _ExtractKey, _EqualKey, _Alloc>::_M_bkt_num_key(const _Key&, size_t) const [with _Val = trip, _Key = trip, _HashFcn = hash_trip, _ExtractKey = std::_Identity<trip>, _EqualKey = eq_trip, _Alloc = std::allocator<trip>]’:
/usr/include/c++/4.2.1/ext/hashtable.h:599: instantiated from ‘size_t __gnu_cxx::hashtable<_Val, _Key, _HashFcn, _ExtractKey, _EqualKey, _Alloc>::_M_bkt_num(const _Val&, size_t) const [with _Val = trip, _Key = trip, _HashFcn = hash_trip, _ExtractKey = std::_Identity<trip>, _EqualKey = eq_trip, _Alloc = std::allocator<trip>]’
/usr/include/c++/4.2.1/ext/hashtable.h:1006: instantiated from ‘void __gnu_cxx::hashtable<_Val, _Key, _HashFcn, _ExtractKey, _EqualKey, _Alloc>::resize(size_t) [with _Val = trip, _Key = trip, _HashFcn = hash_trip, _ExtractKey = std::_Identity<trip>, _EqualKey = eq_trip, _Alloc = std::allocator<trip>]’
/usr/include/c++/4.2.1/ext/hashtable.h:437: instantiated from ‘std::pair<__gnu_cxx::_Hashtable_iterator<_Val, _Key, _HashFcn, _ExtractKey, _EqualKey, _Alloc>, bool> __gnu_cxx::hashtable<_Val, _Key, _HashFcn, _ExtractKey, _EqualKey, _Alloc>::insert_unique(const _Val&) [with _Val = trip, _Key = trip, _HashFcn = hash_trip, _ExtractKey = std::_Identity<trip>, _EqualKey = eq_trip, _Alloc = std::allocator<trip>]’
/usr/include/c++/4.2.1/ext/hash_set:197: instantiated from ‘std::pair<typename __gnu_cxx::hashtable<_Value, _Value, _HashFcn, std::_Identity<_Value>, _EqualKey, _Alloc>::const_iterator, bool> __gnu_cxx::hash_set<_Value, _HashFcn, _EqualKey, _Alloc>::insert(const typename __gnu_cxx::hashtable<_Value, _Value, _HashFcn, std::_Identity<_Value>, _EqualKey, _Alloc>::value_type&) [with _Value = trip, _HashFcn = hash_trip, _EqualKey = eq_trip, _Alloc = std::allocator<trip>]’
try.cpp:45: instantiated from here
/usr/include/c++/4.2.1/ext/hashtable.h:595: error: passing ‘const hash_trip’ as ‘this’ argument of ‘size_t hash_trip::operator()(trip)’ discards qualifiers
</code></pre>
<p>What am I doing wrong?</p>
http://stackoverflow.com/questions/1359863/working-example-for-a-remote-osgi-service0Working example for a remote OSGI serviceHarsha2009-08-31T23:28:28Z2009-09-02T09:29:41Z
<p>Hi ,</p>
<p>I am new to programming with OSGI. Can anyone provide me a working example of a client/server osgi service invocation.</p>
<p>I have been trying to acheve this for the last 2 weeks without any success. </p>
<p>My service is being discovered and executed by an eclipse instance in the same machine, but when I try the same thing from another machine it fails.</p>
<p>Any help will be appreciated.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/197070/eclipse-abstract-syntax-tree-programmatic-access2Eclipse Abstract Syntax Tree Programmatic AccessJ G2008-10-13T09:09:28Z2009-08-29T10:14:20Z
<p>Could you provide an example of accessing the Eclipse Abstract Syntax Tree programmatically for a given piece of code?</p>
<p>eg getting the AST for:</p>
<p><hr /></p>
<h2>Class1.java</h2>
<pre><code>package parseable;
public class Class1 {
/**
* @param args
*/
public static void main(String[] args) {
System.out.println("Hello world!");
}
</code></pre>
<p>}</p>
http://stackoverflow.com/questions/196216/struts-setup-sample-application-on-eclipse0struts setup sample application on eclipsealan2008-10-12T22:27:03Z2009-08-20T15:00:03Z
<p>Hi there, </p>
<p>I am new to strut/web programming and I thought I could learn alot by reading a sample app.</p>
<p>On google, I searched and found a sample app at</p>
<p><a href="http://www.roseindia.net/struts/struts2/struts2tutorial.zip" rel="nofollow">http://www.roseindia.net/struts/struts2/struts2tutorial.zip</a>
The tutorial is really nice and it gives a sample login page.</p>
<p>However, I couldn't run this sample app.
I tried posting on the roseindia.net site and got no help either.</p>
<p>There is no error logged during the start of the server,</p>
<p>but when I try and open one of the helloworld's link the following is outputted</p>
<p>I am getting this error</p>
<pre>SEVERE: Could not find action or result
There is no Action mapped for action name HelloWorld. - [unknown location]</pre>
<p>The folder structure of this thing on my eclipse is</p>
<p>/WebContent/WEB-INF/java/net/roseindia/Struts2HelloWorld.java</p>
<p>/WebContent/pages/HelloWorld.jsp</p>
<p>/WebContent/WEB-INF/struts.xml</p>
<p>while in strut.xml the sample had..<br />
</p>
<pre><code> <action name="HelloWorld" class="net.roseindia.Struts2HelloWorld">
<result>/pages/HelloWorld.jsp</result>
</action>
</code></pre>
<p>I am suspecting something in the strut.xml is wrong?</p>
<p>I am using eclipse J2EE and tomcat6</p>
<p>I have already tried posting on roseindia's site and got no help.</p>
http://stackoverflow.com/questions/82950/using-yahoo-pipes1Using Yahoo! Pipeskooshmoose2008-09-17T13:07:39Z2009-07-31T20:49:58Z
<p>Have you used <a href="http://pipes.yahoo.com/pipes/" rel="nofollow">pipes.yahoo.com</a> to quickly and easily do... anything? I've recently created a quick <a href="http://pipes.yahoo.com/kooshmoose/stackoverflow_merge" rel="nofollow">mashup of StackOverflow tags</a> (<a href="http://pipes.yahoo.com/pipes/pipe.run?_id=NIlbqD_E3RGfAAUWpgt1Yg&_render=rss" rel="nofollow">via rss</a>) so that I can browse through new questions in fields I like to follow.</p>
<p>This has been around for some time, but I've just recently revisited it and I'm completely impressed with it's ease of use. It's almost to the point where I could set up a pipe and then give a client privileges to go in and edit feed sources... and I didn't have to write more than a few lines of code.</p>
<p>So, what other practical uses can you think of for pipes?</p>