Petriborg

384
reputation
148 views

Registered User

name Petriborg
member for 1 year
seen 11 hours ago
website
location Washington DC
age 29
Perl, Python, Java, and C/C++ hacker. Currently hacking on an embedded Linux platform with a distribute platform.
11h
revised Is there a Queue (PriorityQueue) implementation which is also a Set?
fixing; added 4 characters in body
11h
comment Is there a Queue (PriorityQueue) implementation which is also a Set?
@Mauli The PriorityQueue is a heap sorted list, I'm pretty sure the Set backing is either a Hash or Red & Black Tree backing depending on which implementation you pick, so you can either have O(n) time contains search or a O(log n) or O(1) hash lookup so you're right in that reguard I'll update the answer...
1d
comment Is there a Queue (PriorityQueue) implementation which is also a Set?
@dfa The objects are shared between the queue and the set... its just their references get stored in two sets... My suggestion is the exact same one as @Andreas_D - its a very common solution used in Java's Collections work. If Java's Collections where easier to extend and create your own it wouldn't be so hackish...
2d
answered Is there a Queue (PriorityQueue) implementation which is also a Set?
2d
comment Sqlite API boolean access
Yes used, like this #define SQL "UPDATE example SET ex_col='true';" and then this stmt gets called normally. The sql code does the same, so I guess I need to just do everything as string (yum) or change the column type to Int instead, no pretty solutions here!!
2d
comment Sqlite API boolean access
They didn't have to fetch the boolean column in C code previously, so it wasn't being done. What they had are a lot of #defines for sql stmts (ins, upd, etc) and a whole bunch of views and triggers... basically the value is never directly read or inserted. :-/
2d
asked Sqlite API boolean access
Oct
14
comment How to get File within’ package, in an Android application
You mean you're trying to read it out of the jar file itself right?
Aug
26
awarded  Yearling
Aug
20
awarded  Critic
Aug
10
answered Learning PostgreSQL
Aug
10
answered create an array from a txt file
Aug
10
comment create an array from a txt file
greg - what version of python are you using that the csv.reader function takes a delimeter arguement? My python 2.6 doesn't do that, was it added in python 3?
Aug
6
comment Code Golf: How do I write the shortest character mapping program?
Hacked account? Spam? this is weird. Why are you not just putting the code in the answer, this domain doesn't exist and is "for sale", so I conclude this is spam...
Aug
6
awarded  Citizen Patrol
Jul
29
answered How to make Hibernate only query the default mapping?
Jul
14
answered Changing the type of an entity preserving its ID
Jul
14
answered JPA/Hibernate - Embedding an Attribute
Jul
14
awarded  Commentator
Jul
14
comment JPA/Hibernate - Embedding an Attribute
@skaffman - I think you need to move the @Embedded tag to the parent class and use the @MappedSuperclass... possibly?
Jul
13
comment Handling creation of ORM objects prior to persistence/generation of primary keys?
I think it would - I have a lot of these sort of links in my own stuff and having each table generate its own id and then having FKs all over works pretty well for me.
Jul
13
answered Handling creation of ORM objects prior to persistence/generation of primary keys?
Jul
13
comment Handling creation of ORM objects prior to persistence/generation of primary keys?
Nemo - I thought you weren't allowed to have generated Ids in a EmbeddedId (aka composite) keys...
Jul
6
answered Passing data types from C++ to Java/Java to C++
Jul
5
revised Swig c++ w/ Java loses type on polymorphic callback functions
deleted 361 characters in body
Jul
5
answered Swig c++ w/ Java loses type on polymorphic callback functions
Jul
3
revised Swig c++ w/ Java loses type on polymorphic callback functions
added 423 characters in body
Jul
3
revised Swig c++ w/ Java loses type on polymorphic callback functions
More details...
Jul
3
revised Swig c++ w/ Java loses type on polymorphic callback functions
adding system info
Jul
3
revised Swig c++ w/ Java loses type on polymorphic callback functions
added link to question base
Jul
3
revised Swig c++ w/ Java loses type on polymorphic callback functions
edited title
Jul
3
revised Swig c++ w/ Java loses type on polymorphic callback functions
edited body
Jul
3
asked Swig c++ w/ Java loses type on polymorphic callback functions
Jun
27
revised How to change XML based on regex matches to text (character data)
total rewrite
Jun
26
comment Please explain this strange output.
Youre printf calls need endline on them....
Jun
26
comment JTable not returning selected row correctly
I guess it depends on how much of that functionality you need of course! 90% of the time for me I only need to be able to addRow() and sometimes moveRow(). I'll admit that if you need to be able to add columns as well as rows it gets more complex.
Jun
25
revised JTable not returning selected row correctly
added 249 characters in body
Jun
25
comment JTable not returning selected row correctly
You're selecting them again as a user after the replace(cells) call, and it still returns an index of -1?
Jun
25
revised JTable not returning selected row correctly
deleted 4 characters in body
Jun
25
answered JTable not returning selected row correctly
Jun
23
answered How to change XML based on regex matches to text (character data)
Jun
23
answered Is my DAO strategy ok?
Jun
22
comment finding weak reference objects in collections in java
Oh nice that trick with Collections is cool, definitely useful.
Jun
22
asked finding weak reference objects in collections in java
Jun
22
answered Should I add a new SVN repository or a new folder ?
Jun
21
answered Hibernate ordering
Jun
20
answered How do I know which contract failed with Python’s contract.py?
Jun
19
comment Hibernate findById isn’t finding records that it previously found
I don't think an update could hid the object, I would think it would just appear "out of date" assuming you didn't change the key... Note that I do a lot of multi-thread jdbc (and now hibernate since we're converting over) work, and I have seen similar problems in our program. Always the problem turned out to be as I described, it was just a matter of finding the syncing problem.
Jun
19
answered Hibernate findById isn’t finding records that it previously found
Jun
18
revised Display Hibernate Query in JTable
more typo