Hey, I'm trying to get an extension to wait for a xml message from another program over an internal port. Just something like waiting for a single UTF-8 string that has something like
Hey all,
I'm trying to figure out how to know what has been done to a variable.
Here's an example:
function a($hello) {
$out .= strtoupper(ucwords(strtolower($hello)));
return $out;
}
echo function_trace('$hello') // returns array(strtoupper,ucwords,strtolower)
Thanks!
Matt
Hey,
I have an android devic, i wish to know when it is connected to the pc via java/.net
i know its possible - the Samsung New PC Studio is doing it, when ever i connect an android device it lets me know. how can i achieve the same?
Hey,
What is the correct syntax for this code:
is it:
printf("printf(\"\%d\",%s);", some_var);
or
printf("printf(\"%%d\",%s);", some_var);
Or something else?
Hey,
I'am trying to follow an ASP.NET with AJAX Training. At certain moment, they deploy an AJAX-Enabled Web Site. but for me I can't found this option (I'm using Visual Studio 2008).
Even if I installed the Ajax Control Toolkit it still not working for me !!
What must I do to find this ?
Hey all,
Is anyone aware of some code/rules on how to capitalize the names of people correctly?
John Smith
Johan van Rensburg
Derrick von Gogh
Ruby de La Fuente
Peter Maclaurin
Garry McDonald
(these may not be correct, just some sample names and how the capitalization could be/work)
This seems like a losing battle...
If anyone has some code or rules on when and how to capitalize names, let me know :)
Cheers,
Albert
Hey,
How can I delete a specific eventlog entry (say id 130 with source: Myprog)
or delete all eventlogs from a specific source
without deleting the whole eventlogs under "Application" folder?
public static void deleteEvent()
{
string logName;
if (EventLog.SourceExists(SOURCE))
{
logName = EventLog.LogNameFromSourceName(SOURCE, ".");
EventLog.Delete(logName);
}
}
I tried the following code, but it deleted all the eventlogs under "Application".
Cheers,
Hey,
Quick VHDL question, I don't have access to Xilinx at the moment due to dead laptop, so can't test this.
I was wondering if it's possible to use variables and arithmetic in 'downto' statements, e.g:
proc: process (x)
begin
y <= z(x downto 0) & z(7 downto x);
end process;
Thanks.
hey i am building an application in which user can send an email to a person.
The user enters the email id of the person to whom email is to be sent in a Edit field and then presses a send button the email must be delivered with an attachment.
how can i do it??????
i m really confused after googling.
can someone tell me the exact way
also,cant i send email from simulator if my cod file is unsigned
thanks in advance
Hey Guys,
I have a uitableview and I am populating the tableview with data from the internet. I added some sort features to the table but when I do the sorting and get new results from the web server and reload the table.
The table doesn't refresh, the old results stay on the table and if I press on a particular cell I see the new result just for that cell.
Can someone please help me?
Thanks
Hey, I want to make an little window like the sort of thing used by Teamspeak/Ventrillo or Steam/xFire where a window can be shown while still in a fullscreen game using Java. There was a similar question/answer ("How to create an overlay window in Java?") but that doesn't work for the particular game (EVE) whereas the previously mentioned overlays work just fine. What's the missing element? Or is it an entirely different method?
Hey guys,
I was wondering which tool in ORACLE 11g (their latest DBMS) can be used for publishing XML. I am about to download it but would first like to know the name of the XML publisher and where I could get more information about it from.
Thanks in advance.
S
Hey! I'm trying to load jQuery content in the same container (div#realContent) and it seems that when I use the a 'title' to enter the div ID (all links the same title) the history stop working.
You can enter here http://home.d23.com.uy/fermata/ user: fermata pass: fermata , and see what I mean.
Thanks
hey guys
is it possible to have two forms with two submit buttons but when i click on the button then it saves both forms input fields
im concerning to solve this in php /mysql
i tried my own way :
if ((isset($_POST["form-1"])) && (isset($_POST["form-2"])) {
//SQL Insertion
}
thanks in advance
Hey I am having some issues while using Nggalley plugin for wordpress
the plugin makes use of a JW player and JW player needs an XML
- so it requests link like this http://nextgen-gallery.com/index.php?callback=imagerotator&gid=1&149
The lay &xxx really creaps me out couse I am using it for joomla and joomla doesn't like this
I am assuming that this has to do with wordpress but still unsure.
what does this ending of URL really mean?
PS. I would never ever use wordpress plugin in joomla but my client uses and I have to fix it
Hey folks,
Been messing about with this all day and haven't got anywhere so I'm hoping someone can help me - I have a HeapReAlloc method failing with the error ACCESS_VIOLATION, but I'm unsure how to implement a further check using GetExceptionCode as it uses try/catch or exception or something - can someone give me a quick example of how I can use it to narrow down this failure, please?
Thanks very much,
Becky
Hey
Can anybody suggest me a good free open source address importer which I can use in my project? Good in the sense that, it should be easy to use and integrate (using Codeigniter framework), and also lightweight.
After a long searching i’ve got one: OpenInviter. But, I don’t know how efficient it is.
Hey guys,
Finally going to graduate soon this december, however i do not really have a very strong academic records.
Intended to do some projects to boost up my resume, do you guys have any idea on what i could start off with?
Hey,
I'm searching for an open source Question and Answer System that's writting in php/mysql.
The only one I found is http://www.question2answer.org but it lacks important features like deleting a question/user...It's still in its beginnings.
I know that there is http://osqa.net and http://shapado.com but they are not written in php.
Anybody can help me out?
Thanks!
Hey Everyone,
I've got what I'm hoping is a simple question. In the Delphi IDE, the path to the Delphi installation is specified as $(DELPHI). I am wondering if there is a way to create my own path indicators, such as $(MY_LIBRARY) or something similar. I thought $(DELPHI) was specified as an environment variable, but apparently not. Any ideas?
Thanks all!
~DJ
DJ Quimby
hey all
i have a protected directory where only user on .htpasswd can access, but sometimes it requires the user to change password or username, edit a specific username password to his username him self
sample users
kevien : kka
mike : mike
Hey guys I have been thinking about form security a lot lately. I have been told time and time again to check if form input is a number if you are expecting a number or escape it in case (unless you use proper mysqli formatting) to avoid injection.
1.After the safety checks are done, should I do additional logic checks? For example, if the user is sending a friend request to them-self for example even if my user interface will not show the form if the user is looking at their own page.
Hey All
I have an array(NSMutableArray) with 8 objects.
I then remove number 5 (removeObjectAtIndex:4)
does the array now count only 7 objects? or 8 with a space?
I need to know. I plan to 'drain the array' after doing a thing with each object.
Cheers Guys
Sam
Hey Everyone,
I am trying to install web.go using goinstall github.com/hoisie/web.go, and I keep getting an error about the path.
goinstall: github.com/hoisie/web.go: git: no such file or directory
goinstall is working for sure because when I type in just goinstall I get the options list for it. Any ideas on what I am doing wrong?
Metropolis