The local tag has no wiki summary.
25
votes
15answers
3k views
Does it help GC to null local variables in Java
I was 'forced' to add myLocalVar = null; statement into finally clause just before leaving method. Reason is to help GC. I was told I will get SMS's during night when server crashes next time, so I ...
21
votes
6answers
713 views
How can I localize Perl variables in a different stack frame?
I have some auto-generated code which effectively writes out the following in a bunch of different places in some code:
no warnings 'uninitialized';
local %ENV = %ENV;
local $/ = $/;
local @INC = ...
19
votes
4answers
273 views
In Perl, why does the `while(<HANDLE>) {…}` construct not localize `$_`?
What was the design (or technical) reason for Perl not automatically localizing $_ with the following syntax:
while (<HANDLE>) {...}
Which gets rewritten as:
while (defined( $_ = ...
15
votes
6answers
18k views
Delete Folder Contents in Python
How can I delete the contents of a local folder in Python.
The current project is for Windows but I would like to see *nix also.
11
votes
2answers
114 views
How does local() differ from other approaches to closure in R?
Yesterday I learned from Bill Venables how local() can help create static functions and variables, e.g.,
example <- local({
hidden.x <- "You can't see me!"
hidden.fn <- function(){
...
9
votes
1answer
244 views
+50
Defining Setter/Getter for an unparented local variable: impossible?
There's a few previous questions on StackOverflow questioning how one goes about accessing local variables via the scope chain, like if you wanted to reference a local variables using bracket notation ...
8
votes
2answers
257 views
Access all local variables
Every global variable in javascript is a property of 'window'
Apparently all local variable (aswell as arguments) are stored as properties of the 'Call object' (See chapter 4.6.2 of each function. ...
7
votes
3answers
294 views
Making an undefined class as friend, and defining it later
Making an unknown friend
template<typename T>
class List
{
protected:
class a {
int x;
int y;
private:
friend class b; // <------------ Why this is not an ...
7
votes
8answers
3k views
How to save svg canvas to local filesystem
Is there a way to allow a user, after he has created a vector graph on a javascript svg canvas using a browser, to download this file to their local filesystem?
SVG is a total new field for me so ...
7
votes
4answers
1k views
Amazon SimpleDB for development environment / local installation
Is there a way / tool to simulate Amazon's SimpleDB for the purpose of development?
In my quest for above, I found this tool but this is for the Mac OS. Anything that can be installed on Win XP? ...
7
votes
2answers
1k views
Local functions in Python
In the following Python code, I get an UnboundLocalError. As I understand it, local functions share the local variables of the containing function, but this hardly seems to be the case here. I ...
7
votes
7answers
2k views
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 a function c taking no arguments returning a C,
// ...
6
votes
2answers
65 views
iPhone-mobile local search optimization
I am implementing mobile local search in iPhone application by using the below methods and I have used this reference link ...
6
votes
8answers
379 views
“Pythonic” way to “reset” an object's variables?
("variables" here refers to "names", I think, not completely sure about the definition pythonistas use)
I have an object and some methods. These methods all need and all change the object's ...
6
votes
4answers
424 views
Declaring variables inside C switch/case
Well, this is not actually a question..
I have just occasionally found out that there's an interesting way to declare local variables inside a switch/case block. Instead of using braces inside every ...
6
votes
5answers
507 views
How to get self into a Python method without explicitly accepting it
I'm developing a documentation testing framework -- basically unit tests for PDFs. Tests are (decorated) methods of instances of classes defined by the framework, and these are located and ...
6
votes
5answers
2k views
Javascript: Get access to local variable or variable in closure by its name [closed]
Possible Duplicate:
How can I access local scope dynamically in javascript?
Hi all.
We all know that you can access a property of a javascript object by it's name using the [] syntax.. e.g. ...
6
votes
8answers
1k views
Javascript local variable declare
Basically this is a question how to access local scope handler. I trying to achieve something similar for global variable definition like:
window['newObject'] = "some string";
alert(newObject);
but ...
6
votes
9answers
2k views
SVN: How do I maintain my local config.blah file?
On the SVN server, there is a file called config.conf. I have a local version called the same thing (in the same place). How can I make sure that my local config does not get overwritten, nor checked ...
5
votes
7answers
5k views
PHP $this variable
I'm reading a PHP code that I could not understand. The codes similar like:
class foo {
function select($p1, $dbh=null) {
if ( is_null($dbh) )
$dbh = $this->dbh ;
return;
}
...
5
votes
4answers
487 views
Effective ip->location query
I have two tables: one is ip_group_city from ipinfodb.com containing ip_start numbers for determining location of IPs, and other is "visits" with information about web site visitor containing column ...
5
votes
3answers
235 views
Embedded WSGI backend for Python desktop app using webkit
Disclaimer: I'm not very familiar with any of the things mentioned in the question title.
Would it be possible to use a browser control (like Webkit) as a frontend for a WSGI app (using a framework ...
5
votes
2answers
125 views
How to localize a variable in an upper scope in Perl?
I have run across the following pattern a few times while developing Perl modules that use AUTOLOAD or other subroutine dispatch techniques:
sub AUTOLOAD {
my $self = $_[0];
my $code = ...
5
votes
1answer
154 views
Implement abstract class as a local class? pros and cons
for some reason I'm thinking on implementing interface within a some function(method) as local class.
Consider following:
class A{
public:
virtual void MethodToOverride() = 0;
};
A * ...
4
votes
3answers
73 views
Access an Anonymous or Local Inner Class Within an Anonymous or Local Inner Class
Okay, so I know how to access the outer class that encloses an inner class, whether its anonymous or inner.
But my question is, how to access the outer class if it itself is an inner class? Some code ...
4
votes
5answers
91 views
What options are available for local state persistence in .Net
I'm looking for good options for persisting local state of an application (created in .Net / C#.)
I've considered rolling my own solution, or using a simple local database such as Sqllite, however I ...
4
votes
1answer
487 views
iPhone: How to play local notification sound loud independent of volume setting?
The FoneHome iPhone app has a feature where you can play a sound as part of a local notification. That sound is loud regardless of what the iPhone's volume level is set at.
How is it possible to get ...
4
votes
7answers
346 views
Working offline with SVN on local machine temporary
I am working on a project currently on SVN. I however will not have access to the internet for a few days, and will be working on my project.
Is there any way to make a clone of the repository on my ...
4
votes
2answers
2k views
WP7 Binding to Local Variable
I have a UI element whose color I'd like to set based on a local variable in the page (well actually in a module, but I can move it to the page).
I see in WPF one can bind a UI element to a local ...
4
votes
6answers
159 views
Are there any web browser plugins that can give access to machine's command line? (for local use)
EDIT: please read the question and why I want to do it before passing judgement on this, I want to develop locally using a web browser as the interface, I KNOW its a security hole, but if there is a ...
4
votes
5answers
246 views
On-Disk database storage, best practices
If this question seems common to you, I apologise, I did a quick search around this site and a few google searches and could not find a satisfying answer.
My question is this;
I have only been a ...
4
votes
4answers
925 views
Java & Local Databases
TL DR; Want some Java help with connecting to a truly local database ( no access to server tech ), or if you can whip up code, that will work. All it has to do is query the DB ( MS Access, although ...
4
votes
2answers
807 views
How to create a local user group (in C#)
I'm looking for a way how to programmatically create a local user group. I found plenty of examples on how to query and add users but nothing I can understand about how to create a new group.
var ...
4
votes
3answers
169 views
Why would anyone make additional local variable just to put final keyword on it?
I've encountered the code similar to this:
public void foo(String param1) {
final String param1F = param1;
...
}
I doubt that the author doesn't know that he can put final keyword directly ...
4
votes
1answer
1k views
Loading package html + resources into webview
I would like to know how I can display a HTML page in webview with references to relative/local images. The goal is to have the html page and all linked images contained in the android application ...
4
votes
0answers
498 views
c++ warning: address of local variable
int * ref () {
int tmp = 100;
return &tmp;
}
int main () {
int * a = ref();
cout << *a << endl;
}
I know the function ref () is allocated stack space. It will get destroyed as ...
4
votes
3answers
184 views
How to make changes that only i can see?
For example Id like to modify the login page, so it auto-logs me.
I want those changes to ONLY work on my development station and dont be visible in push. if I make it on a branch than i would have ...
4
votes
6answers
3k views
Get contents of local folder in javascript (or ASP.NET VB)
Is it possible for a webpage to popup a open folder dialog, ask the user to select a folder, then show the contents of that folder in a list(or something) in the webpage.
It won't write to the files, ...
4
votes
2answers
2k views
Testing Google Maps API locally
I am trying to test Google Maps in development sites under IIS. My local testing URL is http://sitename/. As there is no “.com” in the name, I cannot obtain an API key. I can obtain a key for ...
4
votes
5answers
836 views
Difference between creating a local variable and assigning to ivar and directly assigning to ivar?
I have always wondered why all apple code samples use code like this:
UINavigationController *aNavigationController = [[UINavigationController alloc]
...
4
votes
5answers
780 views
Large XML Files and Pagination, is it possible?
The problem
When opening very large XML files locally, on your machine, it's almost a certainty that it will take an age for that file to open - it can often mean your computer locks down because it ...
4
votes
5answers
10k views
JNDI lookup of EJB3 inside an EAR file on Glassfish
I have an EAR file with a bunch of JARs in it, and one of these JARs contains Local Session Beans (EJB3). I need to perform a JNDI lookup of these Session Beans from within an unmanaged POJO, also ...
4
votes
4answers
2k views
Advantage of Local Classes Java
What is the advantage of local classes in Java or in any other language that makes use of this feature?
3
votes
3answers
83 views
Chrome Renders CSS Differently Online vs Offline?
I'm having a problem with Chrome rendering my page fine when loaded locally, but something goes wrong once the page is online. The first thing I did was check Safari, because they both share the same ...
3
votes
4answers
122 views
buffer-local function in elisp
I would like to redefine an existing function foo, but for a specific buffer only.
(defun foo ()
(message "Not done:("))
I was hopping this will do:
(make-local-variable 'foo)
(fset 'foo ...
3
votes
1answer
107 views
How do you organize gettext translation files which REGIONALISED?
My application is i18n but with region difference, that's mean, I'll need to have such translations:
ch_DE
fr_FR
cn_HK
ru_RU
etc...
In the Zend_Translate documentation it's said that you can use ...
3
votes
3answers
811 views
Jquery save local variable for use later on in the code
I am pulling my hair out over this. is there anyway that I can save or access a local variable outside of it's function. Please consider the code below.
$( "#droppable2" ).droppable({
...
3
votes
2answers
161 views
Is it possible to run a *completely* client-side, HTML5-based app using local storage?
Is it possible to run a completely HTML5-based app, using the <canvas> element, on local resources only? i.e. without the need to connect to a remote server to load bitmap images, objects, ...
3
votes
3answers
2k views
Can't change local TFS 2010 paths
Running VS 2010, I want to now build on TFS 2010. In Team Explorer, I change my connection from our old TFS 2008 build server to our new TFS 2010 server. Now I want to map my source control from the ...
3
votes
3answers
203 views
Is it possible to create function-local closures pre-C++11?
With C++11, we get lambdas, and the possibility to create functions/functors/closures on-the-fly where we actually need them, not somewhere where they don't really belong.
In C++98/03, a nice way to ...