after (7,567)
Annotating YouTube videos programmatically
I want to be able to display a normal YouTube video with overlaid annotations, consisting of coloured rectangles for each frame. The only requirement is that this should be done programmatically. Yo…
javascript - How Do I Post and then redirect to an external URL from ASP.Net?
ASP.NET server-side controls postback to their own page. This makes cases where you want to redirect a user to an external page, but need to post to that page for some reason(for authentication, fo…
java - Resolving Session Fixation in JBoss
I need to prevent Session Fixation, a particular type of session hijacking, in a Java web application running in JBoss. However, it appears that the standard idiom doesn't work in JBoss. Can this be…
search - grep a file, but show several surrounding lines?
I would like to grep for a string, but also show the preceding five lines and the following five lines as well as the matched line. How would I be able to do this?…
Removing elements with Array.map in JavaScript
I would like to filter an array of items by using the map() function. Here is a code snippet: var filteredItems=items.map(function(item){if(...some condition...){ return item;}}); The problem is that…
.net - Visual Studio Setup Project Custom Dialog
I have created a custom dialog for Visual Studio Setup Project using the steps described here Now I have a combobox in one of my dialogs. I want to populate the combobox with a list of all SQL Server…
Calling the base constructor in C#
If I inherit from a base class and want to pass something from the constructor of the inherited class to the constructor of the base class, how do I do that? For example, If I inherit from the Excepti…
search - PowerShell FINDSTR eqivalent?
What's the DOS FINDSTR equivalent for PowerShell? I need to search a bunch of log files for "ERROR".…
c# - Office VSTO Word 2003 project keeps trying to autoconvert to 2007
I am working on a Office Word add-in for Word 2003. When I reopen the project, the VS2008 auto covert dialog box opens and tries to convert it to the Word 2007 format. How can I reopen this file and…
How do I reset an increment identity's starting value in SQL Server
I would like to have a nice template for doing this in development. How do I reset an increment identity's starting value in SQL Server?…