Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
205 views

Asymmetric behavior for __getattr__, newstyle vs oldstyle classes

this is the first time I write here, sorry if the message is unfocuessed or too long. I was interested in understanding more about how objects'attributes are fetched when needed. So I read the ...
4
votes
6answers
305 views

Oldest code in a typical Linux distro

Just out of curiosity: What's the oldest code/package in a typical linux distro? Emacs? GCC?
3
votes
2answers
172 views

Python - do I need to learn about old style classes?

I am currently learning Python 2.6.5 and I found out about old style classes and new style classes. I understand that these classes are still existing only for backward compatibility and that they ...
3
votes
3answers
349 views

DOS Database - help needed to recognize what is it

today I got a copy of an old system from which I need to import data. The system is written in C and runs in DOS. It uses some kind of database. The file format seems to be rather simple(1 file = 1 ...
2
votes
2answers
310 views

LocationManager returns old cached “Wifi” location with current timestamp

I am trying to get the current location. For that I implement a LocationListener and register it for both the network and the GPS provider: ...
2
votes
1answer
45 views

Old file fragment understanding - For those up for a challenge

I am trying to grab PVS (rendering with line of sight) information from an old game format. It has documentation and I have been able to translate everything into C++ code up to this point. This part ...
2
votes
1answer
48 views

Pylons - how to use an old project in a new environment?

I have an old project, it written under Python 2.5/2.6, Windows. We had Python 2.6/Win7/x64 now, and I tried to start it. I got the old project that running nondebug mode in a server, and copied ...
2
votes
1answer
28 views

How to be downward compatible to a customers old local database when the application is brandnew?

I want that my users can read my sqlite database still in 10 years, because there could be data in it they want to browse. Well the database file is 10 years old. In the meantime I have upgraded my ...
1
vote
1answer
64 views

AutoHotkey extend clipboard

as we all experienced one time or more, it sometimes is really annoying to have to replace your clipboard-content with other content (while you only need the other information once or so). I thought ...
1
vote
2answers
55 views

Oracle Trigger to remove stock quantity from products and add to orderline

I apologise in advance for this confusing question, wall of text, and awful trigger. I'm designing a small database for a retail store that takes orders in-store and then delivers the products from ...
1
vote
2answers
95 views

how to re-initialize a ruby on rails project

I've just been given a folder containing everything in a ruby on rails project that was developed 2 years ago. The folder doesn't contain a sqlite3 file however, so I am unable to view the database ...
1
vote
1answer
33 views

Maven - use old jars from SVN

I am migrating J2ee project to Maven, I was able to resolve 99% of its dependencies except 2 old jar files we wrote few years ago, Is it possible to drop these jars somewhere (SVN repo?) And tell the ...
1
vote
0answers
36 views

LogCat error spamming: old mainboard version

This error adds to my LogCat view for android many times a second! It occurs when I run my application from eclipse on my ZTE blade android 2.2. It does not matter what application I run by the way. ...
1
vote
6answers
108 views

Jquery and old IE versions

i made my site with Jquery and now if i test it in an old IE version like 5.5 and 6 it completely is filled with errors in javascript. is there a way of getting this problem to stop... and is that ...
1
vote
2answers
71 views

Communicate with a NES game running in an emulator

I am thinking of creating an arcade machine for fun. Something like this one. I wonder if it's possible to get events from some game, e.g.Super Mario. Assume I finish a level and I want to get that ...
1
vote
3answers
203 views

Java Continue Label is Deprecated?

I have 2 fors, after the nested for I have some code which I don't want to execute if a condition is true inside the nested for. If I use break that code would execute, so (as I learned in SCJP) I ...
0
votes
4answers
45 views

PHP & HTML help for editing password because it is in MD5

I have build one edit form in HTML. I am accessing that value in PHP. There is one field PASSWORD. In which I have displayed password for edit which is in MD5 format and stored in mysql database. But ...
0
votes
3answers
35 views

Import wordpress posts to another wordpress site

I had a website based on wordpress.Then domain has expired and now I registered a new domain and built a new website which is based on wordpress too. Now I want to have my previous website's contents ...
0
votes
0answers
7 views

Opening files with extension *.dan *.ix

I have a problem with an old database from a dos applocation. There are many files with extensions like .DAN and .IX . I need to import it into my MySQL database. Does anyone have an idea how to do ...
0
votes
3answers
60 views

How to best fix both warnings(old style c-function declaration isn't a prototype)

I was fixing some functions in a piece of someone else code that included a number of functions that took no arguments. They were declared as return_type_t func(); instead of return_type_t ...
0
votes
2answers
56 views

How do I get the old values ​​of an entity?

How do I get the old values ​​of an entity? follows the example.. public void Update(User user) ValidateEntity(user, OperationType.Update); oldUser = (how do I get the old values ...
0
votes
2answers
56 views

svn: reload an old revision

I'd like to reload an old revision of my repository. My current revision ist 645 and I'd like to have 642 as my current version. The changes from 642 to 645 are changes in the files and additional ...
0
votes
0answers
154 views

jstree : move multiple nodes, data.rslt.op is not an array

If I move multiple nodes I get the array of selected nodes with data.rslt.o but data.rslt.op (old parents) is always a 1 element array. How can I get the old parent of every moved node ?
0
votes
1answer
209 views

where do I find old versions of NDK

Does anyone know where I can find older versions of the Android NDK? Our code doesn't build with r6. Surely there must be archived versions somewhere.
0
votes
1answer
65 views

Iphone Developer license

I have completed an app using an old iphone sdk. My machine is running leopard. I would like to upload it to the app store and I understand that I have to enroll as an apple developer. What is plain ...
0
votes
0answers
10 views

Windows 2003 Server Script needed

I have a program that creates 4 backup files every night on a business day. What I want the script to do is copy the backups from the first backup of the month which occurs on the first business day ...
0
votes
1answer
120 views

Request previous results in a RSS channel

I am developing an application that reads a RSS channel from a website. The problem is that this RSS offers results of football matches on the last weekend, but I am also interested on previous ...
0
votes
1answer
33 views

Work on very old, compiled MacApp® program

possibly it's a stupid question, but I would like to know if it is possible to somehow work on an old program which was made with MacApp® 2.0.1. When I open this file in e.g. XCode, I got much text. ...
0
votes
1answer
807 views

Hibernate-Annotations- How to delete old child records when updating the Parent Entity

Iam currently working on a Bi-directional OneToMany Hibernate association using annotations. Iam stuck up with a problem. A Parent entity has many child entities. Whenever i update the Child set in ...
0
votes
0answers
46 views

Is there and old and a new facebook api or so?

I have two websites based on the same code (almost but for this question, completely) so i want to integrate facebook connect in second one like i did last week in first (but first it's much newer ...
0
votes
2answers
364 views

detecting and preventing crashed on older iOS (Suspecting EventKit)

Dear Scholars. I have created a simple application using the latest SDK (4.2.1), Which runs smoothly and error free on all devices with iOS 4.x.x. Lately I am getting some comments from users with ...
0
votes
3answers
546 views

Old style C function declaration

Here's a simple function delcared and defined using old style syntax: #include <stdio.h> void error(message,a1,a2,a3,a4,a5,a6,a7) char *message; char ...
0
votes
1answer
91 views

Why is Google App Engine servlet getting old no more exist data from file?

I have a Google App Engine servlet, it's supposed to go to my site and get a file, then display the content of that file on the servlet served page, the code looks like this : public class My_Servlet ...
0
votes
0answers
111 views

Fonts of Old Computers in C Headers

I need to get the bitmap fonts of all computer systems (like that with BASIC, handhelds, etc.) as C data arrays or raw bitmap files. More fonts, the better. I would need a site with the files or a way ...
0
votes
1answer
93 views

display old inactive data in dropdown

I have a dropdown which displays some programs (active and inactive). I have a column (isActive) in the programs table in the database which either has a value N or Y. Now I want to filter the ...