boris callens
|
Registered User
|
Junior programmer. Belgium based. |
|
1d |
comment |
Very fast cache / access time-indexed data in c# Could you give us an example? |
|
2d |
revised |
How to set css position absolute for Firefox and Chrome and relative for IE added 11 characters in body |
|
2d |
comment |
How to set css position absolute for Firefox and Chrome and relative for IE What? Could you give a bit more information? An example maybe? |
|
2d |
revised |
How to protect the source of a delphi app? "goole", is a belgian television presenter. That made me smile |
|
2d |
comment |
Why is this instance initiated by Unity not a singleton? Thanks for pointing me in the right direction for instantiating my singleton types. Together with the answer of this question I got what I needed |
|
2d |
comment |
Why is this instance initiated by Unity not a singleton? Thanks for the answer. Could you explain why I shouldn't be using var? As far as I'm aware it's basically the same as writing the type in full, only now my compiler will fill in the gap at compile time and my code becomes less cluttered. Or is there a catch I'm forgetting? |
|
2d |
comment |
Why is this instance initiated by Unity not a singleton? All my constructors accept an ISearchService. There is no mentioning of LuceneSearchService, yet the logs aren't making this up... |
|
2d |
asked | Inject into attribute? |
|
2d |
comment |
Parameterized controller constructor never gets hit Thanks. I haven't had time for this pet project lately, but next week I will have some time to spare I think. I will definitely check it out then. Thanks :) |
|
2d |
asked | Why is this instance initiated by Unity not a singleton? |
|
2d |
comment |
Lifetime management in mvc turbine? Thanks. In the mean time I had found out that I could create my container myself. But because my services need other services that are not autodiscovered when I create my container I now have to do the entire registration myself. Which is a bummer. Anticipating V3 :D Also: I want to thank you for Turbine. I finally got the hang of a concept I was trying to grasp for months now :) |
|
Dec 17 |
revised |
Lifetime management in mvc turbine? specify |
|
Dec 17 |
asked | Lifetime management in mvc turbine? |
|
Dec 17 |
revised |
Could not resolve serviceType [controller name] added 264 characters in body |
|
Dec 17 |
comment |
Could not resolve serviceType [controller name] As far as I understand the DI concept, the controller shouldn't need a registration. I found the solution though. I'll put it in OP |
|
Dec 17 |
asked | Could not resolve serviceType [controller name] |
|
Dec 17 |
comment |
Why does my http response body suddenly contain a load of gibberish? I searched my entire solution for "compres" and found a forgottan and unused (find usages didn't return a thing) HttpCompressionModule.cs which I removed. In combination with removing all references to the actual compression module I'm using (blowery.Web.HttpCompress) did the trick. Checking the response it is still gzipped. My only guess is that turbine already adds compression somewhere. |
|
Dec 17 |
comment |
Why does my http response body suddenly contain a load of gibberish? Double check. Also removed all the bins |
|
Dec 17 |
comment |
Why does my http response body suddenly contain a load of gibberish? Yes, that was my first idea too. Thus I removed the reference to my compression module and removed all traces from web.config. To no avail :s |
|
Dec 17 |
asked | Why does my http response body suddenly contain a load of gibberish? |
|
Dec 16 |
comment |
Truncate tables? Because then I would need to go over all my tables one by one. The script I need is some generic script that works on whatever tables there are in my entire database |
|
Dec 16 |
comment |
Table with unknown number of columns yes, off course. thanks |
|
Dec 16 |
comment |
Table with unknown number of columns I like that you're thinking out of the box, but I think since this will be a system consumable by many different kinds of projects in many different kinds of languages, supported by many different kind of programmers that I would like to keep it oldskool ;) |
|
Dec 15 |
asked | Table with unknown number of columns |
|
Dec 15 |
awarded | ● Notable Question |
|
Dec 15 |
revised |
Truncate tables? added 1 characters in body |
|
Dec 15 |
comment |
Truncate tables? Wipe data. I'm just funking around with this thing so I want each try to start off with a clean sheet. |
|
Dec 15 |
asked | Truncate tables? |
|
Dec 15 |
comment |
Cross-server SQL A bit late, but I only now revisited this question and yes, this looks like an answer to my question. Although by now I realise my question should have been the question to the answer that I selected. All getting a bit complicated... |
|
Dec 14 |
comment |
How to detect if page load in newly-started browser process fails? Didn't know about that. Looks worth checking out. |
|
Dec 14 |
comment |
How to detect if page load in newly-started browser process fails? Could you give us a bit more information? It would for example help a lot if you would tag your question with the technologies you are using. |
|
Dec 13 |
revised |
Parameterized controller constructor never gets hit syntax |
|
Dec 12 |
awarded | ● Popular Question |
|
Dec 10 |
revised |
Parameterized controller constructor never gets hit improved formatting |
|
Dec 10 |
comment |
Parameterized controller constructor never gets hit I can indeed try it. Although I fear my programmer's experience isn't at that level yet, I have downloaded the Turbine source now in the hope I can maybe see what's going on and fix it. If I find anything I will update OP |
|
Dec 9 |
awarded | ● Popular Question |
|
Dec 9 |
revised |
Parameterized controller constructor never gets hit typo |
|
Dec 9 |
revised |
Parameterized controller constructor never gets hit Correctly referenced Thomas Eyde's post |
|
Dec 9 |
comment |
Parameterized controller constructor never gets hit after testing it out, it didn't work after all. Please ref update in OP. |
|
Dec 9 |
revised |
Parameterized controller constructor never gets hit update |
|
Dec 9 |
comment |
Parameterized controller constructor never gets hit 2 (beta) I know it's not officially supported, but I don't think that's the problem here. |
|
Dec 9 |
comment |
Parameterized controller constructor never gets hit Ah yes, that probably fills in the gap :) Thanks |
|
Dec 8 |
revised |
Parameterized controller constructor never gets hit updated |
|
Dec 8 |
comment |
Parameterized controller constructor never gets hit @Magnus: Yes, it is inheritting from TurbineApplication. The weird thing is that the IRouteRegistration is picked up fine. |
|
Dec 8 |
revised |
Parameterized controller constructor never gets hit moved full exception to pastebin |
|
Dec 8 |
comment |
Parameterized controller constructor never gets hit Also, any hints on formatting this exception would be nice. I posted a related issue on meta: meta.stackoverflow.com/questions/32264/… |
|
Dec 8 |
revised |
Parameterized controller constructor never gets hit added 46 characters in body |
|
Dec 8 |
asked | Parameterized controller constructor never gets hit |
|
Dec 8 |
comment |
How can I make this LINQ search method handle more than two terms? For case insensitve contains you might want to check this out: stackoverflow.com/questions/444798/… |
|
Dec 7 |
comment |
Am I wrong in wanting to roll my own Authenticate / Authorize system given the following requirements? You are probably right. From an architectural POV I would prefer them separated, but usage would dictate them to be together. |
