Questions tagged [local]

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

Accessing data on a local network, or accessing files local to the computer can pose unexpected complications, especially when using languages that are not typically used for local resource access.

Additional exceptions, or hardware/firmware considerations, can come into play in these scenarios that are often abstracted away when accessing remote resources.

3710 questions
1
vote
2 answers

How to execute a shell script stored on remote machine from a local machine?

I have a script.sh stored on remote server at some directory, which I want to run from a local computer. How can I do that in unix using ssh?
Komal
  • 41
  • 1
  • 4
1
vote
3 answers

Can't assign local variable because it is defined in outside

i'm writing a static method and i'm experiencing problems with accessing variable from inner method. I'm getting the following error in Eclipse: The final local variable ret cannot be assigned, since it is defined in an enclosing type Here is my…
smartmouse
  • 13,912
  • 34
  • 100
  • 166
1
vote
2 answers

Spring.NET problem with tag in config

According to the help file that comes with the Spring.NET framework, you can inject a dependancy defined in the local file by using an 'idref' tag along with a 'local' attribute. I have been trying to do this with no success and was hoping someone…
Chris
1
vote
1 answer

Pass a common variable to a subroutine in Fortran

I'm customizing a commercial code which deeply uses common block to define global variables. What I would like to do is to pass only one of those variable to a subroutine, but not making the include, because I don't need the other several variables…
Filippo
  • 13
  • 4
1
vote
1 answer

Local SVN repository without server

I would like to know if it is possible to create a local SVN repository without having to install a server on my machine. I have heard about VisualSVN Server and SubversionEdge but they both require installing a server, something that is too much…
user1314836
  • 219
  • 1
  • 4
  • 14
1
vote
1 answer

Gradle compatible Maven repository or alternative for local usage

The situation: We have several apps, which use a library developed by ourselves. All app projects as well as the library are under constant development. Our goal is to have a local maven repository, which allows us to always build the apps with the…
Marian Klühspies
  • 15,824
  • 16
  • 93
  • 136
1
vote
1 answer

Weblogic 10.3.5 EJB3 local seesion bean lookup from java main class

I am using Weblogic 10.3.5 and EJB 3 for session bean but I am not able to lookup jndi for local stateless session bean even though I am able to lookup remote bean successfully my code are for main class is Properties p = new…
user432843
  • 83
  • 1
  • 9
1
vote
3 answers

Sonar with Gradle Locally

We are trying to use Sonar for Code Analyzes locally our plan is to host the project on travis in the future and make Sonar run there with gradle our problem is that Sonar is always trying to connect to a server what we have now in our build file…
Thor
  • 459
  • 4
  • 15
1
vote
2 answers

Using Local variable value's in Jquery

i'v got this functions at my script: (document).ready(function () { $(".plcardFirst").change(function() { valueFirst = $( ".plcardFirst" ).val(); }); $(".plcardSecond").change(function() { valueSecond = $( ".plcardSecond" ).val(); …
Eyal Livne
  • 15
  • 1
  • 4
1
vote
1 answer

Free java or flash file browser for photogallery

I'm about to develop a small web gallery, where it's supposed to be possible to upload several pictures at a time and then add some info abut the pictures.So I need a free java or flash local file browser that can pass me some info of the pictures…
Christian
  • 11
  • 1
1
vote
3 answers

emacs local version control

I am wondering if there is local version control/snapshots for emacs independent of VC? let me clarify: every time I save buffer, I would like to be able to keep track of changes of each save in session. I know I can do something similar with…
Anycorn
  • 50,217
  • 42
  • 167
  • 261
1
vote
2 answers

Binding member function to a local static variable

Precondition: Here is a function: typedef std::function Handler; void g(const Handler& h) { h(100); } , and a class: class A { public: void f0(int n) { std::cout << m + n << std::endl; } void f1() { …
ALittleDiff
  • 1,191
  • 1
  • 7
  • 24
1
vote
0 answers

Error when using queue in Lua

I am using a queue in Lua http://www.lua.org/pil/11.4.html List = {} function List.New () return {first = 0, last = -1} end function List.PushRight (list, value) local last = list.last + 1 list.last = last list[last] =…
Timothy Swan
  • 623
  • 3
  • 9
  • 21
1
vote
0 answers

C: sharing access to register variables in multiple functions

Currently I am working on a small piece of code for a processor design assignment. I know it normally would be bad practice, but for this assignment, since we are implementing an extremely specific functionality on a specialized processor, I have…
Sander Vocke
  • 125
  • 5
1
vote
2 answers

Script in c# for local leaderboard

I need some help with scripting. I'm making a game in Unity for android. The idea is to be a simple game without levels, without being demanding, but endearing. It's a single player game. One thing that left is to create leader-board so that players…
1 2 3
99
100