Top "Local" questions

A tag for questions about accessing resources local to a given runtime environment or network.

Making a local connection between a mysql database and php

I already have the mysql database made, I just need to connect php to mysql locally but I don't know …

php mysql local localconnection
Lambdas and capture by reference local variables : Accessing after the scope

I am passing my local-variables by reference to two lambda. I call these lambdas outside of the function scope. Is …

c++ c++11 lambda local
How can I test my ssh-keys locally without a server

I want to test my keys in ~/.ssh. I do not have sshd running (Git-Bash@Windows does not provide it). …

windows ssh local
hadoop only launch local job by default why?

I have written my own hadoop program and I can run using pseudo distribute mode in my own laptop, however, …

local jobs
xmllint : how to validate an XML using a local DTD file

I have a local DTD file test.dtd. Content is : <!DOCTYPE coord [ <!ELEMENT coord (date)> <!ELEMENT …

xml file local dtd xmllint
Apache local configuration to resolve files correctly

I have just configured Apache and PHP to work on my local Mac OS X computer. Now PHP works fine, …

apache relative-path local symlink resolveurl
How do I install Perl modules on machines without an Internet connection?

I need to install my Perl-based software on networked machines which aren't connected to the internet. Therefore, I would like …

perl download module installation local
Do Local Notifications need user permission on iOS?

I am using UILocalNotification in my app to schedule notifications. The notifications work fine and show up when I want …

swift notifications local uilocalnotification
Is there any use for local function declarations?

Most C++ programmers like me have made the following mistake at some point: class C { /*...*/ }; int main() { C c(); // declares …

c++ function definition local
Should I use "this" keyword when I want to refer to instance variables within a method?

My teacher says that when I try to access an instance variable within a method I should always use the …

java scope this instance local