Hey,
I would like to know how to add menus similar to this to my custom controls designed in Visual Studio. http://img687.imageshack.us/img687/8702/tasksy.jpg
Hey,
For some time I’ve seen employers demanding Sharepoint knowledge from programmers, but I have a problem understanding what it is :/
But today I was at IT training, and the main guy said something like: “Sharepoint is platform for commit code for programmer, control of version etc...”
Is that true? It sounds like SVN. Can someone explain me what advantages it has for a C# programmer?
Thanks ;)
Hey guys,
I just noticed that when you get a network interruption the code proposed by Apple fails to load the images ... It works perfectly otherwise though ;)
It is due to the fact that IconDownloader doesn't do anything if NSURL connection fails ...
Before I struggle with this on my own, anyone has any tips for me :D ?
Thanks a lot,
Gotye.
Hey
I'm in the situation where i need to do some math related stuff in c# and for that i need some external libarys. The tool i look for should do the following actions:
Process sound(wave/mp3):
Normalize the amplitude
Normalize the phase
Any idea which way to go? And is there a big difference if a should to it on mp3 instead of wav
Michael.
Hey,
I want to use geoJSON-formatted Data in my iPhone app. THere is a JSON parser but no geoJason parser. Anyone can please help me? How do I have to edit the JSON parser to get geoJSON parsing successful?
Is there any geoJson parser for Objective-C out there?
Thanks a lot.
Hey
I know that in the google maps API it's possible to replace the existing tiles with my own - and using their tile server - feed my own maps.
i'm interested in doing this using monotouch - is there any way of doing this atm - or does anyone know of a way of achieving this any other way?
w://
Hey guys,
I'm working on a basic DBMS as a pet project and planning to prototype in Python.
I figure there's a reason there are only a few Python databases, and my gut agrees that my favorite language will be too slow to act as an honest performing database, but I'm looking forward to using it to learn what I need quickly.
Would someone please contradict me? Is Python as ill-suited right now for this sort of thing as I think?
Hey Guys
I have made website.
But after few months successfully run now its showing virus attack.
Now how to remove this things?
And what to do to avoid this attacks in future?
I have put screen-shot so that u can understand well.
Hey all,
I've seen there is a datastore backup utility by "Aral Balkan"
( http://code.google.com/intl/iw-IL/appengine/articles/gae_backup_and_restore.html ). However, this utility is only applicable for Django framework and not webapp.
Is there any utility out there for webapp as well?
Thanks
Joel
Hey,
Im really interested in the way of using lamda functions. Does it make sense to use them in a high-level programming language? If yes, why?
Is this really just a function embedded in a function, (Like this) or is there more behind?
Hey i'm using JSON with appengine.
I'm using json for comunication, so in the python side i have
import json
the error i'm getting is this:
<class 'django.core.exceptions.ViewDoesNotExist'>: Could not import views.ganttapp. Error was: No module named json
In my stand alone this works great, is there any problem with json on the app engine? or should I use another module?
I dunno if you can open this but here it goes:
http://ganttapp.appspot.com/newgantt you can find the error here
hey guyz i have a function
$result = create_watermark( 'input_file_name' ,'output_file_name');
i have dir called /images n have 500 images in it and all images are link images_(some_unknown_numbers).png (all png) now i want run them thru function in loop and want out put like /markedimage/images_1.png images_2.png images_3.png
i need help how can i run them in loop and how out put name can change
want run script on Ubuntu so we can use shell too
if any body want check function it is here
http://paste2.org/p/789149
plz provide me code because i m newbie
thanks in advance
Hey i got small problem getting an unknown curl error from my script "curl_error(): 180 is not a valid cURL handle resource".
Im not able to find any recourses about that error so maybe anyone has any experience with this.
Thanks already.
heres the part which causes the error
$resp = curl_error($ch);
error_log(date('Y M D h:s:m '). ": $current error: " .curl_error($ch)."\n", 3, '../../usererrors/'.$username.'errors');
Hey guys,
i've been google'ing the difference between digital signature and digital certificate (asymmetric encryption)
seems like they are the same. I would like to clarify if they are the same or not? many thanks!!!
Hey just a quick question for any experts out there. I have a site that lets users interact through messages and to sign up you just make a username and password, verify your age, and optionally, add an email. There isn't really any sensitive information I suppose. Is it worth using https. Will it prevent session hi jacking and will it hinder performance?
Hey there,
I've been developing .NET applications for 4 years. So far, I did not need to create any implicit conversions for the classes I authored.
Could you provide real-life situations when you could not do without creating implicit conversions?
Thank you
hey folks,
Can someone help me with this Java problem?
I want to write a method that takes two strings as arguments and returns true if each character (including space and punctuation) that appears in one string also appears in the other.
Thanks
Hey guy i am starting a online store in Magento and I am trying to add a product and when i am trying to save it asks me for Control Script???
any ideas
thankyou
Hey,
I have a simple plot which feature a lot of data points, when i have have graph. Is there a way that i can simple click on all these point and allow matlab to give me a average value of them?
Thank you
Hey Guys,
This seems like a basic problem with an easy answer but I simply cannot figure it out no matter how much I try.
I am trying to create a line graph based on two lists. For my x-axis, I want my list to be a set of strings.
x_axis_list = ["Jan-06","Jul-06","Jan-07","Jul-07","Jan-08"]
y_axis_list = [5,7,6,8,9]
Any suggestions on how to best graph these items?
Hey guys,
I've been working on a P2P live streaming app and I'm having some trouble testing it properly.
At the moment, I'm testing it using:
1) Another laptop + an external server
2) Multiple instances running on different ports
Problem is: this is not exactly ready for production.
Is there something like a simulator OR any of you guys worked on a torrent client, p2p client, live streaming solution and had to test it?
Please let me know,
Thanks,
-hbt
Hey Guys,
analogue to this one (http://stackoverflow.com/questions/2788345/replacing-xml-in-file-from-document-in-java or
http://www.exampledepot.com/egs/javax.xml.transform/WriteDom.html) I try to use it under Android...
The problem is, that I can't use the suggested solution under android, because it throws java.lang.verifyError...
After reading a little bit, I found out, that the class that was used to store the data to file, is not usable in android...
can you suggest another solution, which is similar easy to use?
Hey everyone,
I need a regular expression to find out whether or not a h1 tag is followed by a h2 tag, without any paragraph elements in between. I tried to use a negative lookahead but it doesn't work:
<h1(.+?)</h1>(\s|(?!<p))*<h2(.+?)</h2>