hi i am developing code for gps tracker using gps module ssf1513. i don't know how to configure the gps module to power save mode , please guide me how to enter in input mode.
Hi All,
Hopefully the title isn't funny to be ignored! But I have a genuine interest in understanding what happens when a computer is turned on. i.e. how the computer works on startup, various initializations that take place. For example, is bootstrap loader the first step, when are device drivers loaded etc..
Please guide me to understand.
Regards,
darkie
i dont have a wifi router, so when at home i need to turn my laptop into a wifi source so that both myself and my partner can access the internet.
however during the days i work at a coffee shop and require the use of their wifi.
i'm running snow leopard and i find it stupidly cumbersome to constantly be turning off and on, first internet sharing and then my wifi.
any ideas for a quick n dirty applescript solution?
thanks a bajillion!
Jon
Just a quick question: is the following PHP code secure? Also is there anything you think I could or should add?
$post = $_GET['post'];
if(is_numeric($post))
{
$post = mysql_real_escape_string($post);
}
else
{
die("NAUGHTY NAUGHTY");
}
mysql_select_db("****", $*****);
$content = mysql_query("SELECT * FROM tbl_***** WHERE Id='" . $post . "'");
I have tried to find good documentation of browsers using google but failed to get what I am looking for. Can someone guide me to a location where I can actually see how a browser functions? The whole purpose of the exercise is to get answers for following queries and more like these:
How images, CSS and JS files are downloaded
How JS is executed
How an Ajax request is executed
and many more like these.....
Thanks all,
All,
How can we debug a Eclipse plug-in based on GEF? Currently, I have a Activator class and custom editor from Example . Yet I am not able to find any output for the plugin. I tried using the "Launch Eclipse in Debug Mode" and setting a breakpoint in the Activator constructor method, but do not find any debugging activities taking place.
Can anyone please guide on how to go about with debugging?
Hey guys,
How to integrate ckeditor with mediawiki ....iam very new to this wiki thing ,...Can you plz guide me ...didnt find any worthful doc on web !!!!
Cheers,
Andy !
Is it possible to use PHP magic methods (specifically __get()) outside a defined class?
I'm wanting to use it in a configuration file for quick loading. The configuration file has a single array, $config, with many keys. Therefore, I'd like to override __get() to return the key in the array.
I am looking to write a WPF app and am trying to pick a MVVM framework to handle some of the complexity. What would you recommend and where can I find a good tutorial/getting started guide for said framework?
Hello, I need to print last 20 characters of string, but only whole words. Delimiter is a space "". Let's consider this example:
string="The quick brown fox jumps over the lazy dog"
echo $string | tail -c20
returns s over the lazy dog. And I need it to return over the lazy dog instead. Do you know how to accomplish that? Thanks!
hello all i have my splash screen which i want to show in landscape mode and all other screen in potrait mode. My root view controller is acting as a splash screen i am writing this code in viewdidload method
[[UIDevice currentDevice] setOrientation:UIInterfaceOrientationLandscapeRight];
But this code is not working and shows me that UIdevice may not respond to setorentation please guide me that how could i change the orentation for only first splash screen and also other screen should be in potrait mode
I have a piece of code VERY similar to this one http://java.sun.com/developer/onlineTraining/JavaMail/contents.html#JavaMailFetching
I the difference is that I need to get the "TO" addresses as a String. I can't find in the API how to get the "TO" recipients as String for each Message.
Can anyone guide me on how to do this? At least a link where someone has already done it.
Thanks in advance
I have a program that generates a .shp file, and exports this as a kml file. I would like to be able to display my output using the standard google map 'map' style (gray background, yellow streets, etc) in google earth.
Is there a style guide or method that I should be using?
Any thoughts appreciated - I wasn't sure how to structure this question.
Thank you.
When Yahoo! developer guide says "Deploying your content across multiple, geographically dispersed servers will make your pages load faster from the user's perspective".
And as an explanation I read somewhere, that browsers will load up to 5 things simultaneously from the same domain.
Would a subdomain, for example cdn.example.com be considered a new domain, in the previous statement?
dear friends,
i want to create image slideshow in android.
i have many images in android gridview now i want to open manual slideshow if any image is clicked so that i could view it by moving finger left or right next and previous images
like android built in gallery.
any one guide me how to achieve this?
any help would be appriciated.
I'm looking for a way to add a Subject Alternative Name in my certificate request in the IIS 6.0 certificate creation wizard.
It seems I can only fill the Subject field and not the Subject Alternative Name.
Trying to follow this guide (http://support.microsoft.com/kb/931351) using certreq.exe doesn't help, it fails without any hint except that it prints its manual.
Any suggestions appreciated, I hope I won't have to export my public key and generate the csr with openssl :/
SQL Server Express does not have the Tasks - Import Data option that other editions of SQL Server has. Has anyone come across a free tool to import data?
I understand I can use the bulk import but I have run into a security issue with it and would like a quick and a dirty way of importing a csv file to a sql express table.
I often find myself doing quick checks like this:
if (! eregi('.php',$fileName))
$filename.='.php';
But sadly eregi() is going to be deprecated in PHP 6, which means all of my code that uses it will be rendered useless :(.
Is there another function that behaves exactly the same way as eregi()? I don't know anything about reg exps and don't want to learn, so preg_match() etc won't work for me.
Hello,
I'm trying to pass parameters to a control in codeigniter, but I'm getting 404 page not found error, I don't get it, I did what the guide says: http://codeigniter.com/user_guide/general/controllers.html#passinguri
<?php
class Main extends Controller {
function index($username) {
echo $username;
}
}
?>
How can I get more info regarding this error from codeigniter?
Thank you.
basically i need to write a query for mysql, but i have no experience in this and i cant find good tutorials on the old tinternet.
i have a table called rels
with columns "hosd_id" "linkedhost_id" "text link"
and a table called hostlist
with columns "id" "hostname"
all i am trying to achieve is a query which outputs the "hostname" and "linked_id" when "host_id" is equal to "id"
any help or pointers on syntax or code would be helpfull, or even a good mysql query
guide
I have the following:
LPSTR email // Has data in it already
LPSTR index=strchr(email,'@');
Now I want to Insert into a new string:
LPSTR username
the part of "email" from the beginning of the string to "index".
For example:
email="[email protected]"
so username="roel" .
Is there a function to do it quick or do I need to build one?
Roel
I am developing a GUI application in Qt Creator and want to write some unit tests for it.
I followed This guideto make some unit tests with QtTestlib and the program compiles fine.
But how do I run them? I would like them to be run before the GUI app starts if debug buid and not run if release build.