DO NOT USE for questions that happen to contain the word "history". Use this tag for questions about the history of a programming concept or feature.

learn more… | top users | synonyms (1)

12
votes
3answers
19k views

Android read browser history

I want to read browser history in Android phone. I have done some document reading, then I come to know that we can read browser history by android.provider.Browser class. It has : final static ...
30
votes
5answers
2k views

What is the point of DBNull?

In .NET there is the null reference, which is used everywhere to denote that an object reference is empty, and then there is the DBNull, which is used by database drivers (and few others) to denote... ...
108
votes
13answers
10k views

Why should files end with a newline?

I assume everyone here is familiar with the adage that all text files should end with a newline. I've known of this "rule" for years but I've always wondered — why?
28
votes
7answers
22k views

jQuery UI Tabs back button history

Has anyone been able to get jQuery UI Tabs 3(Latest version) working with the back button? I mean if the user hits the back button they should go to the previously visited tab on the page, not a ...
28
votes
5answers
8k views

Why are “control” characters illegal in XML?

There are a variety of characters that are not legally encodeable in XML, e.g. U+0007 ('bell') and U+001B ('escape'). Most of the interesting ones are non-whitespace 'control' characters. It's ...
31
votes
4answers
32k views

How do you get the previous url in Javascript?

Is there any way to get the previous url in javascript? Something like this: alert("previous url is: " + window.history.previous.href); Is there something like that? Or should I just store it in ...
10
votes
5answers
8k views

After travelling back in Firefox history, javascript won't run

When I use the back button on Firefox to reach a previously visited page, scripts on that page won't run again. Is there any fix/workaround to have the scripts execute again when viewing the page the ...
22
votes
5answers
10k views

iPhone call log / history

I'm doing some research on the feasibility of an iPhone application, and can't find any indication in Apple's documentation that an iPhone app can read the call history of the phone, specifically the ...
34
votes
7answers
4k views

Why do stacks typically grow downwards?

I know that in the architectures I'm personally familiar with (x86, 6502, etc), the stack typically grows downwards (i.e. every item pushed onto the stack results in a decremented SP, not an ...
31
votes
8answers
3k views

System where 1 byte != 8 bit?

All the time I read sentences like don't rely on 1 byte being 8 bit in size use CHAR_BIT instead of 8 as a constant to convert between bits and bytes et cetera. What real life systems are ...
16
votes
6answers
4k views

Where does 'Hello world' come from?

'Hello world' is the usually the first example for any programming language. I've always wondered where this sentence came from, where was it first used. I've once been told that it was the first ...
36
votes
3answers
749 views

What's the motivation behind having copy and direct initialization behave differently?

Somewhat related to Why is copy constructor called instead of conversion constructor? There are two syntaxes for initialization, direct- and copy-initialization: A a(b); A a = b; I want to know ...
12
votes
1answer
4k views

How could I change window's location without reloading and # hack?

At first I thought that hash hack is a requirement, however judging from the recent updates from facebook, I am thinking otherwise. The original hash hack (I am not sure if this is the correct term) ...
24
votes
8answers
1k views

The History Behind the Definition of a 'String'

I've never thought about until just now, but I'm not sure why we call strings 'strings'. I'm a .Net programmer, but I know the concept of strings exist in virtually every language. Outside of ...
15
votes
5answers
6k views

Line endings messed up in Git - how to track changes from another branch after a huge line ending fix?

We are working with a 3rd party PHP engine that gets regular updates. The releases are kept on a separate branch in git, and our fork is the master branch. This way we'll be able to apply patches to ...
14
votes
6answers
2k views

When was the NULL macro not 0?

I vaguely remember reading about this a couple of years ago, but I can't find any reference on the net. Can you give me an example where the NULL macro didn't expand to 0? Edit for clarity: Today it ...
28
votes
10answers
2k views

Are design patterns really language weaknesses?

