I would like to know as a newbie programmer what the benefits are of using for example google search API or newest buzz API for data content gathering instead of screen scraping; obviously apart from the legal aspects.
Hi, I am using imagekit to handle custom size of uploaded images. While it works fine for creating custom size images with this, I'd like to use imagekit to resize the original image on upload. Is this possible?
I am working on my web service, and required to persist some image (jpg whatever) and video(wmv) into memmory. Just want to use single_node_cluster to feel voldemort.
Can anybody give me a hint of the configuration and sample code of voldemort? I mean how to configure the value type in stores.xml? protobuf? java-serialization?
Any sample or link would be helpful. Thanks
Hi together,
can I change the background image of my TTThumbsViewController. It's the thumbnail overview screen and at the moment it is white. Can I turn it to transparent?
Thx :-)
Hello,
I am looking for ways to protect my product images and I don't know if there's anything out there better than what I've already found: disable right click, use a transparent image in front of your picture and watermarking. Obviously none of them is perfect but I was curious if someone came up with a better solution to this problem.
Also is there any rails plugin to aid with that ?
Thanks
Hey guys. I'm a CSS newbie and I was wondering how websites like bing.com or wolframalpha.com create their search buttons inside of of the text field? If you go to each website, you can see clearly what I mean.
I'm using the 3d image carousel available at http://www.professorcloud.com/mainsite/carousel.htm .
It's great but I've hit a wall with regards to transparency support for IE6.
As the images are being manipulated by java after they are loaded, it's quite a headache. All the mainstream png fixes fail in one way or another...either breaking the carousel or being broken by the animation of the carousel.
Does anybody have any ideas on how I can get round this (without using PNG8, .gif etc).
When I try to show an image on linklabel click, I get an error: unrecognized escape sequence.
Code:
public void linkLabel1_LinkClicked(object sender, System.Windows.Forms.LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start(
"mspaint~C:\Users\Joshua Banks\Desktop\Downtown_atlanta_night.jpg");
}
I have been playing around recently with jqgrid and am at loss on how to implement search in my controller using PHP (Zend).
I came across a post that is quite similar to the answer am looking for but what I need is the PHP version not ASP.NET.
Hello
I want to generate a preview thumbnail image of a web page using the link for the page. How can i do this? I'm comfortable with C#.NET, Javascript/JQuery.
Regards
NLV
Hi all,
I am not able to delete a native image :
del c:\windows\assembly\native...\mscorlib\xxxx\mscorlib.ni.dll
access refused
That works on Windows XP, but not in Seven.
Does someone know how can I do ?
Thanks
Hi,
date = re.search(r'<td>([\x\d\w-.\s,()&\"]+|)<br><font',page_data)
I am migrating a code from PHP to Python, and am using this piece of regex expression on re.match, which doesn't work, giving a python error of:
raise error, v # invalid expression
It works on PHP's preg_match, and also http://www.gskinner.com/RegExr , any idea why this is happening? Thanks!
Hello,
How would I with regular expression search for functions which contains the use of a global variable without running "global $var" first?
The files looks like this:
class TestClass
{
function correctFunc()
{
global $var;
$name = $var->name;
}
function invalidFuncIWantToFind()
{
$age = $var->user->age;
}
}
I want to find the function names of all the invalidFuncIWantToFind. At work this would have really speeded up our work but I didn't get how to do it.
The user should input two strings and the script will performe a text search:
$sql = "SELECT * FROM table_one WHERE name='%$str1%' AND MATCH (street, city, pin) AGAINST ('$hrtg'IN BOOLEAN MODE)";
somehow the % does not work, but it alwas did actually. please help?
in WPF, the System.Windows.Clipboard.getImage() function returns a BitmapSource object. As a newbie in WPF coming from a WinForms background, its not clear to me how to save this image to a file. What are the steps I must take?
i have this script
<select>
<option value="1">one<img src="star.gif" height="15" width="15"></img> </option>
</select>
but it doesn't work.
how can i put an image into select?
thanks
update:
so it's impossible?:(
my controller uses code like this:
if params[:commit] == "Submit"
this used to work fine when I just had buttons. however, now I am using images as buttons like below:
<%= image_submit_tag 'butons/Add-08.png', :class => 'image-button-submit' %>
How can I pass the commit variable with value Submit along with this image_submit_tag?
I'm trying to set the background of a webview to a drawable image resource in Android.
From the sdk it seems something like this would work but it doesn't.
WebView web = (WebView) findViewById(R.id.webView);
web.setBackgroundResource(R.drawable.backgroundmain);
web.loadData(profile, "text/html", "UTF-8");
Any idea's?
Hi Guys
I am try to make iPhone application to encode-decode an images (NSData format).
NSData imageData = UIImagePNGRepresentation(image);`
How can I do, please give some source code.
Thank you!
Hi,
I need to add rounded corners to an image in a UITable View cell to 3px. What's the best way to go about this? Apparently you can use the quartz framework?
Thanks.
Hello,
I am creating a ebook iPhone application and it consists of a bunch of pages.
My problem is some of the pages consists of images.
Is there a way to put the text and image in the same component.
What would be the best way to acheive this?
Thanks
i have been type some string inside textfield that is "KD-G435MUN2D"...
i already use this code for search "UD" character from that string:
<script>
var str="KD-R435MUN2D";
var patt1=/UD/gi;
document.write(str.match(patt1));
</script>
but this code doesn't work..where is my fault?
I have a treeView with many nodes. I want that some nodes change their image when node collapsed/expanded. How can I do it ?
Unfortunately, TreeNode don't have properties like ExpandNodeImage, CollapseNodeImage \
TreeView can change very often, so nodes can be deleted/added.. i can delete child nodes and so on...
Maybe, there is a class like ExpandAndCollapseNode ?