history

How to limit HtmlUnit's history size?

Hello. I'm using HtmlUnit for a parsing job and I've discovered that the memory gets wasted with the WebClient holding the history for each WebWindow. I don't use the history at all and I'd like to disable its management or at least limit its size with 1 or 2. Is that possible? ...

How can I fix my ASP.NET AJAX problem when I navigate away from the page and back?

I'm developing an ASP.NET 3.5 application which uses AJAX via the UpdatePanel control. I'm also using History Points to manage the browser back-button functionality. This all works fine until I want to navigate away from the page and back. Within the page I'm clicking on a standard hyperlink which opens another page in my applicatio...

How to get change history for a specific file in git repository

I would like to do something like: git history my_file possible output 2010-05-16 + add this line + more code here 2010-05-15 + delete code below - bad code - more bad codd 2010-05-12 + changes made here ...

Where are the new ideas in programming languages?

I've recently been looking into the topic of programming languages and from what I've seen, few to none serious languages try making really "new" things that were not seen before their creation. Why do all more or less successful programming languages since 1980 or so just combine aspects of their predecessors? I just can't believe t...

What does ZIP stand for (the compression format, not the postal codes)

Does anybody know for what the acronym ZIP stands for which was and is used in programs like PKZIP and GZIP? There is a compression algorithm named Lempel-Ziv-Welch-Algorithm (LZW) maybe the guy named Ziv invented together with other people ZIP? I cannot find anything about it, maybe its not an abbreviation but instead it just means "to...

How to inject "history" into a subversion repository?

We're migrating from StarTeam (aka "the horrible") to SubVersion (aka "the alleged great"). We've already migrated the files by doing a "dumb" commit to all files and started working on the SubVersion repository. However, we're still forced to use StarTeam because we lack the per-file history of check-ins. Is it possible to inject that ...

What was the thinking behind the development of Object Oriented Programming?

I've got some real nay-sayers on my hands here, and I'm trying to give them the reason why OOP was developed in the first place. I realize that OOP is not perfect for all problems and situations, but it was developed for a reason... My guess would be, that a few of those reasons would be: Maintainability Re-usability Document-ability...

GWT history iframe

I am using GWT and need history and using: <iframe src="javascript:''" id="__gwt_historyFrame" style="width:0;height:0;border:0"></iframe> But can I change __gwt_historyFrame to any other name AAAAA? Is it possible like below: <iframe src="javascript:''" id="AAAAA" style="width:0;height:0;border:0"></iframe> ...

Inspiration and influence of the else clause of loop statements?

Python loop statements may have an else clause which is executed if and only if the loop is not terminated by a break. In other words, when the condition becomes False (with while) or when the iterator is exhausted (with for). Does this loop-else construct originate from another language (either theoretical or actually implemented)? Ha...

How to grep in the git history?

I have deleted a file or some code in a file sometime in the past. Can I grep in the content (not in the commit messages)? A very poor solution is to grep the log: git log -p | grep However this doesn't return the commit hash straight away. I played around with "git grep" to no avail. ...

How can I copy the toolbar history from one plot to another in matplotlib?

Hi all, I'm working on some interactive plots using matplotlib and wx, and one of the features I've added is to show a particular subplot from a figure (with any number of other subplots) in a new figure so it has as much screen real-estate as possible. The code I've written so far works well enough to open a new plot with the figure a...

computer history books recommendation

hello. I would like to read about history of computing, is there some particular book you recommend about: programming languages and their evolution history of supercomputing and supercomputers Thank you ...

Which IDE / code editor was the first to introduce a code completion feature?

I am trying to identify the point in time where code completion (autocomplete/intellisense/whatever) was first introduced in IDEs and would appreciate any pointers. By code completion here I mean a feature within the editor that suggests methods or functions based on the code that was already typed, and I am interested in programming la...

What were the requirement elicitation techniques before use cases?

I had a little presentation for my coworkers about use case elicitation and then one of them asked "What were the requirement elicitation techniques before use cases? And how use cases are better than previous methods?" I have no idea, can anybody help? ...

Cobol: science and fiction

There are a few threads about the relevance of the Cobol programming language on this forum, e.g. this thread links to a collection of them. What I am interested in here is a frequently repeated claim based on a study by Gartner from 1997: that there were around 200 billion lines of code in active use at that time! I would like to ask s...

What inspired WPF?

I was told by someone that, just as .NET started inspired from Java, WPF was inspired by a similar technology, as "Microsoft never innovates". However, I can't find anything remotely close to WPF. What particular technology did or could have inspired Microsoft to write WPF? ...

How to get the history for the restructured projects in SVN?

I had to restructure the projects in SVN as it was not added as per the recommended repository structure (no tags, branches and trunk folders). However after moving projects to the new structure we have lost the history of all the files. How can I get back the history of all the files? I created the copy of the Dev => Project1 to Proje...

Keyboard navigation for jQuery Tabs

How to make Keyboard navigation left/up/right/down (like for photo gallery) feature for jQury Tabs with History? Demo without Keyboard feature in http://dl.dropbox.com/u/6594481/tabs/index.html Needed functions: 1. on keyboardtop/down> make select and CSS showactivenested ajax tabs from 1-st to last level 2. on keyboardleft/right> chang...

jQuery Tools 1.1.2, tabs plugin and History plugin

Hi there I have a question regarding the history plugin and jQuery Tools v. 1.1.2. I currently use the tabs plugin, and would very much like to have some kind of history-functionality. I need this so that I can link directly to one of my tabs. I do only work with version 1.1.2 of jQuery Tools, because the 1.2.0 version conflicts with so...

What came before web services and SOA?

I'm interested in the history of distributed, collaborative, cross-organisational programming paradigms - web services and SOA are de-facto now, but what came before? What models have been superceded by SOA? Thanks ...