DO NOT USE! This tag is being burninated: https://meta.stackoverflow.com/q/418968/6296561
Questions tagged [connect]
800 questions
4
votes
2 answers
How to connect to wifi
Can it be done? Opening the wifi settings is possible, but I dont know how to connect to a specific wifi network.
this code:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=WIFI"]];
opens the iPhone wifi settings…

user1581203
- 43
- 1
- 4
4
votes
1 answer
NodeJS using redis - installing with hiredis vs without?
I'm integrating redis into my NodeJS server app, and I'm trying to figure out whether or not to install node_redis with the hiredis command. I assume that the option to install it wouldn't have been made available if it wasn't useful in some way or…

thisissami
- 15,445
- 16
- 47
- 74
4
votes
2 answers
C++ strings connecting with char arrays
Is this good way to do it?
char* array = "blah blah";
char* array2 = "bloh bloh";
string str = string() + array + array2;
Can't do direct string str = array + array2, can't add 2 pointers. Or should I do this
string str();
str += array;
str +=…

user1112008
- 432
- 10
- 27
3
votes
1 answer
Node.js in production with forever and connect's vhosts / nginx alternative?
I'm using mainly node.js for my projects and I use nodemon for development and forever for production.
I usually split my projects in vhosts so my structure could be something like this:
bootstrap.js
apps/
admin/
front/
api/
and my…

panosru
- 2,709
- 4
- 33
- 39
3
votes
2 answers
Does connect.session work with node-azure
I'm starting to develop an application using node.js on azure. I'm using everyauth to provide authentication because I want to support lots of different authentication methods. I plan to deploy to Azure. The potential problem I have is that…

ForbesLindesay
- 10,482
- 3
- 47
- 74
3
votes
2 answers
How to check if USB connected mode is enabled on android?
I have an app on the android market and users often connect their devices to their computers to add music into the apps folder. I have specifically stated in the instructions that android apps cannot communicate with the sd card while usb connected…

NJGUY
- 2,045
- 3
- 23
- 43
3
votes
1 answer
Do Connect and WSGI do exactly the same thing? And are there comparable projects for .NET?
As far as I can tell both provide an "onion layer" mechanism and pass the request/response objects down the chain and back up on every request.
They both glue chains of middleware and act as a bridge between the web server and the application…
user93202
3
votes
1 answer
Connect 1.8.0 - multipart support - formidable reporting progress - large files?
I've come across TJ Holowaychuk post on multipart support and how bodyParser now does what I used to to with formidable directly.I think it's quite handy, at the same time I am now confused on how to deal with:
- uploading large files?
Does…

zumzum
- 17,984
- 26
- 111
- 172
3
votes
2 answers
flash as3 drawing a line between two circles
I'm trying to draw two circles at random positions, and draw a line between those two circles - but flash doesn't seem to register the x|y coordinates of the circle in my code. How would I do this. Better yet, how would I do this so that if I were…

mheavers
- 29,530
- 58
- 194
- 315
3
votes
1 answer
Generating RDP Profile Issue
edit Figured it out, instead of trying to launch it via mstsc.exe file.rdp, I launch file.rdp instead and it works just fine.
end edit
Ok I am working on a c# program, part of it is generating its own .rdp file that will automatically connect with…

Tsukasa
- 6,342
- 16
- 64
- 96
3
votes
2 answers
TCP: is it possible to bind a socket and then /both/ connect from it and accept from it (both client and server rules)?
is it possible in any common platform - say, in Windows - to write a servient process that creates a socket, binds it to exactly one local "address:port" (fixed), and then:
use it to listen for incoming connections (on the specified port)
while at…

user120747
- 169
- 1
- 8
3
votes
2 answers
Connect Timeout with Alarm()
Since it seems that I can't find a solution to my original problem, I tried to do a little workaround. I'm simply trying to set a timeout to the connect() call of my TCP Socket.
I want the connect() to be blocking but not until the usual 75…

Toby
- 3,815
- 14
- 51
- 67
3
votes
2 answers
Node.js + Express.js (Connect) - Accessing Session from 'upgrade' event
I'm trying to access the session object from an 'upgrade' event fired by a Node.js server using the Express.js framework. I have set up Session support correctly and can access it from the standard .get .post .put and .delete methods…

Sunday Ironfoot
- 12,840
- 15
- 75
- 91
3
votes
2 answers
Send text message via Bluetooth to another device without connecting
Is there a possibility to send via Bluetooth text messages and receive from multiple devices WITHOUT having to connect to any of them?
I am mostly working with React Native, however if you have any idea how to do it via other frameworks please let…

showtime
- 1
- 1
- 17
- 48
3
votes
3 answers
Python Oracle DB Connect without Oracle Client
I am trying to build an application in python which will use Oracle Database installed in corporate server and the application which I am developing can be used in any local machine.
Is it possible to connect to oracle DB in Python without…

Bishnu
- 99
- 1
- 7