How do video playback speed at windows media player on any browser ?
Example: http://stackoverflow.com/questions/797723/accessing-windows-media-players-playback-speed-controls
How can i make sure my file serving is reliable and scalable? How many parallel request it can handle?
I am thinking beyond the hardware capability and band width.
i am following http://stackoverflow.com/questions/55709/streaming-large-files-in-a-java-servlet
dear friends,
referring to the code example of mine
http://stackoverflow.com/questions/2997703/android-remote-image-getting-problem
how can i accommodate bigger resolution images in android.
when i try to display bigger resolution image from internet it give me null bitmap.
any one guide me whats the solution?
any help would be appreciated.
I seem to recall hearing at some point (I believe it was MIX09) that Microsoft has a licensing model of some sort where a business can consume licenses for up to two years, free of charge, until they reach a point where they are stable position and can pay their licensing at the end of two years. However, I can't find information regarding it online.
I want to say that possibly stackoverflow used this licensing model to kick start their site. Is anyone familiar with this?
I read through this post:
http://stackoverflow.com/questions/741345/how-do-i-implement-direct-identity-based-openid-authentication-with-zend-openid
Why does it look so complicated to implement?
IMO, it's just to send request to a remote site and retrieve the response.
What's the problem those OpenID libraries are dealing with?
I am facing a problem on load pdf on browser. its working fine but slow in load. That's why i want to display a loading message / gif until it's fully loaded so the user isn't looking at a blank screen.
My question is same as previous question
http://stackoverflow.com/questions/1138232/html-embedded-pdfs-onload
Hi,
I had asked this question
http://stackoverflow.com/questions/2442149/adding-more-attributes-to-linq-to-sql-entity
Now, when I add Browsable attribute to generated entity in designer,it works.But,when I use the MetaDataType approach,and add Browsable attribute in partial class,it does not work
"I added a MetaDataType class, and added browsable attribute to property,but seems to have no effect"
I know very well about the traditional arguments about why Interface Inheritance is prefered to multiple inheritance, there has been already a post here :
http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance
But according to Stroutroup the real reason why Microsoft and Sun decided to get rid off multiple inheritance is that they have vested interest to do so: instead of putting features in the languages, they put in frameworks so that people then become tied to their platform instead of people having the same capability at a language standard level.
What do you think ?
I'd like to pass parameters to my C++ program in the following manner:
./myprog --setting=value
Are there any libraries which will help me to do this easily?
See also http://stackoverflow.com/questions/189972/argument-parsing-helpers-for-c-unix/191821
I posted a question a few days ago mentionning Spring's OpenEntityManagerInViewFilter:
http://stackoverflow.com/questions/2385858/uirepeat-inside-a-uirepeat-and-lazyinitexception
An obvious thing that should have been asked and now comes to mind is how to test for the presence of an EntityManager in a JSF project. What is a good way of doing this?
Hey stackoverflow :)
I wanna use webbrowser control in c++(im using dev cpp).
Ages ago when i was using VB6 i just added webbrowser control (C:\Windows\System32\shdocvw.dll) to my form and it worked but im lost in C++...
should i load it dynamically with LoadLibrary and then somehow put it on my dialog window or how? I also wanna use all features like navigate to page, edit html elements, submit a form, read page source, ...
Someome got some snippet?
Cheers
LEts say you have a normal textview, with "Stackoverflow" written in it, I would like to know if it it possible to rotate the textview about -90°, to have the S at the bottom and the W at the top of the screen?
of course, i could write my text in an image, rotate it and use it that way, but im interested in text right now.
thank you
I am curious to learn Boost. But i wanted to ask how important it is to learn.
What pre-requisite one should need before jumping on Boost.
Why i am curious to know about Boost is that many people are talking about Boost on IRC's channels and here in StackOverflow.
Thanks in advance.
I'm preparing a presentation about ASP.NET MVC and I'm searching for sites that use ASP.NET MVC in production.
The only site I know that makes use of ASP.NET MVC is stackoverflow :)
Any others?
Was the new ViewStateMode property introduced to avoid breaking the existing EnableViewState?
Does setting EnableViewState = false at the page level causee the ViewStateMode setting to be ignored?
PS: What is CW in stackoverflow?
There are plenty of questions on stackoverflow from people who have attempted to create an array of generics like so:
ArrayList<Foo>[] poo = new ArrayList<Foo>[5];
And the answer of course is that the Java specification doesn't allow you to declare an array of generics.
My question however is why ? What is the technical reason underlying this restriction in the java language or java vm? It's a technical curiosity I've always wondered about.
Relating to this question, http://stackoverflow.com/questions/117810/upload-files-directly-to-amazon-s3-from-asp-net-application, is there any way to do this and have a progress bar?
---- EDIT ----
Two days later and still no luck with a direct way. Found one thing that looks promising but not free: http://www.flajaxian.com/
Uses flash to upload directly to S3 with a progress bar.
This question is exactly the same as http://stackoverflow.com/questions/938462/can-i-prevent-mobile-safari-from-auto-rotating-the-screen-on-ipod-touch-or-iphone . Yet - the referenced question has no definite answer and has been prematurely accepted.
Hi all,
my first question on stackoverflow!!
I'm usgin the last NANT version: 0.90
How do i specify the lib names using the task?
Example: how do i link with the gtest.lib?
Morover i have a curisoity: why NANT doesn't allow an external property file?
Example:
It would be great if one of the developer answers.
Is there a ratio or is only not enough developing time?
I know this thread
http://stackoverflow.com/questions/216025/gcc-with-visual-studio
but to me it seems that everything mentioned there is rather outdated and it seems to be the tenor is: don't do it
Who knows a better step by step explanation
thank you in advance
Oops
There's a couple questions here on StackOverflow on the subject of threading with the Swing api but things still aren't clear. What is the issue with the EDT, what is the proper way to initiate a Thread with Swing and in what cases should it be used?
P.S: Any sources in terms of good practises would be appreciated.
This is kinda like my earlier question:
http://stackoverflow.com/questions/2451175/c-vector3-type-wall
Except, now, I want to do this to a builtin rather then a user created type.
So I want a type "Length" that behaves just like float -- except I'm going to make it's constructor explicit, so I have to explicitly construct Length objects (rather than have random conversions flying around).
Basically, I'm going into the type-a-lot camp.
I've used the code from the PDF rendering question
http://stackoverflow.com/questions/2883355/how-to-render-pdf-in-android
And it works! Props to the answerer, but my question is about doing that same thing but also sending a keyword to search in the pdf. I have no idea how to do this, should I set a flag? Any help would be greatly appreciated.
Please take a look at previous question:
http://stackoverflow.com/questions/2892343/c-and-c-library
After implementing a wrapper class library in C++/CLI as suggested before, I wonder now how to use C++ pre-compiled header file in C#.....?
PS: I did not find a dll file -or something simillar- to import to C# as I have expected...
Any hints?
I'm not satisfied with the answers given by the SOAP vs REST questions notably here:
http://stackoverflow.com/questions/106546/performance-of-soap-vs-xml-rpc-or-rest
because it's just general philosophical answers and not pragmatic answers with some study cases.
Nobody can give precise cases of when soap would be more suitable than rest, especially as for performance point of view ?
For example let's say I have a flash client for a financiall simulation wizard calling legacy code. Should I use SOAP or REST ? Why ?