Hello,
I'm looking for some source code implementing 3d convolution. Ideally, I need C++ code or CUDA code. I'd appreciate if anybody can point me to a nice and fast implementation :-)
Cheers
Hello,
I would like to understand the reason why the default template arguments are only allowed on a class template?
why in the member function we cannot define default type?
example:
class mycclass{
template<class T=int>mymember(T *vec){
vec=NULL;//or something
}
}//C++ forces that:default template arguments are only allowed on a class template
kind regards
Arman.
Hello,
I have a word document that was saved as xml. now I need to open it in my html page, but the problem is that it's no longer a .doc!, it's .xml, and it won't open.
Any ideas?
TY
Hello there
I am working on a CMS project using ASP.Net 3.5/Visual studio 2008.This is the first week of the project and I am working on the design of the system right now.
Needless to say that this is my first project of this scale and I have no idea of what I am doing.
The requirements of the project ask for a light but functional CMS, one which is easy to deploy.So the question is which database to use in this scenario SQLCE or SQLite?
Please Help?
Hello all,
It seems to me that this should work but I cant see what exactly is the problem.
The error Im receiving is "DDROA is not defined"
Could anyone help enlighten me.
var DDROA = {
AllowedRoutes : {
AR0 : {text : 'SomeText', value : 'SomeValue'},
AR1 : {text : 'SomeText2', value : 'SomeValue2'}
},
RouteContext : {
RC0 : {text : 'None', value : '0',
AllowedRoutes : new Array(
DDROA.AllowedRoutes.AR0 // An error occurs here
)
}
}
}
Hello,
I am wondering when to use static methods? Say If i have a class with a few getters and setters, a method or two, and i want those methods only to be invokable on an instance object of the class. Does this mean i should use a static method?
e.g
Obj x = new Obj();
x.someMethod
or
Obj.someMethod
(is this the static way?)
I'm rather confused!
Hello,
I am trying to make my site look more professional by removing the html endings from the pages..
ex. just leaving at http://33tpm.com/es/tienda
All the answers Ive found so far are so confusing that I don't really understand anything..
Can someone please help me out?
Thank you
Thomas
hello. im trying to make an admin panel for my web. im not pro on php and i need some help here. i want to use checkboxes when accepting queued data. script need to get content id, name, url, addedby from table A and import to table B. how can i do this?
how to delete space between two words using c programme... should I use ascii or just compair with ''?
eg. Input- "Hello World" Output-"HelloWorld".
Thanks,
Vikram
Hello,
Does anybody know why when connecting two dial-up modems the maximum protocol you can use to stablish the communication is V.34 -33.6K?
I've read that you can connect with the server modems of the ISP using V.92 or V.90 and I would like to know if there is any explanation to this.
Thanks in advance.
Hello Guys,
I have two arrays A & B,I want to do a compare among the elements between the two arrays.
@a = "abc,def,efg,ghy,klm,ghn"
@b= "def,ghy,jgk,lom,com,klm"
if any element matches then set a flag 0 else 1.
Is there any simple way to do this.
please advise
Hello. I have Class1, which has methods:
1)setSomething()
2)createObjectOfClass2 ()
Now, when I create object of Class2, is it possible to call setSomething method from it?
Hello,
I'm creating a content management for a kind of Enterprises, lets say for example, pets shops.
Thats my projects structure:
PetShopModel
PetShopControllers
PetShopWeb1
PetShopWeb2
PetShopWeb3
The structure is that since each client would have different specifications.
Its that a good choice? or there are better solutions?
Thanks in advance and sorry about my english!
Hello! How you can use EPS files within your UIView. What do I have to do to display for example a EPS on the iPhone's screen? Do I need to convert it first to a PDF (if yes, how?)?
Or are there any other way to bring vector graphics onto the iPhone? That would be very nice. Thanks.
Hello All...
I am just entered into the Blackberry Arena..
I am using Eclipse Plugin for running my testing application to simulator.
So, In my code somewhere I have add System.out.println("Print"); statements, but by debugging or running app to simulator, I couldn't find any log statements printed to eclipse console.
Is there anything that I need to take care for using println() methods ?
Thanks in advance...
Hello, everyone!
Please point me to some tutorials or other explaining examples about how to register and use modification listeners with Java's DOM implementation.
On the web I find only Javascript examples.
My target is to get to know when a Node was modified.
Hello,
I am using the <cfinput type="datefield"> and I need to limit the dates that can be chosen. I cannot allow a date that can be selected in the past. Any help here?
Thanks!
Hello !
I've got an apache server and I configured on it Xdebug.
I set as xdebug.remote_host my IP address so it looks like:
xdebug.remote_host=192.168.0.101
But I would like other computers also would be able to use Xdebug - how to set a few IP addresses from LAN ?
Hello,
I have two (Eclipse-) projects. Project A depends on project B, but the projects aren't nested i.e. project A is not a subproject of project B. Apache Ivy is responsible for the dependency management.
When I run the compile task in Project A, is there any way to trigger the compile task (in project B) automatically (for example if the jar file of project B doesn't exist)?
Thanks a million in advance.
Hello,
I want to replace only the first matching element in a string instead of replacing every matching element in a string
$str = 'abc abc abc';
$find = 'abc';
$replace = 'def';
echo mb_ereg_replace( $find, $replace, $str );
This will return "def def def".
What would I need to change in the $find or $replace parameter in order to get it to return "def abc abc"?
Hello all,
I'm trying to print a table with a lot of columns, so that the width of the table doesn't fit a single page.
I'm using jqprint to print that table. But it prints only the left part of the table, and the right part it won't print.
Is there a way to print the table on multiple pages?
Kind regards,
Bruno
hello, I have a project with git, and I just want to clone or pull a specific directory, like myproject/javascript just like subversion does.
make some changes, commit and push back again.
It's possible?
Hello colleagues!
Googling today I couldn't found sample or mentioning of best practice: how to escape user input in Struts2.
Of course I can manually convert characters on validate() method, but it looks too obvious. So may be exists some automation to avoid code/script injection?
Hello
How can I measure programicaly (not query the OS, but measure) the size and order of associativity of L1 and L2 caches (data caches)?
Assumtions about system: It has L1 and L2 cache (may be L3 too, may be cache sharing), It may have a hardware prefetch unit (just like P4+), it has a stable clocksource (tickcounter or good HPET for gettimeofday).
There are no assumtions about OS (it can be Linux, Windows, smth non-standart), and we can't use posix queries.
Language is C. And Compiler optimizations may be disabled.
Hello all, I have recently started learning C++ but I require a compiler. I have tried the one packaged with Code::Blocks but I have been told it is out of date. I have tried reading the instructions on the website but I simply don't know which files to download and un-zip. Does anyone know of a list of files to download? (latest version) and a folder structure I need? thanks in advance, ell.