Can somebody explain me lambda expressions & what they can be used for. I have googled for it & have a rough idea. most of the examples give c# code. How about lambda expressions in plain old C...?
I have a very little idea about what database file system is.
Can somebody out here explain to me what actually a database file system is, and what its applications are?
How is it different from a conventional file system?
How I can build it?
class attrdict(dict):
def __init__(self, *args, **kwargs):
dict.__init__(self, *args, **kwargs)
self.__dict__ = self
a = attrdict(x=1, y=2)
print a.x, a.y
b = attrdict()
b.x, b.y = 1, 2
print b.x, b.y
Could somebody explain the first four lines in words? I read about classes and methods. But here it seems very confusing.
hello,
i want a mysql connection with c++ to my db ofcourse :P, i downloaded the files here:
http://tangentsoft.net/mysql++/
But im not succesfull to install it and get the librarys in the c:/mysql++ folder.
can somebody help / do it for me and upload it :).
THNX!
greetz
stefan
Hi all, I have the following code:
public ActionResult SomeAction()
{
return new JsonpResult
{
Data = new { Widget = "some partial html for the widget" }
};
}
I'd like to modify it so that I could have
public ActionResult SomeAction()
{
// will render HTML that I can pass to the JSONP result to return.
var partial = RenderPartial(viewModel);
return new JsonpResult
{
Data = new { Widget = partial }
};
}
is this possible? Could somebody explain how?
I need to create a currency mask. I did lines of command and it's works fine, but when i set the value in textfield, occurred infinit loop. I monitoring the textfield with Editing Changed behavior, to catch each caracter that the user set, but when i try to change the text value, the infinity loop happens. :(
Somebody have a simple code?
Hi,
I am trying to get mobile phone number from Android contacts. I found several examples using People.NUMBER, but it seems that brings home phone number not MOBILE phone number. I want to accomplish this using old way instead of using ContactsContract. Can somebody show simple code example how this can be done?
Thank you very much.
Hi,
I want to access some of the wpf designer services (ModelService/EditingContext) from a visual studio toolbox package. Can somebody help me with that?
Thanks,
Sudarsan Srinivasan
The use case is some what like this:
public class SomeClass: IClonable
{
// Some Code
//Implementing interface method
Public object Clone()
{
//Some Clonning Code
}
}
Now my question is "Why is it not possible to use "SomeClass(As it is derivd from objec)" as a return type of Clone() method if we consider the Funda's of Covariance and Contravariance.
Can somebody explain me the reason behind this implemementaion of Microsoft ????
I want to build the toolchain for iphone on the snow leopard.I search on google and the answer is always for leopard.I replant it on snow leopard but there are some error.I can't build it.Does somebody had build it?
How can I change my avatar on stackoverflow.com? I click the change picture link in my profile but it link to gravatar website, then I select the picture for my gravatar associated with my email.
But my avatar on stackoverflow.com still not changes after 24hours as announced.
Somebody has a work-around? Please help!
Can somebody help me to suggest how can I get the play list from the youtube URL:
this is the URL :
http://www.youtube.com/CalgaryStampede1912
And I want to get the playlist or the first 2 videos from this video category with jQuery .
Or there is some jQuery plugin for that ...
Thank You !!!!!
Hello Everyone
I'm playing around with Entity Framework 4 and code only. The tutorial I'm following is using the Beta-Version of Visual Studio 2010 and is referring to Microsoft.Data.Entity.Ctp.
Since I'm working with the final release of Visual Studio the name of the dll must have changed.
Can somebody tell me how its name is now?
Cheers, AC
Hello,
I have an Adorner and I want that Adorner to be able to receive keyboard events, but I'm having problems with those whole focus stuff. Can somebody please tell, what has to be done to make an adorner able to receive keyboard events? Thank you very much for any help!
I am not been able to update any of the attributes in one of my feature classes using the Arc FM Attribute editor, but I am able to update it thru the ESRI Attribute editor.
Please lemme know if somebody knows the reason.
I am using Arc SDE 9.3.1 with ArcFM 9.3 and ArcMap 9.3
Note:I am in selection Tab and not in Target tab.
Please let me know if sombody can figure out the reason.
Vinay
[email protected]
Could somebody please explain to me why people warn about commit conflicts occuring from a rebase operation?
I tried reading about this by searching google but had some trouble understanding. If it matters, I am using ClearCase revision control.
I was wondering if somebody could highlight the advantages of programming in F# in comparison to my regular object-oriented programming language such as C#.
PS: Sorry if I sound like a person who just got out of the cave.
Windows 7 computer running SQL Server Express 2008.
When I try to run net start mssql$sqlexpress I receive an error:
System error 5 has occurred.
Access is denied
The SQL service is running under "Network Service" account
The service starts fine if I use the services window. Could somebody help me figure out why I am receiving this error?
Hi,
How can I do long-polling using netty framework? Say for example I fetch http://localhost/waitforx
but waitforx is asynchronous because it has to wait for an event? Say for example it fetches something from a blocking queue(can only fetch when data in queue). When getting item from queue I would like to sent data back to client. Hopefully somebody can give me some tips how to do this.
Many thanks
Hello.
I know it is possible by using MOSS + InfoPath to create and use custom document information panel.
However is it possible to write custom InfoPath xml schema and then add it to Content Type definition programmatically or declaratively... Is that possible? Maybe somebody tried something like that?
Hi everybody,
Does somebody know how ICU Charset Detector's data is built. And is it difficult to add additional languages?
For example, I saw in the bug tracker that a ticket for the detection of Thai is opened since 2007 but nothing new until today.
Thanks
I have been having huge issues with this, so I drew a diagram...
I successfully get to the CLASS A - METHOD B but at that point, IBOutlet Z is Nil? :(
Any ideas?
note
Somebody told me it might be an Overrelease and to use NSZombieEnabled but that confused me
Somebody tell me:
class MyClass {
private static MyClass myClass = new MyClass();
private static final Object obj = new Object();
public MyClass() {
System.out.println(obj); // will print null once
}
}
I wonder, isn't this a bug? Why static objects are not initialized before the constructor runs?