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
1 answer

Breeze Fetch Strategy always goes remote

Im having a problem where breeze always goes to the server even though I've specified FetchStrategy.FromLocalCache. I created a test script below. Th initial query goes remote as as expected. The second query also goes…
user1068557
  • 309
  • 2
  • 8
1
vote
1 answer

jqGrid - how to delete row from local data?

I am really new to the jqGrid. I'm loading local file (I'm parsing csv file into json and then transfer the array to jqGrid). Table generated through jqGrid should allow user to modify, add and delete the data in the grid. I tried to resolve my…
rascal90
  • 25
  • 1
  • 5
1
vote
3 answers

Delphi Unit local variables - how to make each instance unique?

In the unit below I have a variable declared in the IMPLEMENTATION section - local to the unit. I also have a procedure, declared in the TYPE section which takes an argument and assigns that argument to the local variable in question. Each instance…
J...
  • 30,968
  • 6
  • 66
  • 143
1
vote
1 answer

How to import local XML file and parse through it using JavaScript?

I have my JavaScript and XML files in the same folder. I'd like to be able to parse through the XML using the JavaScript, but I don't know how to get the JavaScript file to "talk" to the XML file. I've looked up ways, but they all involved server…
Thomas G
  • 21
  • 1
  • 2
1
vote
1 answer

Crawling local files with Scrapy without an active project?

Is it possible to crawl local files with Scrapy 0.18.4 without having an active project? I've seen this answer and it looks promising, but to use the crawl command you need a project. Alternatively, is there an easy/minimalist way to set up a…
false_azure
  • 1,333
  • 4
  • 25
  • 46
1
vote
1 answer

Forum / Blog / CMS / similar on portable UwAMP server with changing IP-Address

Use case : Using UwAmp portable on a portable hard disk drive. It's loaded on a windows computer on a wired LAN network (in a school's computer lab), and UwAmp is launched. There is a static website loaded with educational content (see RACHEL). The…
Nikhil VJ
  • 5,630
  • 7
  • 34
  • 55
1
vote
1 answer

TimePickerDialog runs twice

Android Studio: with single textView and single TimePickerDialog as a nested local class. When the TimePickerDialog is tapped and onTimeSet runs TWICE. Tapped once, it should only run once. (ie. the "toast" shouldn't display PartyTime Set:0 then…
WM1
  • 451
  • 7
  • 14
1
vote
2 answers

How do you open local project images with ImageIO.read()?

I've been at this for 20 minutes now and I just can't wrap my head around where I'm going wrong. If an image is in the same src folder as a java file, why doesn't this work: Image image = ImageIO.read(getClass().getResource("/image.png")); I'm not…
user3530525
  • 691
  • 3
  • 8
  • 20
1
vote
1 answer

Setting Rails Environment Locally

Currently, the rails environment for my local machine and the development stack are the same (development) I'd like to have certain error handling notifications go out when people get an error on the development server, but not locally. To do this,…
LemonMan
  • 2,963
  • 8
  • 24
  • 34
1
vote
1 answer

How to get the camera local axis in three.js

I would like to know what is the most simple/elegant way to get the normalize local axis (x, y, z) of a perspective camera in three.js. Thanks for your time !
SebKaine
  • 65
  • 4
1
vote
1 answer

jqGrid. Tree grid with local data and special field "loaded"

I'm using a tree grid with local data. And I'm interesting in best practices that can improve performance and design of my grid. So I found a related post and would like to know in what case it can be useful to pass undeclared property "loaded:true"…
amigo
  • 343
  • 5
  • 19
1
vote
2 answers

Copy local install of WP and theme from site1 folder to site 2 folder

I have tried to duplicate a local copy of my WP project, but have run into a snag, and can't figure out what I did wrong. After following all the steps to copy my local site1 install to a local site2 location, I can't login to WP at site2, and the…
SunnyOz
  • 543
  • 2
  • 10
  • 25
1
vote
2 answers

Writing NSLog to a local file on the device (iOS)

I have an application that currently outputs through NSLog for certain things, and I want to have those outputs be written to a local file. I have been using this article: Save NSLog into a Local File It was answered by stack overflow user Josiah,…
DevGeo
  • 11
  • 4
1
vote
1 answer

Tasm local variables

Using Tasm 1.4 and trying to create and manipulate local variables in procedure: findMins PROC local z:word:1 ;outer loop counter local j:word:1 ;inner loop counter mov cx, rows ;outer loop total iterations mov z, 0 RowsLoop: …
Olexiy Pyvovarov
  • 870
  • 2
  • 17
  • 32
1
vote
2 answers

Run .NET application on local machine without .NET Framework from local server shortcut

I have a .NET application that I created using VS2012, targeting .NET framework 4.0, instaled on my local server and I would like to simply create a shortcut for it on my local machine. When I have the .NET Framework 4.0 installed on the local…
Natan
  • 1,867
  • 13
  • 24
1 2 3
99
100