Regarding GPS. Is there a way to locate a phone number using gps? Without installing any apps to their cell phone [closed] - gps

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
My question is regarding GPS.
Is there a way to locate a phone number using gps? Without installing any apps to their cell phone.
I am interested in both Windows Mobile and iPhone. But please do include generic replies also.

No, you can't.
You see, GPS and phones are two completely disparate technologies - nevermind that there are some multi-function devices (e.g. smartphones) which contain both. There is no generic way to connect one to the other that would work on all devices without custom software (i.e. without installing your app).
That said, you could create an app which checks the GPS location of the device it's on, checks the device's phone number, and reports this pair back to you over some kind of network connection (GPRS, 3G, WiFi, carrier pigeon, what-have-you). You'd need to update the GPS position from time to time as it changes, whereas the phone number tends to stay the same.
You'll need to use some kind of data channel as GPS is an unidirectional broadcast protocol (it's receive-only, there is no way to send a message through it).
Note also that you'll need the user's permission and cooperation in installing the app - firstly, the app won't install by itself as most devices have safeguards preventing automatic installs; and second, installing software without permission could land you in legal trouble (unauthorized access and all that).

Related

Can I turn WiFi on and off programmatically and change network? (Mac SDK) [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
How can I turn WiFi on and off programmatically and change network (WiFi) in the Mac SDK?
CoreWLAN Framework seems to fit your needs. There is even a sample code named CoreWLANWirelessManager
The CoreWLANWirelessManager application utilizes the CoreWLAN
framework, which is the Objective-C public API for the Mac OS X IEEE
802.11 wireless interface. It gives developers an example of how to use the CoreWLAN API and exercises the functionality that the
framework provides.This functionality includes scanning for networks,
querying the wireless interface for static and dynamic parameters,
toggling interface power, changing channels, association, and
accessing the corresponding system configuration preferences for the
given interface.
You can change most WiFi settings using the networksetup(8) command (see the -setairportpower and -setairportnetwork options).
As for a programmatic API for adjusting WiFi settings, there is the CoreWLAN framework mentioned by Antoine.

I want to develop a socket based chatting app in Titanium compatible with Android, iPhone and Blackberry [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I want to develop a socket based chatting app in Titanium compatible with Android, iPhone and Blackberry.
Please give me suggestion about it
If you want a "socket based chatting app", then you've already made decisions about the implementation, and so you really just need to know the interface for implementing it. Try reading the fantastic manual, it is very detailed on how to use sockets.
http://docs.appcelerator.com/titanium/3.0/#!/api/Titanium.Network.Socket.TCP
You'll need to roll your own server side to accept the socket connections, and your own protocol for the communications. Or adhere to an existing protocol.
Or you can use the existing, working Ti.Cloud sample I created. It is the Titanium specific version of what Hini linked at nodeacs.cloud.appcelerator.com --
https://github.com/appcelerator-modules/ti.cloud/tree/master/commonjs/example/windows/chats
You can use Titanium along with Node ACS to create the application.
Here is a sample chat application tutorial. I hope it helps you.
http://nodeacs.cloud.appcelerator.com/guides/quickstart

Use TV remote over HDMI as a control GUI [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to connect a linux PC with HDMI output to my (Samsung) TV.
This allows to show a screen on the TV.
How can I use the TV's remote as an input device, sent over HDMI to control the PC?
Or in other words, can I make a simple user interface which is shown on the TV and is controlled with the remote control?
I mainly imagine using the 4 arrow-buttons and the OK to navigate and choose stuff.
Any links to doc or libraries (Java preferred) are welcome.
The protocol used to send the remote control signals is called CEC. In order to make use of it you will need hardware which supports it, and have drivers for that hardware.
Lacking any more specific information about the hardware you are using, I suggest starting at this page about CEC support on the Raspberry Pi

How to configure modem? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I wrote program in Visual C++ 2008 for communication trough RS-232 between computer and industrial machine. Program works fine when computer and machine are connected directly trough RS-232 cable.
Now I want to communicate through modems.
I have two 56K modems (TDW-33). First modem is connected through RS-232 cable to PC. Second modem is connected to the machine (trough RS-232) that receive commands from computer and answer on this commands. The modems are connected through telephone line.
How to configure two modems to work correctly? Do I need to change my C++ code?
You are really bringing back memories...
You control modems by writing character sequences to the RS-232 serial port. The exact commands depend on your particular modem. Almost all modems at least understand a common subset of commands known as the Hayes Commands. Wikipedia provides a good overview of the commands along with some history:
http://en.wikipedia.org/wiki/Hayes_command_set
For example, to dial the number 2345678 you would send the command
ATDT2345678
You would configure the receiving modem to answer an incoming call with the command
ATA
or you could configure the receiving modem to always answer after, say, 3 rings with
ATS0=3

Free SMS API integration with my Web App [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I need to build a web application that sends a free SMS to its users. Now the problem is That I have no clue as to where do I get a free API to get this to work and how? Can someone help?
I believe most of the 'free' APIs make their money with ads embedded in your messages or sent along as a separate message. Additionally, the messages will likely come from a shared short code. If you're okay with those limitations, as #anirvan commented, google is your friend - here's just one example. Unlikely that you'll get wide international support (if that's something you need).
You could also try the email to SMS route, as many carriers will accept email to a unique address and forward that to the user. Again, google can help in finding those mappings. Note that the messages may not be in a desirable format, and if you do this with any volume, you may incur the wrath of the carriers.
There's also low cost APIs - certainly not free - but perhaps worth considering depending on your use case. Here are a few:
Nexmo
Twilio
Tropo
If cost is your main concern, I think you'll find Nexmo has the most competitive prices.
Disclosure: I'm a developer evangelist for Nexmo.