mobile website testing localhost [closed] - testing

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
best solution for mobile website locally testing
Note: I am using windows 7 with visual studio 2012.

A good way to do this is to simply hook up your mobile device to the network that your machine is on and visit the IP Address associated to the machine on your port.
Note that IIS Express is a pain to configure in this regard, so it will be good if you can setup your site to run on IIS on your primary machine, and configure it to be default website bound on either port 80 if you have nothing else, or another unique port so that the hostname is not required.

Related

Can we use LinqToExcel on Shared Hosting Env like GoDaddy [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I am planning to use LinqToExcel for reading of my excels files but i am not sure whether it will work on Shared Hosting env like GoDaddy?
It probably won't work because the Ace database engine will have to be installed on the server so LinqToExcel can read the excel files. And I don't think most shared hosting providers will allow you to install it.
You can try though, and let me know if it does work.

how to restart a personal wireless netgear router with vb.net? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
How do configure an netgear wireless router in vb.net code? I want to restart my router and thought about disconnecting clients. This might be used to help a relative with their wireless router.
Edit:
OS Information:
Windows 7 SP1
.NET Framework 4.5 or above
First-off: you should never have to reboot your router under any circumstances (short of a firmware upgrade). If your modem/router "breaks" occasionally and requires a reboot to resume normal operation then something is wrong with it and you should seek a warranty replacement. A line de-sync should not require a reboot either.
With that disclaimer out of the way: there are two ways you can achieve your goal:
The first is to use the Telnet administration features present in your Netgear router (assuming they're enabled and operational). Writing a Telnet-client in code is trivial and an exercise left to the reader. It's just a matter of knowing the right commands to send to get it to reboot.
The second is to write a web client (using HttpWebRequest) that sends the series of HTTP requests to the router in the same way a human-directed-browser would if they were doing the reboot themselves. Use a tool like Firefox's "Live HTTP Headers" to see what HTTP requests need to be sent. Be wary of problems with cookie retention in HttpWebRequest.

Python3 compatible ssh library [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I checked the following, none of which work with Python 3:
paramiko
pexpect
fabric
some custom made scripts
What would you recommend to use for SSH operations like:
password login
key based authentication
file transfer
remote command execution
I'd like to avoid subprocess.Popen as this causes some headaches while multitreading.
Python bindings for libssh2 now supports python3 as well
Thanks to #aix

I'm building my first SQL server with Linux. Which would be the best distro for this machine? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
It's basically a educational situation:
We've got a Intel Celeron 2.5Ghz / 512 MB RAM / >40GB Hard Drive.
We need to set up a basic SQL server for 5~15 LAN users with a >1GB database.
I can use debian, fedora, freeBSD, mandrake, opensuse, redhat, slackware, suse or ubuntu with firebird, mysql or postgreSQL.
[btw: it's a corporate decision, I can't pick anything else besides the one listed. What I can do is ask for support for another software - This is something that looks interesting since I believe that MariaDB w/ Slackware would be the best choice)
I basically need the most lightweight solution possible.
I'm thinking about Slackware with PostgreSQL, but I was wondering which one would be less dependent on hardware specs and easiest to manage, the traffic flow itself won't be very high but the database will have to up for tests for at least a semester or two before we can apply for a dedicated server..
I recommend debian with mysql.
Debian because its a very widespread system for severs and you get tons of documentation so its easy to setup and maintain.
mysql because its simple and well documented.

What are good services for checking the external IP of a machine? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I'm working with an API that requires the machine's external IP. I have come understand that I can't do this without relying on an external server.
I've used whatismyip.com in the past:
wget -q -O - http://whatismyip.com/automation/n09230945.asp
What are some other services for checking the external IP of a machine? Since I'm concerned about a single point of failure, I'd like to have a few options to which I can fail over.
curl -s http://checkip.dyndns.org | sed 's/[a-zA-Z/<> :]//g'
Now, I didn't write that myself, just doing some research for you.
http://www.geekology.co.za/blog/2009/04/checking-your-internal-and-external-ip-addresses-on-a-unix-machine/
Or
wget -O -q icanhazip.com
http://api.externalip.net/ip works fine for me, great uptime and fast. no reg exp needed
http://www.showmemyip.com
http://www.whatismy.com
http://showip.codebrainz.ca/ (details)