Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
749 views

How to override alert function?

On site there is code like that (its site on LAN) <script language="JavaScript" type="text/javascript"> alert("ble"); </script> I try to disable that alert using GM. I was ...
2
votes
2answers
52 views

What's a good way to abstract conditional logic for “weird” hard-coded values?

I'm working on a pretty simple problem, with design ramifications. Please bear with me, while I describe the situation in vague terms. I have an entity, call it EntityA: EntityA{ attr1 : type1; ...
2
votes
3answers
119 views

There is a way not to hard code username & pass when sending mail [python]

i wanna know if it is possible not to hard code my user name and password in a script that copy a file in the operation system and send it via smtp [gmail] Thank you!
2
votes
7answers
893 views

C - alternative to #ifdef

I'm trying to streamline large chunk of legacy C code in which, even today, before doing the build guy who maintains it takes a source file(s) and manually modifies the following section before the ...
1
vote
2answers
45 views

Is it better to hardcode in, or leave it to external XML files

I'm creating a 2D based RPG game. Similar to that of Pokemon for the Gameboy. Basically, my games maps are created up by x by x size terrain. There are also scenery objects (trees, shrubs, etc.) as ...
1
vote
5answers
210 views

Should we avoid repetitive code in C++ in order to be “Pythonic”, and how?

I am in larval stage with Python and pre-egg stage in C++, but i am trying to do my best, specially with the "Don't Repeat Yourself" principle. I have a multichannel raw file-format to open, with a ...
1
vote
2answers
38 views

adding and maintaining named strings in a seperate class file in asp.net

I have developed an asp.net web application containing 40-50 pages. I have implemented logger using Log4net and each of my pages has this in its page_load event protected void Page_Load(object ...
1
vote
1answer
145 views

will my apps work on iphone OS4?

Screen resolution has increased in iphone OS4. Since lot of UI stuff have hardcoded co-ordinates, will my app run properly on OS4? I still haven't got Snow Leopard, so cant test run the simulator for ...
0
votes
1answer
131 views

Youtube OAuth login with hard coded user name and password

I am developing an iPhone application. This app supports an feature where user can upload a video to Youtube account which is shared by all the app users. When app receives upload request, it ...
0
votes
1answer
154 views

redirecting external links to pages on my website

I am working on a project where I migrated content of an asp.net website into drupal nodes.This website had some hardcoded links in it. Is there any module in drupal which can help me to do this? Or ...
0
votes
1answer
46 views

Replacing an asp control at runtime

I have an existing .NET 1.1 dll that I do not have the source code for. It contains the code-behind for a asp.net page containing various form controls including a third party text editor that I no ...
0
votes
2answers
222 views

save php variables permanently without database

In the admin area of my site there is a form which is for the hostname, username and password for the mysql database that the site uses. Currently these values are hardcoded into a php class. But who ...
0
votes
2answers
45 views

Are there solutions for streamlining the update of legacy code in multiple places?

I'm working in some old code which was originally designed for handling two different kinds of files. I was recently tasked with adding a new kind of file to this code. Most of my problems were solved ...
0
votes
4answers
230 views

Best way for storing a static password on an automated client

I'm building a system that consists of many clients connecting to a server. The clients automatically push data to the server via a web service call. I've built an authentication mechanism in order ...