Should today's patterns be seen as defects or missing features in Java and C++? Subroutine was a design pattern for machine language in the 50s and 60s. Object-Oriented Class was a design pattern ...
24
votes
21answers
3k views

Why are floating point values so prolific?

Why are floating point values so prolific in computer programming. Due to problems like rounding errors, and not being able to even accurately represent numbers such as 0.1, I really can't see how ...
6
votes
3answers
886 views

How to prepend the past to a git repository?

I received some source code and decided to use git for it since my co-worker used the mkdir $VERSION etc. approach. While the past of the code currently seems unimportant, I'd still like to put it ...
13
votes
5answers
428 views

Why does (i|o)fstream take a const char* parameter for a file name?

Why does the constructor and open method of the std::(i|o)fstream classes take the name of a file as a parameter in the form of a const char* instead of an std::string? It seems like the creators of ...
9
votes
6answers
2k views

Is one's complement a real-world issue, or just a historical one?

Another question asked about determining odd/evenness in C, and the idiomatic (x & 1) approach was correctly flagged as broken for one's complement-based systems, which the C standard allows for. ...
10
votes
3answers
1k views

What's the meaning of the PHP Token Name T_PAAMAYIM_NEKUDOTAYIM

What's the story behind the ::'s sometimes token name T_PAAMAYIM_NEKUDOTAYIM I'm mainly interested in knowing if This is an abbreviation for something else This is a phrase in a language other ...
40
votes
5answers
5k views

What happened to Dojo in 2008?

Many of you have seen this graph of Google Trends of popular AJAX frameworks (Dojo, jQuery, YUI). The graph seems to make it clear that interest in Dojo collapsed in the second quarter of 2008, ...
27
votes
2answers
2k views

How to get notified about changes of the history via history.pushState?

So now that HTML5 introduces history.pushState to change the browsers history, websites start using this in combination with Ajax instead of changing the fragment identifier of the URL. Sadly that ...
13
votes
8answers
4k views

Is there a way to change a SVN users username through the entire repository history?

When my team first started out with SVN we all just used our first names when committing to the repository, however, now that our team has grown, we are running into issues because we just hired a ...
18
votes
6answers
14k views

window bind POPSTATE

Given the following: $(window).bind("popstate", function() { alert('popstate'); }); On first load, the alert fires with FireFox and Chrome but not Safari. Why is that? Anyone else seen this and ...
14
votes
4answers
31k views

history.pushState

Hello I'm working on a site that serves content via ajax (Im using ruby on rails btw) if you click an item in the menu, a content div gets updated with $.get response, nothing fancy I'm implementing ...
25
votes
3answers
2k views

Is std::string part of the STL?

