This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 10 years ago.
This looks like a do-while loop with odd syntax.
Can anyone identify a language?
While var1 == var2 do:
thisFunction(parameter)
Looks like bash.
You can check what while loops look like in a bunch of languages at while loop on wikipedia
Related
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 10 years ago.
I can't seem to work out the download URL of the CSV file on this webpage, all I can workout is this:
<div id="exportMI" class="settings-menu-item goog-menuitem ">Download as CSV</div><div class="settings-menu-item goog-submenu">
Doesn't seem very useful, can you help me get the download url?
You can use your browser's download manager to find out the download URL, which is http://www.google.com/trends/trendsReport?cmpt=q&content=1&export=1
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 10 years ago.
Is it possible to create a variable in MySql for a LIKE expression?
ex.
SET #test = '%my text to look for%';
SELECT * FROM MYTABLE WHERE MYCOLUMN LIKE #test;
Of course I tried this approach and it did not work.
Sorry for choosing the mysql-connect tag, couldn't really come up with anything else.
EDIT 1
"Did not work" means I don't get results with the variable as without.
Yes, your example should work fine. See my test case below:
SQL Fiddle Example
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 9 years ago.
Ive got this obviously wrong output when trying such a simple thing as making a link:
http://www.facebook.com/apps/a%E2%80%8Bpplication.php?id=164355773607%E2%80%8B006
Of course the link should be
http://www.facebook.com/apps/application.php?id=164355773607006
and it's also corrrect in the code:
<a class="nobk" href="http://www.facebook.com/apps/application.php?id=164355773607006"><img src="/_/img/facebook.png" alt="Facebook Kool Business" width="50" height="50"/></a>
My page with the bug is koolbusiness.com. Can you tell me what's wrong?
Thank you very much
Omit the spaces in "a pplication.php" and the id value.
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 11 years ago.
i am doing an iphone app,
there are sample project in this web
http://developer.apple.com/library/ios/#samplecode/XMLPerformance/Listings/ReadMe_txt.html
how to change this sample project to get " A few years ago " in this web code:(http://www.ted.com/talks/matt_cutts_try_something_new_for_30_days.html)
???
Have a look at Hpple, it's a nice HTML parser using XPath queries, which are really easy to learn.
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 10 years ago.
I am using
<a href="www.google.com" > test link </a>
I didn't understand why its not working in IE6.
You need to include http://.
test link
You should also explain what exactly you mean by 'not working', but regardless of that, that's the only mistake I see in your link.