1
vote
2answers
96 views
Transform this Clojure call into a lazy sequence
I'm working with a messaging toolkit (it happens to be Spread but I don't know that the details matter). Receiving messages from this toolkit requires some boilerplate:
Create a …
0
votes
0answers
61 views
NHibernate: Lazy load a collection of data from a service, not the database
My domain objects support custom fields that are stored in such a way that requires metadata and logic to be applied before their values can be stored and retrieved.
I already h …
0
votes
1answer
112 views
Hibernate: Projection of a many-to-one in a Criteria
Hi all,
I am playing around with the hibernate Criteria API for the first time recently.
I was trying to do the equivalent of this HQL
"select t.userTbl from Task t"
userTbl pr …
0
votes
0answers
29 views
Lazy load on wordpress pages
I've installed the lazy load plugin which uses jquery for wordpres on my site http://www.martiningolf.dk, but it only loads in the blog section and not in the other parts of the si …
1
vote
2answers
228 views
How to Load images after page load completed in ASP.Net
Hi all,
I need to load images after page load completed in ASP.Net without using JQuery.
Is it possible to implement this feature only using asp.Net 3.5 and ASP.Net AJAX?
If it is …
0
votes
2answers
303 views
Android - Issue with lazy loading images into a ListView
This is a very common scenario: displaying images in a ListView which have to be downloaded from the internet.
Right now I have a custom subclass of ArrayAdapter which I use for t …
1
vote
6answers
662 views
What is the difference between lazy=”true” and lazy=”proxy” in nhibernate?
What is the difference between lazy="true" and lazy="proxy" in nhibernate?
0
votes
0answers
32 views
Is there a prefabricated magnifying glass cursor for SWT somewhere available?
I would like to use a "magnifying glass" (with + and -) cursor in my SWT application. I'm aware that it is pretty easy to create a cursor for oneself, I just don't want to invest t …
3
votes
2answers
273 views
F#: Why is using a sequence so much slower than using a list in this example
Background:
I have a sequence of contiguous, time-stamped data.
The data-sequence has holes in it, some large, others just a single missing value.
Whenever the hole is just a singl …
3
votes
12answers
2k views
SQL exclude a column using SELECT * [except columnA] FROM tableA?
We all know that to select all columns from a table, we can use
SELECT * FROM tableA
Is there a way to exclude column(s) from a table without specifying all the columns?
SELECT …
1
vote
5answers
490 views
Can StyleCop automatically fix anything?
I've decided to start running StyleCop on a medium sized project and am getting over 1000 warnings.
Is there a quick easy way to fix most of these warnings? Most of the warnings c …
1
vote
3answers
194 views
Force lazy entity to load real instance
I have a proxy for a lazy entity which has been created in the session by loading a child entity. A subsequent fetch on the parent entity only returns the NH proxy. I need the actu …
4
votes
4answers
149 views
In functional list manipulation, what do we call “inserting something between each item”?
Occasionally I find I need to process a list by inserting a new item after each item, except the last one. Similar to how you might put a comma between each item of a list of strin …
-1
votes
5answers
262 views
php implode explode can do it?
eg: existing data retrieve from db field: a,b,c,d,e
so now $data= "a,b,c,d,e";
eg: new data to be added--- cc, gg
final value saved into db will be $finaldatatobeupdatedintodb= "a …
5
votes
9answers
2k views
Thread safe lazy contruction of a singleton in C++
Is there a way to implement a singleton object in C++ that is:
Lazily constructed in a thread safe manner (two threads might simultaneously be the first user of the singleton - i …