(When I say STL, I'm talking about the template library that revolves around containers, iterators, algorithms and functors.) This question came to mind after thinking that a std::string mostly ...
6
votes
5answers
2k views

maintain history in a database

I am designing this database that must maintain a history of employee salary and the movements within the organization. Basically, my design has 3 tables (I mean, there more tables but for this ...
13
votes
5answers
3k views

History tables pros, cons and gotchas - using triggers, sproc or at application level

I am currently playing around with the idea of having history tables for some of my tables in my database. Basically I have the main table and a copy of that table with a modified date and an action ...
17
votes
1answer
7k views

Completely remove (old) git commits from history

I'm starting a project using git where I'll be committing very large files, but only a few times a week. I've tried to use git as-is and it seems to store the entire file in each commit where it is ...
1
vote
1answer
1k views

Managing Browser History in Ajax

I am using ajax in my site. if a user enters a query and select a category, i will updates the page with result with ajax. also i updates the url with hash value which shows query and category ...
8
votes
7answers
1k views

The unmentioned parts of COBOL's history

I'm very curious about old programming languages, especially COBOL, and as Wikipedia couldn't really tell me much about this topic, I decided to ask it here: Was COBOL the first programming language ...
6
votes
3answers
1k views

Can tags be automatically moved after a git filter-branch and rebase?

edit The question boils down to "Can git rebase be instructed to rebase tags, too?" But an answer to the original question would also help. Asking How to prepend the past to a git repository? I ...
7
votes
2answers
2k views

Statechange is firing whenever i do a push-state

I am using history.js to handle back button. In history.js statechange is firing whenever i do a pushstate. Why?
7
votes
5answers
5k views

_Underscores in Function Names

In a lot of languages with simple OO capability (PHP 4), or misunderstood OO capabilities (Javascript, C using function pointers, etc.), you'll end up with a function naming convention that uses ...
71
votes
24answers
20k views

(For what) Are Fortran, Cobol and Co. used today?

I'm a relatively young programmer and so I don't really know much about languages like Fortran or Cobol that have their origins in the beginning of modern informatics. I'm a bit confused because it ...
22
votes
1answer
280 views

How does one store history of edits effectively?

I was just wondering for sites like stackoverflow and wikipedia, they stores history of edits indefinitely and allows user to roll back the edits. Can someone recommend any resources/books/articles ...
16
votes
8answers
1k views

Programming language history

I'd like to know a little more about the overall development and history of programming. Things like how they came up with syntax and the overall thought process during the design of the older ...
6
votes
2answers
1k views

How can I rewrite history so that all files are in a subdirectory?

I have a project under git. One day I moved all project files from current directory to foo/bar/ under the project. I did it using git mv. Then I added some more files and did some changes to already ...
7
votes
5answers
1k views

Use a persistent notification to allow the user to return to running Android app

I am developing an app with numerous Activities. I would like to create a persistent notification that (more or less) says, "AppName - Return to AppName" that will be present whenever my background ...
13
votes
17answers
2k views

What is the origin of the term “baller” which means “pointer”? [closed]

I've seen the term "baller" used in a couple of C++ interview tests. It means "pointer" as best as I can tell from questions like "Describe the difference between a baller and a reference." I thought ...
6
votes
5answers
2k views

What is classpath hell and is/was it really a problem for Java?

What is classpath hell and is/was it really a problem for Java?
5
votes
2answers
2k views

How to add new field(s) and records to the call logs(call history) database?

I am trying to make a VoIP application and I wanted to know if it is possible to do the following with the Call Logs content provider - I want to add new Call Log records for the VoIP call along ...
5
votes
11answers
500 views

Recommended anecdotal/history book(s) on programming in the 60s and 70s [closed]

this is more a question about programming culture and history. I do web development, and my girlfriend's father used to do software dev from the 60s through the 90s. He doesn't seem that connected ...
17
votes
1answer
521 views

How did malloc and calloc end up with different signatures? [duplicate]

Possible Duplicate: Why calloc takes two arguments while malloc only one? There are lots of resources describing the difference in functionality between malloc and calloc, but I can't ...
6
votes
3answers
11k views

jquery history plugin

I am using this plugin: http://plugins.jquery.com/project/history on this page: http://www.crtaci.info/index.php?autocom=majice I dont know why but it seems i cant figure out what to do to get ...
17
votes
2answers
15k views

How to undelete a file previously deleted in git's history?

Using Chris's answer on another question I could prepend a snapshot-history to my git repository. Since one of the files is not part of my history but only in the snapshots, the first original commit ...
8
votes
4answers
2k views

Historical reason behind different line ending at different platforms

Why did DOS/Windows and Mac decide to use \r\n and \r for line ending instead of \n? Was it just a result of trying to be "different" from Unix? And now that Mac OS X is Unix (-like), did Apple ...
3
votes
1answer
213 views

How do I determine whether I am going “forward” or “backward” through my History in GWT?

I am looking at History and History JavaDocs in GWT and I notice that there is no way to tell whether the forward or backward button was pressed (either pragmatically or by the user). The "button ...

1 2 3 4