I want to compile ntop under Win32. I download all files but at compile time
many classes are missing?
Where could I find all needed source files for ntop?
I'm trying to get this to work:
def emptyCond: Parser[Cond] = ("if" ~ "(") ~> regularStr <~ ")" ^^ { case s => Cond("",Nil,Nil) }
where regularStr is defined to accept a number of things, including ")". Of course, I want this to be an acceptable input: if(foo()). But for any if(x) it is taking the ")" as part of the regularStr and so this parser never succeeds.
What am I missing?
SELECT content FROM html WHERE url="http://en.wikipedia.org/wiki/List_of_United_States_National_Parks_by_state" AND xpath="//a/text()"
does not work, whereas
SELECT * FROM html WHERE url="http://en.wikipedia.org/wiki/List_of_United_States_National_Parks_by_state" AND xpath="//a/text()"
does.
SELECT content FROM html WHERE url="http://en.wikipedia.org/wiki/List_of_United_States_National_Parks_by_state" AND xpath="//a"
also works, it seems YQL has a bug, or am I missing something?
I execute the following command:
phonegap create hello com.example.hello HelloWorld
and receive the following:
[phonegap] missing library com.example.hello/www/3.4.0
[phonegap] downloading https://github.com/phonegap/phonegap-app-hello-world/archive/3.4.0.tar.gz...
[phonegap] the options /Users/schwartzj/Documents/developer/phonegap/hello com.example.hello HelloWorld
[Error: SELF_SIGNED_CERT_IN_CHAIN]
[error] SELF_SIGNED_CERT_IN_CHAIN
Has anyone out there encountered this problem? I received the same error when first attempting to install phone gap, but I was able to resolve it then.
I’m implementing a simple HttpModule, where I want some code to run when the web application is started. But I’m surprised to find that the Application_Start event I would normally use from Global.asax is not available from a HttpModule. Is that correct, or am I missing something here?
How do I hook into the Application_Start event from an HttpModule?
Hello i am using vim and snipMate i very times i need to name the html files to php, just because 1 or 2 lines of code.
I every time i create an php file no introduce html and i have to activate the html snippets manually with the command
set ft=php.html
I intend to activate it automatically in this this line on my vimrc
autocmd BufREad, BufNewFile *.php set ft=php.html
Is this correct? I am missing anything or is something wrong?
Thanks already.
When i tried to connect to Apache Cassandra server using the php code i got an error "Fatal error: Call to undefined function uuid_make()". I can find that PHP UUID extension was missing in PHP installation. Can anyone please suggest from where i can download the DLL file for PHP installation in my Windows 7 Machine.
I was having troubles earlier while trying to declare a ChangeAction parameter in a method, with the IDE saying I might be missing a Namespace.
So I right click it and Resolve it and find that System.Data.Linq has been added and now everything is fine.
What is the difference between these two namespaces?
I'm not able to get WSDL to work, it giving me this error:
C:\Program Files\Microsoft.NET\SDK\v2.0\Bin>wsdl.exe /username:NOTGIVINGU/password:THEPASSWORD /v /parsableerrors http://www.stoysnet.com/stn_mfg/link/soap.php?wsdl
WSDL: error WSDL1: Unable to import binding 'Product' from namespace 'http://www.stoysnet.com/stn_mfg/link/soap.php?wsdl'.
Unable to import operation 'exists'.
The datatype 'http://www.stoysnet.com/stn_mfg/link/soap.php?wsdl:IDType' is missing.
The WSDL is located:
http://www.stoysnet.com//stn_mfg/link/soap.php?wsdl
Any ideas?
I have a simple test written like this
public class Test
{
[ThreadStatic]
private static ServiceClient client;
[TestMethod]
public void TestCase1()
{
If( client == null)
{
.... //instantiate client
}
client.CallMyServiceMethod()
}
[TestMethod]
public void TestCase2()
{
using(var newClient = new ServiceClient())
{
newClient.CallMyServiceMethod()
}
}
The percentage of new users is set to 100 % for the test, and the user load is constant load of 1.
But the response time for TestCase1 is about 3 times better than TestCase2.
Can someone see what i am missing here ?
many thanks
Is the WebAii framework still available and free? Am I just missing it?
After putting it off for too long, I've finally started automated UI testing on my current project. I had WebAii from ArtOfTest on my list to look at, but it looks like it's been killed off by Telerik and now they're asking $1500 for their new WebUI test studio. I can't find anything definitive on Telerik's site, too much marketing. But, it seems to be pretty clear.
I am pushing 2 view controllers in to navigation stack in ApplicationDidFinishLaunching.
[navigationController pushViewController:favorites animated:NO];
[navigationController pushViewController:root animated:NO];
The app loads fine, but on the start screen, the back button title is simply "Back". I do have a title for the FavoritesViewController, and a navigationItem title setup to Favorites.
Am I missing something?
Appreciate your help.
Hi,
since the new SDK 1.1 is missing the tutorial for "ASPProviders", i am currently asking myself how i would implement a "azure session state provider" ( this is the path in the "old" SDK: C:\Program Files\Windows Azure SDK\v1.0\Samples\AspProviders )
Related threads:
http://stackoverflow.com/questions/1023108/how-does-microsoft-azure-handle-session-state
http://social.msdn.microsoft.com/Forums/en-US/windowsazure/thread/2d1340ed-0ad0-456a-b069-aa6b85672102/
Has anyone an idea or even the old example project and could post some snippets of the config here?
I am having trouble including a module in a namespaced class. The example below throws the error uninitialized constant Bar::Foo::Baz (NameError). What basic piece of Ruby knowledge am I missing here?
module Foo
module Baz
def hello
puts 'hello'
end
end
end
module Bar
class Foo
include Foo::Baz
end
end
foo = Bar::Foo.new
Are there any inversion of control frameworks for javascript?
The closest answer available on stackoverflow that I could find is here: http://stackoverflow.com/questions/619701/wiring-code-in-javascript . It looks like a great start, but I thought I'd be able to find something with a longer development history.
I've only used Castle Windsor myself, and I am really missing it in web-client land.
Using the NuGet package manager dialog at the solution level in the normal course of updating a package reference once the process is complete there is a green tick on the item and the update button disappears. However, with certain of my packages the update process completes, as far as I can tell successfully, but no green tick and the update button remains. Press it again and the next dialog shows that no projects require an update for that package.
Am I missing something here or is this a bug?
I have a formula which is working; the formula uses an array. I tried to extract the formula to create a custom formula but now get an error in the syntax.
I am wondering if the array is causing the problem as the error is on the line:
last_element_current:=val(sc_array[1]) + 1;
and the error is: the ) is missing and highlights the variable sc_array before the index [1].
Hi everyone,
I want to add service reference to SQL reporting services on local machine. In Reporting Service Configuration Manager under Web Service URL tab I have report service URL exposed, I have tried to add web reference to project with that Web Reference URL, but it can not be found.
Please tell me am I missing something or is this right way to to?
Thanks a lot.
Hi there guys! I'm starting out learning some ASP.Net programming and I'm going to be making a little community website for my friends and myself.
I'm trying to pick up some good habits along the way.
I was thinking of having a usercontrol and have that 'loginBox' shows the appropriate textboxes and login button, but also show his username when he is logged in.
Do you think I should handle this as a user control or am I missing something as an ASP.Net newbie?
I'm probably missing something obvious here, so apologies in advance!
Using Rhino Mocks, how do I set an expectation that a method taking an Action will be called, but I want to use IgnoreArguments. Obviously I can't specify null as that isn't an Action, and I dont want any meaningless code in the test.
As I said, it's probably obvious by the syntax is eluding me at the moment!
I'm trying to send an email using classic asp and cdonts on a Windows Server 2003 machine.
But I'm guessing the SMTP service needs to be running. Unfortunately it's asking for teh SP1 disk...which apparently has gone missing. I'm guessing not but is there any other way of doing this?
Thanks,
I noticed following usage of negate (!) in our code base, like:
int GetIntFromRegistry();
bool bok = !!GetIntFromRegistry();
I am really curious about the usage of !!, it you want to cast the type from int to bool, why not just cast it explicitly use (bool), or static_cast.
Is there anything I am missing?
Why is this query returns 0 lines?
There is a record matching the arguments.
Deafkaw.Where(p =>
(p.ImerominiaKataxorisis >= aDate &&
p.ImerominiaKataxorisis <= DateTime.Now) &&
(p.Year == etos && p.IsYpodeigma == false)
).ToList();
Am i missing something?
I am building a SL3 + RIA application in VS2008. When compiled the application in debug mode it compiles fine with out any error, but when I compile the same application with out any code change in release mode I get an error
'The type of namespace name 'BusyIndicator' does not exist in the namespace 'System.Windows.Controls' (are you missing an assembly reference).
All the errors are coming from the generated code name.g.cs
Just curious anyone run into this problem.
I want to create a Class, say MyDiv, which inherits from the original DOM DIV element.
Later in my code I would like to use it like that:
$('a-container').adopt(new MyDiv('my own set of params'));
I am missing the exact syntax to do it.