hi all,
There is a problem in this code I can not detected
<?php echo "<a href ='$rows['Link']'> .$rows['UploadName']</a> "; ?>
Do you find you have a solution???
Thank you very much.
I'm in the process of writing a small lisp interpreter in haskell. In the process i defined this datatype, to get a less typed number;
data Number = _Int Integer
| _Rational Rational
| _Float Double
deriving(Eq,Show)
Compiling this fails with the following error:
ERROR "types.hs":16 - Syntax error in data type declaration (unexpected `|')
Line 16 is the line w. the first '|' in the code above.
Is there a tool or code to convert a sql statement to class?
Something like:
Dim sqlText = "SELECT CustomerID, Name, Address, City FROM dbo.Customer WHERE CustomerID = 1"
Dim obj As New ***SqlStatementTool***(sqlText)
obj.GetTables() 'Will Return Tables in sqlText
obj.GetWheres() 'Will Return conditions in sqltext
obj.GetParameters() 'will return parameters in sqltext
I have try PDT 2.1.2 and 2.2 nighty build , both of them ,
javascript code assist is not work when editing php file. I have check the JSDT,WTP Plugin is loaded and no error.
But when i open a *.js file, it works , is it any configuration i miss?
People use a variety of little shortcuts that make typing code easier and without the hassle of going back to your mouse. For example, when deleting, ctrl + backspace will delete the whole word. I was wondering what types of little nifty tricks you know that you would like to share!
I'm localizing my iPhone app for multiple languages, and in addition to changing some of the strings I need to change some backgrounds. Is it possible to query the iPhone and get the user's language code?
Thanks!
I have downloaded the android source code (1.5 Gb and appx. 5 Gb after extracting).My intention is to compile this.
1) Do i need a toolchain for arm ..if yes which one will be suitable.
2) to run simulator and to be able to debug on workstation do i need to have any specific PC -linux toolchain .
I've recently started to try to use Dist::Zilla for maintaining Path::Class. I added the [PodCoverageTests] plugin, and it's reporting some failures in the Path::Class::Entity class, which is the abstract base class for Path::Class::File and Path::Class::Dir.
What I'd like is some way to tell the testing code that Entity doesn't need docs, but its two derived classes do - even though the methods are only defined in the parent class. Anyone know some way to do that?
Hi,
I have compliedand built my VC6 application code in vs2005, but while running i am getting an error saying could not load the DLL, once i check this with dependcy walker i found that ieshims.dll and wer.dll are missing but i searched for those dll's but i could not get it. please help me on this
hey i know that on some computers you can cut off the wifi with a buttion and i want to do that with my desktop but it's not wireless. is there a way to in code block my computer from the internet then unblock later. anyway i can do this?
Guys,
I'm getting back into Java after a long stint in the Ruby world and I've got a question about JUnit tests and the source I'm testing.
If I've got a package of graphics code for my company, lets call it com.example.graphics, should I include my tests in that package too or should they be included in a seperate package, like com.example.graphics.test?
Thanks,
Joe
I have two different .Net projects, hosted on github.
I would like to create a shared "commons" library for the two projects.
How should I structure my repository to facilitate this sharing?
Ideally, a change in this common library in one project could easily be pushed into the other project. I prefer to keep the code itself editable from the two projects (within Visual Studio), and not include it as a library. Are there best practices for this?
Hello !
I set a new PHP code template in Netbeans:
/* @var $$${name}Table Model_${name}_Table */
$$${name}Table = Container::get('model')->get('${name}_Table');
and if I use as ${name} some value - shop - I have in output:
/* @var $shopTable Model_shop_Table */
$shopTable = Container::get('model')->get('shop_Table');
Is it possible to add some modifier to the second and fourth ${name} so I will have it started with upper letter ?
Shop_Table instead of shop_Table
I wish to 'engineer' the google wave and try it for my blog/website ? Is it possible to tinker with the source code of Google Wave ? Where is it available ?
Hey guys,
I just noticed I get a lot of redondant code from one class to another in my project (like menus or buttons) ;)
Is there any way to optimize it ?
Thank you !
Gotye.
I have a project hosted at code.google.com. I would like to get the history of commits to the svn repository. I have tortoise svn installed. How can I do that?
Thanks.
While, compiling a package, written in C++ on RHEL 5.0. I am getting the following error.
error: nocreate is not a member of std::ios
The source-code corresponds to:
ifstream tempStr(argv[4],ios::in|ios::nocreate);
I have tried
#g++ -O -Wno-deprecated <file.cpp> -o <file>
as well as:
#g++ -O -o <file>
Please suggest a solution.
How does objdump manage to display source code? Is there a reference to the source file in the binary? I tried running strings on the binary and couldn't find any reference to the source file listed...
Thanks.
I tried writing a login code in vc#..i got the following error..'The type or namespace name 'LoginControl' does not exist in the namespace 'ErikSchmidt' (are you missing an assembly reference?)'
Pls help me rectify this error.