Skip to content

Instantly share code, notes, and snippets.

@banksJeremy
Created July 21, 2012 03:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save banksJeremy/3154485 to your computer and use it in GitHub Desktop.
Save banksJeremy/3154485 to your computer and use it in GitHub Desktop.
// Scrapes through all of the pages of Close Votes reviews and eventually
// dumps the results as JSON, replacing the contents of the <body>.
var
allPagesLoaded = new $.Deferred,
page = 1,
maxPages = null,
reviews = { /* "/q/POST_ID/USER_ID": { } */ },
getNextPagePeriod = 4000,
getNextPageIntervalId = null,
getNextPage = function() {
var pageUrl = "/review-beta/close/history?page=" + page;
$.ajax(pageUrl).then(function(data) {
var
bodyHtml = data
.replace(/^.*?<body/, "<body")
.replace(/<\/body>.*$/, "</body>"),
htmlEl = document.createElement("html"),
bodyEl = (htmlEl.innerHTML = bodyHtml, htmlEl.querySelector("body"));
$(".history-table tr", bodyEl).each(function() {
var
userLink = $($("a", this)[0]),
userId = +userLink.attr("href").split("/")[2]
userName = userLink.text(),
postLink = $($("a", this)[1]),
postId = +postLink.attr("href").split("/")[2],
postTitle = postLink.text(),
action = $.trim($($("td", this)[3]).text()),
datetime = $(".history-date", this).attr("title"),
reviewKey = "/q/" + postId + ((userId && userId > 0) ? "/" + userId : "");
reviews[reviewKey] = {
postId: postId,
postTitle: postTitle,
userId: userId,
userName: userName,
action: action,
datetime: datetime
};
});
maxPages = +($(".page-numbers:not(.next):last", bodyEl).text() || 1);
console.log("Loaded " + page + " of " + maxPages + " pages.");
allPagesLoaded.progress();
page++;
if (page > maxPages) {
if (getNextPageIntervalId) {
clearInterval( getNextPageIntervalId );
getNextPageIntervalId = null;
}
allPagesLoaded.resolve();
} else if (!getNextPageIntervalId) {
getNextPageIntervalId = setInterval(getNextPage, getNextPagePeriod);
}
});
};
getNextPage();
var dumpCurrent = function() {
$("body").empty().text("(function(reviews){\n \n}(" + JSON.stringify(reviews, null, " ") + "));").css({
"text-align": "left",
"font-family": "monospace",
"font-size": "1.25em",
"padding": ".5em",
"line-height": "1.5em",
"background": "#F8F8F8",
"white-space": "pre",
"opacity": 0.5
}).animate({"opacity": 1.0}, 1000);
};
allPagesLoaded.then(dumpCurrent, null, dumpCurrent);
This file has been truncated, but you can view the full file.
(function(reviews) {
var
byAction = {},
byUserId = {},
byHour = {};
for (reviewKey in reviews) {
var
review = reviews[reviewKey],
hour = review.datetime.replace(/^.*? |:.*$/g, "");
(byAction[review.action] = byAction[review.action] || []).push(review);
(byUserId[review.userId] = byUserId[review.userId] || []).push(review);
(byHour[hour] = byHour[hour] || []).push(review);
Object.keys(byHour).sort().forEach(function(hour) {
});
}
console.log(byAction, byUserId, byHour);
}({
"/q/11567632/798448": {
"postId": 11567632,
"postTitle": "Extracting specific data from a web page using PHP [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-21 03:57:50Z"
},
"/q/11520331/798448": {
"postId": 11520331,
"postTitle": "How to Use GetEnumerator() [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-21 03:57:24Z"
},
"/q/11573011/798448": {
"postId": 11573011,
"postTitle": "Is Netzke still being actively being developed [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-21 03:42:24Z"
},
"/q/11583105/427763": {
"postId": 11583105,
"postTitle": "Run batch scripts in parallel",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-21 03:39:14Z"
},
"/q/11158579/427763": {
"postId": 11158579,
"postTitle": "WinForms MessageBox not appearing",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-21 03:38:58Z"
},
"/q/11555054/427763": {
"postId": 11555054,
"postTitle": "How to remove FTP details",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-21 03:38:47Z"
},
"/q/9809853/798448": {
"postId": 9809853,
"postTitle": "About junit test suite [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-21 03:38:30Z"
},
"/q/11535547/798448": {
"postId": 11535547,
"postTitle": "Need reference links for “[1:]” notation [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-21 03:37:46Z"
},
"/q/11525847/798448": {
"postId": 11525847,
"postTitle": "to draw html inside js file [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-21 03:35:22Z"
},
"/q/11589061/798448": {
"postId": 11589061,
"postTitle": ".htaccess - Too many redirects [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-21 03:30:17Z"
},
"/q/5389352/798448": {
"postId": 5389352,
"postTitle": "how to show multiple data single time [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-21 03:29:31Z"
},
"/q/11561660/798448": {
"postId": 11561660,
"postTitle": "Twilio demo call from browser to phone [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-21 03:27:07Z"
},
"/q/11569556/798448": {
"postId": 11569556,
"postTitle": "How do I update a mysql database from a mutliple line form using php [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-21 03:25:54Z"
},
"/q/11520010/798448": {
"postId": 11520010,
"postTitle": "Is Logback mature enough to replace log4j? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-21 03:25:41Z"
},
"/q/11588768/798448": {
"postId": 11588768,
"postTitle": "How do I clone a specific path in git? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-21 03:24:49Z"
},
"/q/11567456/798448": {
"postId": 11567456,
"postTitle": "Access Headless VM Over Multiple SSH Hops [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-21 03:15:37Z"
},
"/q/11561906/798448": {
"postId": 11561906,
"postTitle": "How to prevent Cross site scripting XSS using MVC 3 [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-21 03:15:29Z"
},
"/q/11578068/1114": {
"postId": 11578068,
"postTitle": "Prototype js library set value of hidden input fields in this calculation",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-21 03:09:24Z"
},
"/q/11579168/274466": {
"postId": 11579168,
"postTitle": "Regex Issue for few formats",
"userId": 274466,
"userName": "ig0774",
"action": "Close",
"datetime": "2012-07-21 01:50:37Z"
},
"/q/11574244/274466": {
"postId": 11574244,
"postTitle": "How to get newly updated data in a cell in a DefaultTableModel",
"userId": 274466,
"userName": "ig0774",
"action": "Close",
"datetime": "2012-07-21 01:50:02Z"
},
"/q/11588492/274466": {
"postId": 11588492,
"postTitle": "How to use Twitter API [closed]",
"userId": 274466,
"userName": "ig0774",
"action": "Close",
"datetime": "2012-07-21 01:48:58Z"
},
"/q/1992384/274466": {
"postId": 1992384,
"postTitle": "“Program to an interface”. What does it mean?",
"userId": 274466,
"userName": "ig0774",
"action": "Close",
"datetime": "2012-07-21 01:48:36Z"
},
"/q/3312803/274466": {
"postId": 3312803,
"postTitle": "from … import * with __import__ function",
"userId": 274466,
"userName": "ig0774",
"action": "Close",
"datetime": "2012-07-21 01:40:00Z"
},
"/q/11545891/274466": {
"postId": 11545891,
"postTitle": "java.util.ConcurrentModificationException, how to avoid [closed]",
"userId": 274466,
"userName": "ig0774",
"action": "Close",
"datetime": "2012-07-21 01:39:28Z"
},
"/q/11574648/274466": {
"postId": 11574648,
"postTitle": "how to create web services in android and what tool it want?",
"userId": 274466,
"userName": "ig0774",
"action": "Close",
"datetime": "2012-07-21 01:39:04Z"
},
"/q/11556391/274466": {
"postId": 11556391,
"postTitle": "Value in variable lost when returning from another class [closed]",
"userId": 274466,
"userName": "ig0774",
"action": "Close",
"datetime": "2012-07-21 01:38:22Z"
},
"/q/11562685/274466": {
"postId": 11562685,
"postTitle": "How many mails can I send with google app engine per day?",
"userId": 274466,
"userName": "ig0774",
"action": "Close",
"datetime": "2012-07-21 01:37:49Z"
},
"/q/11584806/1114": {
"postId": 11584806,
"postTitle": "Are there any good tricks to help remember RegEx?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-21 01:30:16Z"
},
"/q/741985/85950": {
"postId": 741985,
"postTitle": "LaTeX source code listing like in professional books",
"userId": 85950,
"userName": "blahdiblah",
"action": "Do Not Close",
"datetime": "2012-07-21 01:21:09Z"
},
"/q/522753/85950": {
"postId": 522753,
"postTitle": "How do I hide bullets in LaTeX lists?",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-21 01:16:58Z"
},
"/q/11573318/85950": {
"postId": 11573318,
"postTitle": "bash auto complete no directory",
"userId": 85950,
"userName": "blahdiblah",
"action": "Do Not Close",
"datetime": "2012-07-21 01:16:23Z"
},
"/q/2170276/479512": {
"postId": 2170276,
"postTitle": "Calculating Fibonacci Numbers Recursively in C",
"userId": 479512,
"userName": "Mark Hall",
"action": "Do Not Close",
"datetime": "2012-07-21 01:15:23Z"
},
"/q/48877/479512": {
"postId": 48877,
"postTitle": "Choosing between Ajax, Flex and Silverlight",
"userId": 479512,
"userName": "Mark Hall",
"action": "Close",
"datetime": "2012-07-21 01:14:07Z"
},
"/q/11584733/85950": {
"postId": 11584733,
"postTitle": "How to resolve this Eclipse java.lang.ClassNotFoundException?",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-21 01:13:57Z"
},
"/q/11534864/479512": {
"postId": 11534864,
"postTitle": "Match Case and Exact Match in XML Document with XPath",
"userId": 479512,
"userName": "Mark Hall",
"action": "Do Not Close",
"datetime": "2012-07-21 01:13:46Z"
},
"/q/11576935/479512": {
"postId": 11576935,
"postTitle": "endless loop of messagebox",
"userId": 479512,
"userName": "Mark Hall",
"action": "Close",
"datetime": "2012-07-21 01:13:27Z"
},
"/q/11566139/85950": {
"postId": 11566139,
"postTitle": "I accidentally did ulimit -r1 and I want to go back to ulimit -r90+, how do I do this?",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-21 01:13:25Z"
},
"/q/11557159/405725": {
"postId": 11557159,
"postTitle": "HOw to install Appinventor True Ofline (App Inventor Personal Server) on Linux",
"userId": 405725,
"userName": "Vlad Lazarenko",
"action": "Close",
"datetime": "2012-07-21 01:11:53Z"
},
"/q/11580169/405725": {
"postId": 11580169,
"postTitle": "const_cast: override a const status",
"userId": 405725,
"userName": "Vlad Lazarenko",
"action": "Close",
"datetime": "2012-07-21 01:11:45Z"
},
"/q/11575710/405725": {
"postId": 11575710,
"postTitle": "How to publish a mac OS X App on Mac Store",
"userId": 405725,
"userName": "Vlad Lazarenko",
"action": "Close",
"datetime": "2012-07-21 01:08:57Z"
},
"/q/8427372/405725": {
"postId": 8427372,
"postTitle": "Windows Spanned Disks (LDM) restoration with Linux?",
"userId": 405725,
"userName": "Vlad Lazarenko",
"action": "Close",
"datetime": "2012-07-21 01:08:24Z"
},
"/q/11563336/405725": {
"postId": 11563336,
"postTitle": "how to detect center of a blurry circle with opencv",
"userId": 405725,
"userName": "Vlad Lazarenko",
"action": "Close",
"datetime": "2012-07-21 01:08:14Z"
},
"/q/11574597/405725": {
"postId": 11574597,
"postTitle": "Is there any recommended vector drawing tool that can outcome suitable EPS for Latex in MacOS?",
"userId": 405725,
"userName": "Vlad Lazarenko",
"action": "Close",
"datetime": "2012-07-21 01:07:31Z"
},
"/q/11563219/405725": {
"postId": 11563219,
"postTitle": "Why is the input of the following program is as described: Pointers, extern values",
"userId": 405725,
"userName": "Vlad Lazarenko",
"action": "Close",
"datetime": "2012-07-21 01:07:15Z"
},
"/q/11557479/599792": {
"postId": 11557479,
"postTitle": "Nagios gives no out return from plugin",
"userId": 599792,
"userName": "Gareth McCaughan",
"action": "Close",
"datetime": "2012-07-21 00:35:46Z"
},
"/q/11566088/599792": {
"postId": 11566088,
"postTitle": "Is there a way to refer to the item “With” which I am working?",
"userId": 599792,
"userName": "Gareth McCaughan",
"action": "Close",
"datetime": "2012-07-21 00:35:21Z"
},
"/q/11582445/204788": {
"postId": 11582445,
"postTitle": "Does Java have a bounded Collection with removal strategy?",
"userId": 204788,
"userName": "Biju Kunjummen",
"action": "Close",
"datetime": "2012-07-21 00:25:40Z"
},
"/q/11568163/1114": {
"postId": 11568163,
"postTitle": "css body adjust to screen proportions",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-21 00:03:04Z"
},
"/q/11577507/1114": {
"postId": 11577507,
"postTitle": "Misalignment of website in Firefox Linux",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-21 00:01:34Z"
},
"/q/11586720/1011995": {
"postId": 11586720,
"postTitle": "How do I make the delete key work in the WebBrowser control?",
"userId": 1011995,
"userName": "Daniel Fischer",
"action": "Close",
"datetime": "2012-07-20 23:32:29Z"
},
"/q/10993798/1011995": {
"postId": 10993798,
"postTitle": "How to partially stage a file?",
"userId": 1011995,
"userName": "Daniel Fischer",
"action": "Close",
"datetime": "2012-07-20 23:32:05Z"
},
"/q/11549755/1011995": {
"postId": 11549755,
"postTitle": "managed C++ and C#",
"userId": 1011995,
"userName": "Daniel Fischer",
"action": "Close",
"datetime": "2012-07-20 23:30:55Z"
},
"/q/11581763/1011995": {
"postId": 11581763,
"postTitle": "C# .net windows service to communicate with remote web service",
"userId": 1011995,
"userName": "Daniel Fischer",
"action": "Close",
"datetime": "2012-07-20 23:29:27Z"
},
"/q/11559187/1011995": {
"postId": 11559187,
"postTitle": "assigning same values to objects in java",
"userId": 1011995,
"userName": "Daniel Fischer",
"action": "Close",
"datetime": "2012-07-20 23:28:52Z"
},
"/q/11557383/1011995": {
"postId": 11557383,
"postTitle": "print pdf documents in bulk and then staple them individually in c# and also how to pass printer settings arguments to process.startinfo()",
"userId": 1011995,
"userName": "Daniel Fischer",
"action": "Close",
"datetime": "2012-07-20 23:28:11Z"
},
"/q/11549774/1011995": {
"postId": 11549774,
"postTitle": "4d to 2d projection matrix",
"userId": 1011995,
"userName": "Daniel Fischer",
"action": "Close",
"datetime": "2012-07-20 23:27:37Z"
},
"/q/11564697/1011995": {
"postId": 11564697,
"postTitle": "dropdownlist won't fire on SelectedItemChanged",
"userId": 1011995,
"userName": "Daniel Fischer",
"action": "Close",
"datetime": "2012-07-20 23:26:55Z"
},
"/q/11585807/1011995": {
"postId": 11585807,
"postTitle": "Running my program through cron causes permission failures",
"userId": 1011995,
"userName": "Daniel Fischer",
"action": "Close",
"datetime": "2012-07-20 23:26:11Z"
},
"/q/11585438/1011995": {
"postId": 11585438,
"postTitle": "Interfacing with networks with C [closed]",
"userId": 1011995,
"userName": "Daniel Fischer",
"action": "Close",
"datetime": "2012-07-20 23:25:13Z"
},
"/q/11586594/1114": {
"postId": 11586594,
"postTitle": "Javascript Eval is evil but in certain situations only?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 23:20:53Z"
},
"/q/11578819/1114": {
"postId": 11578819,
"postTitle": "CSS reset - What exactly does it do?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Do Not Close",
"datetime": "2012-07-20 23:20:04Z"
},
"/q/109215/1114": {
"postId": 109215,
"postTitle": "What bad habits did you learn from your first language?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 23:19:44Z"
},
"/q/11567632/1114": {
"postId": 11567632,
"postTitle": "Extracting specific data from a web page using PHP [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 23:19:34Z"
},
"/q/11586778/766441": {
"postId": 11586778,
"postTitle": "WebDAV communication (Objective-C/Cocoa)",
"userId": 766441,
"userName": "Luke",
"action": "Close",
"datetime": "2012-07-20 23:19:14Z"
},
"/q/11550185/1114": {
"postId": 11550185,
"postTitle": "How to position a fixed element [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 23:17:43Z"
},
"/q/11565396/1114": {
"postId": 11565396,
"postTitle": "input type=search - how to get the “x” but keep my original input layout [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 23:16:48Z"
},
"/q/11547699/1114": {
"postId": 11547699,
"postTitle": "How to make calculations with javascript or jQuery, grabbing values from various different elements?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 23:16:11Z"
},
"/q/11583714/1114": {
"postId": 11583714,
"postTitle": "psycopg2 on ubuntu",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Do Not Close",
"datetime": "2012-07-20 23:15:29Z"
},
"/q/11556936/1114": {
"postId": 11556936,
"postTitle": "Is there any printer that just save a txt file in the comp?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 23:15:13Z"
},
"/q/11567551/1114": {
"postId": 11567551,
"postTitle": "Unintuitive javascript behaviour when using for in",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 23:14:55Z"
},
"/q/1866802/1114": {
"postId": 1866802,
"postTitle": "Make iframe not to reload at page refresh",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Do Not Close",
"datetime": "2012-07-20 23:14:18Z"
},
"/q/11574920/1114": {
"postId": 11574920,
"postTitle": "displaying html tags as html in input field",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 23:14:12Z"
},
"/q/11570782/1114": {
"postId": 11570782,
"postTitle": "Why clojure's vector function definition is so verbose?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 23:12:57Z"
},
"/q/11582388/1114": {
"postId": 11582388,
"postTitle": "Syntax Error:Unexpected token using jquery library",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 23:12:35Z"
},
"/q/11573971/1114": {
"postId": 11573971,
"postTitle": "Is it possible transform one DOM element to another? Or copy all attributes from it?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Do Not Close",
"datetime": "2012-07-20 23:12:21Z"
},
"/q/11584244/1114": {
"postId": 11584244,
"postTitle": "CSS: div with cross label and horizontal label",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 23:11:21Z"
},
"/q/11558810/1114": {
"postId": 11558810,
"postTitle": "Creating a Sap UI5 Control",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 23:10:38Z"
},
"/q/11584001/1114": {
"postId": 11584001,
"postTitle": "copy spreadsheet rows and columns on a webpage",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 23:10:29Z"
},
"/q/11575630/1114": {
"postId": 11575630,
"postTitle": "Send email from textarea [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 23:05:16Z"
},
"/q/11547296/1114": {
"postId": 11547296,
"postTitle": "add a new row in a table using jQuery [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 23:04:46Z"
},
"/q/11582115/1114": {
"postId": 11582115,
"postTitle": "Delete new jQuery prepended node after 2 seconds",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 23:03:54Z"
},
"/q/11576460/1114": {
"postId": 11576460,
"postTitle": "How to implode a string when have character? [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 23:03:01Z"
},
"/q/11581107/1114": {
"postId": 11581107,
"postTitle": "Python web-framework without forced OOP [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 23:02:24Z"
},
"/q/11580165/1114": {
"postId": 11580165,
"postTitle": "Javascript/jQuery based HTML editor [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 23:02:14Z"
},
"/q/11565561/1114": {
"postId": 11565561,
"postTitle": "Sending variable from one JS file to another JS file",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 23:01:47Z"
},
"/q/11580231/1114": {
"postId": 11580231,
"postTitle": "Can search engines read the links generated by an external javascript link?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 23:01:32Z"
},
"/q/6533244/1114": {
"postId": 6533244,
"postTitle": "How to pass an array of objects from javascript to PHP",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Do Not Close",
"datetime": "2012-07-20 23:01:17Z"
},
"/q/11554781/1114": {
"postId": 11554781,
"postTitle": "html Intro page for a website",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 23:00:52Z"
},
"/q/11565430/1114": {
"postId": 11565430,
"postTitle": "Google custom search (php and mysql)",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 23:00:27Z"
},
"/q/11575452/1114": {
"postId": 11575452,
"postTitle": "HTML Form Validation Assistance [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 23:00:09Z"
},
"/q/11570654/1236185": {
"postId": 11570654,
"postTitle": "Nmap: server stops accepting new connections after nmap runs",
"userId": 1236185,
"userName": "Tim",
"action": "Close",
"datetime": "2012-07-20 22:59:06Z"
},
"/q/11585721/1236185": {
"postId": 11585721,
"postTitle": "create a byte[] from a bmp c#",
"userId": 1236185,
"userName": "Tim",
"action": "Close",
"datetime": "2012-07-20 22:58:53Z"
},
"/q/11584382/1114": {
"postId": 11584382,
"postTitle": "Variable.match for amount > 999.99",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 22:58:35Z"
},
"/q/11552381/1236185": {
"postId": 11552381,
"postTitle": "UTF-8 without BOM in php files",
"userId": 1236185,
"userName": "Tim",
"action": "Close",
"datetime": "2012-07-20 22:58:35Z"
},
"/q/11577974/1236185": {
"postId": 11577974,
"postTitle": "my jsp page doesn't know my game class",
"userId": 1236185,
"userName": "Tim",
"action": "Close",
"datetime": "2012-07-20 22:56:53Z"
},
"/q/11563368/1236185": {
"postId": 11563368,
"postTitle": "Encoding in IE9",
"userId": 1236185,
"userName": "Tim",
"action": "Close",
"datetime": "2012-07-20 22:56:39Z"
},
"/q/11587149/1236185": {
"postId": 11587149,
"postTitle": "GoDaddy no sub domain resolution",
"userId": 1236185,
"userName": "Tim",
"action": "Close",
"datetime": "2012-07-20 22:56:19Z"
},
"/q/11541028/1236185": {
"postId": 11541028,
"postTitle": "SD Card is not a directory any more in Eclipse",
"userId": 1236185,
"userName": "Tim",
"action": "Close",
"datetime": "2012-07-20 22:55:45Z"
},
"/q/11570317/1236185": {
"postId": 11570317,
"postTitle": "Gmail is calling my AWS-generated email spam",
"userId": 1236185,
"userName": "Tim",
"action": "Close",
"datetime": "2012-07-20 22:55:15Z"
},
"/q/11560531/1236185": {
"postId": 11560531,
"postTitle": "4096 text display limitaion",
"userId": 1236185,
"userName": "Tim",
"action": "Close",
"datetime": "2012-07-20 22:55:04Z"
},
"/q/11563336/1236185": {
"postId": 11563336,
"postTitle": "how to detect center of a blurry circle with opencv",
"userId": 1236185,
"userName": "Tim",
"action": "Close",
"datetime": "2012-07-20 22:54:40Z"
},
"/q/11581171/1236185": {
"postId": 11581171,
"postTitle": "sorting facebook newsfeed in c#.net",
"userId": 1236185,
"userName": "Tim",
"action": "Close",
"datetime": "2012-07-20 22:46:11Z"
},
"/q/11533820/1236185": {
"postId": 11533820,
"postTitle": "Java Animation Player Walking",
"userId": 1236185,
"userName": "Tim",
"action": "Close",
"datetime": "2012-07-20 22:46:07Z"
},
"/q/9326459/1236185": {
"postId": 9326459,
"postTitle": "ArrayIndexOutOfBoundException",
"userId": 1236185,
"userName": "Tim",
"action": "Close",
"datetime": "2012-07-20 22:45:52Z"
},
"/q/11553333/1236185": {
"postId": 11553333,
"postTitle": "Backbone.js Multi-Step Form",
"userId": 1236185,
"userName": "Tim",
"action": "Close",
"datetime": "2012-07-20 22:45:44Z"
},
"/q/11569201/1236185": {
"postId": 11569201,
"postTitle": "3 Months Windows Azure Trial Disabled in 3 Weeks",
"userId": 1236185,
"userName": "Tim",
"action": "Close",
"datetime": "2012-07-20 22:45:27Z"
},
"/q/11586568/1236185": {
"postId": 11586568,
"postTitle": "Researching Better",
"userId": 1236185,
"userName": "Tim",
"action": "Close",
"datetime": "2012-07-20 22:44:50Z"
},
"/q/11570234/1236185": {
"postId": 11570234,
"postTitle": "Setting Up Facebook App",
"userId": 1236185,
"userName": "Tim",
"action": "Do Not Close",
"datetime": "2012-07-20 22:44:10Z"
},
"/q/979694/1236185": {
"postId": 979694,
"postTitle": "Need free php based ad management system banner rotator etc - which also has client access - any ideas",
"userId": 1236185,
"userName": "Tim",
"action": "Close",
"datetime": "2012-07-20 22:43:49Z"
},
"/q/11571102/1236185": {
"postId": 11571102,
"postTitle": "C++/CLI StreamReader ReadToEnd() only getting first digit of double",
"userId": 1236185,
"userName": "Tim",
"action": "Do Not Close",
"datetime": "2012-07-20 22:43:41Z"
},
"/q/11558484/1236185": {
"postId": 11558484,
"postTitle": "Project management and bug tracking software",
"userId": 1236185,
"userName": "Tim",
"action": "Close",
"datetime": "2012-07-20 22:43:26Z"
},
"/q/11578309/1114": {
"postId": 11578309,
"postTitle": "How to block a site for a certain screen size?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Do Not Close",
"datetime": "2012-07-20 22:41:39Z"
},
"/q/11571137/1114": {
"postId": 11571137,
"postTitle": "Using methods in Linq",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 22:41:10Z"
},
"/q/11573862/1236185": {
"postId": 11573862,
"postTitle": "what is max number computer in lan?",
"userId": 1236185,
"userName": "Tim",
"action": "Close",
"datetime": "2012-07-20 22:40:51Z"
},
"/q/11571988/1114": {
"postId": 11571988,
"postTitle": "1px “padding” in Safari/Opera/Chrome",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 22:40:41Z"
},
"/q/11582214/1114": {
"postId": 11582214,
"postTitle": "doctype messes whole document how to fix?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 22:40:13Z"
},
"/q/11563870/1114": {
"postId": 11563870,
"postTitle": "Chrome not recognizing 24:00:00 while Firefox does",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Do Not Close",
"datetime": "2012-07-20 22:39:14Z"
},
"/q/11574798/1236185": {
"postId": 11574798,
"postTitle": "Mobile control for presentation",
"userId": 1236185,
"userName": "Tim",
"action": "Close",
"datetime": "2012-07-20 22:39:12Z"
},
"/q/11585168/1114": {
"postId": 11585168,
"postTitle": "Launch an independent process with python",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Do Not Close",
"datetime": "2012-07-20 22:38:53Z"
},
"/q/11576361/1236185": {
"postId": 11576361,
"postTitle": "drawBox in opengl how to do it use opengl-es?",
"userId": 1236185,
"userName": "Tim",
"action": "Do Not Close",
"datetime": "2012-07-20 22:38:53Z"
},
"/q/11570650/1236185": {
"postId": 11570650,
"postTitle": "Sort two columns Excel",
"userId": 1236185,
"userName": "Tim",
"action": "Do Not Close",
"datetime": "2012-07-20 22:38:44Z"
},
"/q/11579168/1114": {
"postId": 11579168,
"postTitle": "Regex Issue for few formats",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 22:37:40Z"
},
"/q/98258/1236185": {
"postId": 98258,
"postTitle": "Do you charge for the first conversation you have with a prospective client?",
"userId": 1236185,
"userName": "Tim",
"action": "Close",
"datetime": "2012-07-20 22:37:33Z"
},
"/q/10754134/1236185": {
"postId": 10754134,
"postTitle": "First Data Global Gateway API Plugin Component",
"userId": 1236185,
"userName": "Tim",
"action": "Close",
"datetime": "2012-07-20 22:37:26Z"
},
"/q/11575516/1236185": {
"postId": 11575516,
"postTitle": "Skipping skype testing call message",
"userId": 1236185,
"userName": "Tim",
"action": "Close",
"datetime": "2012-07-20 22:35:01Z"
},
"/q/11562144/1114": {
"postId": 11562144,
"postTitle": "Animating a marker to show direction",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 22:34:44Z"
},
"/q/11410309/1236185": {
"postId": 11410309,
"postTitle": "Basic things required to develop a full fledged CMS? [closed]",
"userId": 1236185,
"userName": "Tim",
"action": "Close",
"datetime": "2012-07-20 22:34:33Z"
},
"/q/11571057/1114": {
"postId": 11571057,
"postTitle": "How to upload a file on mobile",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 22:34:27Z"
},
"/q/11574574/1236185": {
"postId": 11574574,
"postTitle": "How To create Dynamic Xml Sitemap in php?",
"userId": 1236185,
"userName": "Tim",
"action": "Close",
"datetime": "2012-07-20 22:34:10Z"
},
"/q/11564452/1114": {
"postId": 11564452,
"postTitle": "Load program from web procotol",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 22:34:09Z"
},
"/q/11557260/1236185": {
"postId": 11557260,
"postTitle": "Inserting values in to sql database",
"userId": 1236185,
"userName": "Tim",
"action": "Do Not Close",
"datetime": "2012-07-20 22:33:56Z"
},
"/q/11567176/1236185": {
"postId": 11567176,
"postTitle": "How do you set up .vimrc",
"userId": 1236185,
"userName": "Tim",
"action": "Do Not Close",
"datetime": "2012-07-20 22:33:34Z"
},
"/q/11576904/1114": {
"postId": 11576904,
"postTitle": "Ultimate guide for choosing a database / storage solution? [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 22:33:33Z"
},
"/q/11567607/1114": {
"postId": 11567607,
"postTitle": "unexplained syntax error in for loop",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 22:33:13Z"
},
"/q/3312803/1114": {
"postId": 3312803,
"postTitle": "from … import * with __import__ function",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 22:28:52Z"
},
"/q/11564327/1114": {
"postId": 11564327,
"postTitle": "JavaScript error - $e is not defined",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 22:28:11Z"
},
"/q/11560041/1114": {
"postId": 11560041,
"postTitle": "Getting all the css information about a generic node in a DOM tree in Java",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Do Not Close",
"datetime": "2012-07-20 22:27:47Z"
},
"/q/11573295/1114": {
"postId": 11573295,
"postTitle": "Do we have a good javascript debugger? [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 22:26:55Z"
},
"/q/11574195/1114": {
"postId": 11574195,
"postTitle": "How to merge multiple lists into one list in python?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Do Not Close",
"datetime": "2012-07-20 22:26:33Z"
},
"/q/11558409/1114": {
"postId": 11558409,
"postTitle": "How will get system file separator in javascript?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 22:24:16Z"
},
"/q/11569556/1114": {
"postId": 11569556,
"postTitle": "How do I update a mysql database from a mutliple line form using php [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 22:23:30Z"
},
"/q/11573239/1114": {
"postId": 11573239,
"postTitle": "Preventing site from refreshing using JS",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Do Not Close",
"datetime": "2012-07-20 22:22:17Z"
},
"/q/11584705/1114": {
"postId": 11584705,
"postTitle": "Memory Build Up In IE9",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 22:20:45Z"
},
"/q/11585055/1114": {
"postId": 11585055,
"postTitle": "Regarding javascript",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 22:20:11Z"
},
"/q/11586478/1114": {
"postId": 11586478,
"postTitle": "Canvas in JavaScript Issue",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 22:18:08Z"
},
"/q/11572229/1114": {
"postId": 11572229,
"postTitle": "getting content of dynamically loaded javascript",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Do Not Close",
"datetime": "2012-07-20 22:17:57Z"
},
"/q/5878161/1114": {
"postId": 5878161,
"postTitle": "Do I have to pay to use certain programming languages or apis?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 22:17:39Z"
},
"/q/11568850/1114": {
"postId": 11568850,
"postTitle": "Equivalent of .ready() for a div?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 22:17:15Z"
},
"/q/3749433/405725": {
"postId": 3749433,
"postTitle": "Are there any uml tools on Ubuntu ?",
"userId": 405725,
"userName": "Vlad Lazarenko",
"action": "Close",
"datetime": "2012-07-20 22:04:36Z"
},
"/q/11574791/12547": {
"postId": 11574791,
"postTitle": "How to Use Geopoint?",
"userId": 12547,
"userName": "Kaarel",
"action": "Close",
"datetime": "2012-07-20 21:55:03Z"
},
"/q/6082474/334849": {
"postId": 6082474,
"postTitle": "Problem with virsh commands",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:50:48Z"
},
"/q/11579780/334849": {
"postId": 11579780,
"postTitle": "How to get the component and component template tcm id using JavaScript?",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:50:42Z"
},
"/q/11583809/334849": {
"postId": 11583809,
"postTitle": "i can't get my drop-down menus to work in IE8",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:50:35Z"
},
"/q/10649946/334849": {
"postId": 10649946,
"postTitle": "Google Maps API Terms of Service",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:50:22Z"
},
"/q/7248642/334849": {
"postId": 7248642,
"postTitle": "Create self-signed certificate using Bouncy Castle in C#",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:50:17Z"
},
"/q/11582226/334849": {
"postId": 11582226,
"postTitle": "How to horizontally center two divs within a header div?",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:50:01Z"
},
"/q/11567551/334849": {
"postId": 11567551,
"postTitle": "Unintuitive javascript behaviour when using for in",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:49:55Z"
},
"/q/11581700/334849": {
"postId": 11581700,
"postTitle": "JQuery Modify script",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:49:49Z"
},
"/q/11561650/334849": {
"postId": 11561650,
"postTitle": "Implementing Word Extraction from an Image by OCR Tesseract",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:49:41Z"
},
"/q/11559712/334849": {
"postId": 11559712,
"postTitle": "Print text from few div",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:49:25Z"
},
"/q/11570584/334849": {
"postId": 11570584,
"postTitle": "Posting image to Facebook [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:49:20Z"
},
"/q/11410309/334849": {
"postId": 11410309,
"postTitle": "Basic things required to develop a full fledged CMS? [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:49:14Z"
},
"/q/11552214/334849": {
"postId": 11552214,
"postTitle": "Network communication between apps",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:48:46Z"
},
"/q/11564059/334849": {
"postId": 11564059,
"postTitle": "What are some of the oldest 'systems' still running things today? [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:48:39Z"
},
"/q/11557335/334849": {
"postId": 11557335,
"postTitle": "Index was out of range error",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:48:14Z"
},
"/q/11574692/334849": {
"postId": 11574692,
"postTitle": "dll has no valid clr header and cannot be disassembled",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:48:01Z"
},
"/q/11586440/334849": {
"postId": 11586440,
"postTitle": "Custom Finder (folder) Image w/ Cocoa",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:47:23Z"
},
"/q/1542236/334849": {
"postId": 1542236,
"postTitle": "Class not registered Exception - Microsoft Office 2003 OCR with MODI-C# Windows Application [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:47:08Z"
},
"/q/11584125/334849": {
"postId": 11584125,
"postTitle": "Creating a blog/facebook/twitter feed app.",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:47:00Z"
},
"/q/11575452/334849": {
"postId": 11575452,
"postTitle": "HTML Form Validation Assistance [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:46:43Z"
},
"/q/11558501/334849": {
"postId": 11558501,
"postTitle": "New tabs in webkit [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:46:38Z"
},
"/q/7105093/334849": {
"postId": 7105093,
"postTitle": "Difference between datetime and timestamp in sqlserver?",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:46:31Z"
},
"/q/11579714/334849": {
"postId": 11579714,
"postTitle": "Excel - Unable to open https// <<PATH>> Cannot download the information you requested -— How to disable",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:45:58Z"
},
"/q/11570223/334849": {
"postId": 11570223,
"postTitle": "Conditional Min and Max in Excel 2010",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:45:34Z"
},
"/q/11247367/334849": {
"postId": 11247367,
"postTitle": "dll Reference Missing",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:45:23Z"
},
"/q/11561645/334849": {
"postId": 11561645,
"postTitle": "DOS ftp listing to local file",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:44:58Z"
},
"/q/11563734/334849": {
"postId": 11563734,
"postTitle": "Nested Insert-Exec",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:44:43Z"
},
"/q/6961231/334849": {
"postId": 6961231,
"postTitle": "Limiting characters in cells in Excel upon opening a file",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Do Not Close",
"datetime": "2012-07-20 21:44:18Z"
},
"/q/10746792/334849": {
"postId": 10746792,
"postTitle": "Excel: Find MIN/MAX date in a range if it matches criteria of other columns",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:43:29Z"
},
"/q/10011513/334849": {
"postId": 10011513,
"postTitle": "QUICK REPORT View using Crystal Report Viewer",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:43:10Z"
},
"/q/11581820/334849": {
"postId": 11581820,
"postTitle": "Why does this procedure work fine with Notepad, but not with Microsoft Access",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:42:52Z"
},
"/q/11551471/334849": {
"postId": 11551471,
"postTitle": "In SQL Server 2005, how can you lock a specific row against both reads and writes?",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Do Not Close",
"datetime": "2012-07-20 21:42:45Z"
},
"/q/11582498/334849": {
"postId": 11582498,
"postTitle": "Databases entering “In recovery” mode on restore [migrated]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:42:13Z"
},
"/q/11584686/334849": {
"postId": 11584686,
"postTitle": "Undefined function 'Work_Days' in expression",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:42:06Z"
},
"/q/11569882/334849": {
"postId": 11569882,
"postTitle": "Can't attach the sample database in SQL Server 2012",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:41:47Z"
},
"/q/11566422/334849": {
"postId": 11566422,
"postTitle": "Make this function return distinct results",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:41:37Z"
},
"/q/6390588/334849": {
"postId": 6390588,
"postTitle": "Creating a criteria search in Access",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:41:22Z"
},
"/q/11521842/334849": {
"postId": 11521842,
"postTitle": "Store Columns in List sql c#",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:40:17Z"
},
"/q/11467602/334849": {
"postId": 11467602,
"postTitle": "Create one table out of thousands, the same number of columns, varied rows, copy heading into rows of respective table",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:40:05Z"
},
"/q/11566701/334849": {
"postId": 11566701,
"postTitle": "SQL stored procedure taking 2 arrays and 1 int ADO.NET",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:39:40Z"
},
"/q/2880386/334849": {
"postId": 2880386,
"postTitle": "why is Snowbird browser faster than Windows Explorer..?",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:39:07Z"
},
"/q/11581906/798448": {
"postId": 11581906,
"postTitle": "What web technology does Youtube use to create it's playlist bar? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 21:38:59Z"
},
"/q/11572446/334849": {
"postId": 11572446,
"postTitle": "How to add a unique constraint UNLESS null? [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:38:52Z"
},
"/q/11189294/334849": {
"postId": 11189294,
"postTitle": "Play video according to Id",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:38:10Z"
},
"/q/11576626/798448": {
"postId": 11576626,
"postTitle": "Keep Http session alive asp.net [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 21:37:46Z"
},
"/q/11578882/334849": {
"postId": 11578882,
"postTitle": "Computed columns in view's nested queries",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-20 21:37:38Z"
},
"/q/11581437/798448": {
"postId": 11581437,
"postTitle": "How can I bind a click event using wildcard jquery? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 21:37:27Z"
},
"/q/11568134/502381": {
"postId": 11568134,
"postTitle": "Consistent graph drawing",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-20 21:35:56Z"
},
"/q/11556613/798448": {
"postId": 11556613,
"postTitle": "Source code of hackbook for Facebook/Android not working [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 21:35:43Z"
},
"/q/11566003/798448": {
"postId": 11566003,
"postTitle": "Plagiarism for different files [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 21:35:30Z"
},
"/q/11577974/502381": {
"postId": 11577974,
"postTitle": "my jsp page doesn't know my game class",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-20 21:35:09Z"
},
"/q/11584001/502381": {
"postId": 11584001,
"postTitle": "copy spreadsheet rows and columns on a webpage",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-20 21:34:46Z"
},
"/q/11577507/502381": {
"postId": 11577507,
"postTitle": "Misalignment of website in Firefox Linux",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-20 21:34:23Z"
},
"/q/11576395/798448": {
"postId": 11576395,
"postTitle": "alternatives to twitterjs? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 21:34:15Z"
},
"/q/11583004/502381": {
"postId": 11583004,
"postTitle": "Github - how many developers are working on a public project?",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-20 21:33:00Z"
},
"/q/11586782/502381": {
"postId": 11586782,
"postTitle": "How many web users be unable to use my app if I used HTML 5?",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-20 21:32:10Z"
},
"/q/11481318/798448": {
"postId": 11481318,
"postTitle": "Opinion needed about structure of multi-site platform [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 21:31:55Z"
},
"/q/11560244/798448": {
"postId": 11560244,
"postTitle": "Cannot change Visible in OnShow or OnHide [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 21:31:25Z"
},
"/q/11577199/502381": {
"postId": 11577199,
"postTitle": "I want to drag and drop 6 images from one container to another in html5 using javascript [closed]",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-20 21:31:23Z"
},
"/q/11581130/798448": {
"postId": 11581130,
"postTitle": "is this php for loop correct? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 21:29:06Z"
},
"/q/11583211/798448": {
"postId": 11583211,
"postTitle": "How to retrieve the values of required keys in Perl [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 21:27:45Z"
},
"/q/11560478/798448": {
"postId": 11560478,
"postTitle": "Weird PHP redirection [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 21:27:30Z"
},
"/q/11449177/798448": {
"postId": 11449177,
"postTitle": "How to hide file name, id and session variable in URL using php? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 21:26:20Z"
},
"/q/11578962/798448": {
"postId": 11578962,
"postTitle": "Magento products to ebay store [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 21:25:36Z"
},
"/q/11562636/105084": {
"postId": 11562636,
"postTitle": "How do I format stringbuilder to send my emails in tables rather then just plain text",
"userId": 105084,
"userName": "Matthew",
"action": "Do Not Close",
"datetime": "2012-07-20 20:38:53Z"
},
"/q/11552433/170443": {
"postId": 11552433,
"postTitle": "Is there anyway to send and receive email in linux command using POP3? [migrated]",
"userId": 170443,
"userName": "jdehaan",
"action": "Close",
"datetime": "2012-07-20 19:34:38Z"
},
"/q/11577444/170443": {
"postId": 11577444,
"postTitle": "Working with sharepoint 2007 [closed]",
"userId": 170443,
"userName": "jdehaan",
"action": "Close",
"datetime": "2012-07-20 19:34:20Z"
},
"/q/11202904/170443": {
"postId": 11202904,
"postTitle": "How can I convert a gridview into a PDF file without a pop-up window?",
"userId": 170443,
"userName": "jdehaan",
"action": "Close",
"datetime": "2012-07-20 19:33:58Z"
},
"/q/10788331/405725": {
"postId": 10788331,
"postTitle": "Linker errors while using VS-C++ 2010 Express edition",
"userId": 405725,
"userName": "Vlad Lazarenko",
"action": "Close",
"datetime": "2012-07-20 18:59:41Z"
},
"/q/11581509/405725": {
"postId": 11581509,
"postTitle": "Linux Raid5 faulty array",
"userId": 405725,
"userName": "Vlad Lazarenko",
"action": "Close",
"datetime": "2012-07-20 18:59:32Z"
},
"/q/11525164/405725": {
"postId": 11525164,
"postTitle": "What is wrong with access()?",
"userId": 405725,
"userName": "Vlad Lazarenko",
"action": "Close",
"datetime": "2012-07-20 18:59:25Z"
},
"/q/562303/405725": {
"postId": 562303,
"postTitle": "The Definitive C Book Guide and List",
"userId": 405725,
"userName": "Vlad Lazarenko",
"action": "Do Not Close",
"datetime": "2012-07-20 18:59:12Z"
},
"/q/1447946/405725": {
"postId": 1447946,
"postTitle": "C cross-platform sound input library [closed]",
"userId": 405725,
"userName": "Vlad Lazarenko",
"action": "Close",
"datetime": "2012-07-20 18:58:58Z"
},
"/q/11567456/405725": {
"postId": 11567456,
"postTitle": "Access Headless VM Over Multiple SSH Hops [closed]",
"userId": 405725,
"userName": "Vlad Lazarenko",
"action": "Close",
"datetime": "2012-07-20 18:58:49Z"
},
"/q/2170276/405725": {
"postId": 2170276,
"postTitle": "Calculating Fibonacci Numbers Recursively in C",
"userId": 405725,
"userName": "Vlad Lazarenko",
"action": "Close",
"datetime": "2012-07-20 18:58:39Z"
},
"/q/11543386/427763": {
"postId": 11543386,
"postTitle": "Why can't I call BuildSessionFactory since the update from NHibernate 2 to 3.3.1?",
"userId": 427763,
"userName": "prolink007",
"action": "Edit",
"datetime": "2012-07-20 18:56:40Z"
},
"/q/11575545/427763": {
"postId": 11575545,
"postTitle": "shopping cart array [closed]",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-20 18:55:20Z"
},
"/q/4926293/427763": {
"postId": 4926293,
"postTitle": "Looking for a solution for WiFi proxy issue with Android",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-20 18:54:38Z"
},
"/q/11566911/16487": {
"postId": 11566911,
"postTitle": "Create Directory C# Not failing but Folder not being Created",
"userId": 16487,
"userName": "C. Ross",
"action": "Do Not Close",
"datetime": "2012-07-20 18:20:40Z"
},
"/q/2642119/759019": {
"postId": 2642119,
"postTitle": "Have minimized windows with a unique icon/color?",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Close",
"datetime": "2012-07-20 18:00:57Z"
},
"/q/11557864/759019": {
"postId": 11557864,
"postTitle": "PHP script to check if an email is subscribed to feeds of my blog",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Close",
"datetime": "2012-07-20 17:59:32Z"
},
"/q/11544301/759019": {
"postId": 11544301,
"postTitle": "locking excel formulas",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Do Not Close",
"datetime": "2012-07-20 17:58:41Z"
},
"/q/11576514/759019": {
"postId": 11576514,
"postTitle": "Structuring MVC with PDO and PHP 5 [closed]",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Close",
"datetime": "2012-07-20 17:58:06Z"
},
"/q/11569017/57787": {
"postId": 11569017,
"postTitle": "What is the difference between typeof and is when comparing object types?",
"userId": 57787,
"userName": "Joshua",
"action": "Close",
"datetime": "2012-07-20 17:55:43Z"
},
"/q/11553924/759019": {
"postId": 11553924,
"postTitle": "Is there any open source face-match software?",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Close",
"datetime": "2012-07-20 17:55:14Z"
},
"/q/11557383/57787": {
"postId": 11557383,
"postTitle": "print pdf documents in bulk and then staple them individually in c# and also how to pass printer settings arguments to process.startinfo()",
"userId": 57787,
"userName": "Joshua",
"action": "Close",
"datetime": "2012-07-20 17:54:58Z"
},
"/q/7555906/57787": {
"postId": 7555906,
"postTitle": "Why my Identifiers is not CLS-compliant?",
"userId": 57787,
"userName": "Joshua",
"action": "Close",
"datetime": "2012-07-20 17:54:03Z"
},
"/q/11582913/1468366": {
"postId": 11582913,
"postTitle": "Opening zip files created with java.util.zip in Windows 7",
"userId": 1468366,
"userName": "MvG",
"action": "Close",
"datetime": "2012-07-20 17:48:49Z"
},
"/q/11582062/1468366": {
"postId": 11582062,
"postTitle": "Read content of a JScrollPane",
"userId": 1468366,
"userName": "MvG",
"action": "Do Not Close",
"datetime": "2012-07-20 17:47:02Z"
},
"/q/11567173/1468366": {
"postId": 11567173,
"postTitle": "Finding the cause of NaN error",
"userId": 1468366,
"userName": "MvG",
"action": "Do Not Close",
"datetime": "2012-07-20 17:46:26Z"
},
"/q/11581880/1468366": {
"postId": 11581880,
"postTitle": "how to trigger MySQL query",
"userId": 1468366,
"userName": "MvG",
"action": "Do Not Close",
"datetime": "2012-07-20 17:46:04Z"
},
"/q/116865/1468366": {
"postId": 116865,
"postTitle": "What’s the current state of closures in Java?",
"userId": 1468366,
"userName": "MvG",
"action": "Do Not Close",
"datetime": "2012-07-20 17:45:51Z"
},
"/q/4099420/1468366": {
"postId": 4099420,
"postTitle": "best mysql table type for a lookup table (heavy read, no write)",
"userId": 1468366,
"userName": "MvG",
"action": "Do Not Close",
"datetime": "2012-07-20 17:45:43Z"
},
"/q/11573855/1468366": {
"postId": 11573855,
"postTitle": "Increment a value by 1 when button is clicked C++",
"userId": 1468366,
"userName": "MvG",
"action": "Do Not Close",
"datetime": "2012-07-20 17:45:10Z"
},
"/q/3513179/1468366": {
"postId": 3513179,
"postTitle": "How to Access File Descriptor of Open File",
"userId": 1468366,
"userName": "MvG",
"action": "Do Not Close",
"datetime": "2012-07-20 17:43:15Z"
},
"/q/11583714/612429": {
"postId": 11583714,
"postTitle": "psycopg2 on ubuntu",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 17:42:33Z"
},
"/q/11566151/612429": {
"postId": 11566151,
"postTitle": "How can i convert a multilayer model to compressed layer model",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 17:41:38Z"
},
"/q/11557972/612429": {
"postId": 11557972,
"postTitle": "Refresh child window on parent window",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 17:41:01Z"
},
"/q/11581107/612429": {
"postId": 11581107,
"postTitle": "Python web-framework without forced OOP [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 17:40:44Z"
},
"/q/11570868/612429": {
"postId": 11570868,
"postTitle": "How to automatically click a confirm box?",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-20 17:40:32Z"
},
"/q/11582150/612429": {
"postId": 11582150,
"postTitle": "index trees with c++/boost [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-20 17:37:53Z"
},
"/q/2170276/612429": {
"postId": 2170276,
"postTitle": "Calculating Fibonacci Numbers Recursively in C",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 17:36:45Z"
},
"/q/11584196/612429": {
"postId": 11584196,
"postTitle": "How to make accordion to expand on hover not on click?",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 17:36:28Z"
},
"/q/11554771/612429": {
"postId": 11554771,
"postTitle": "Project Euler #11. Is the logic in my program wrong? [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 17:36:07Z"
},
"/q/11562590/612429": {
"postId": 11562590,
"postTitle": "Postgresql failed to start",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 17:34:28Z"
},
"/q/11554251/612429": {
"postId": 11554251,
"postTitle": "JavaScript disabled, with <noscript> tag can we do validations",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 17:29:09Z"
},
"/q/11583820/612429": {
"postId": 11583820,
"postTitle": "How would I find a JSON object that has a child with a specific 'id'?",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 17:28:43Z"
},
"/q/11584008/612429": {
"postId": 11584008,
"postTitle": "javascript virtual audio input and output device [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 17:28:22Z"
},
"/q/11579728/612429": {
"postId": 11579728,
"postTitle": "Date Picker Using Dropdown Menu for all fields JavaScript and JQuery W/O Calendar",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 17:28:00Z"
},
"/q/11573398/798448": {
"postId": 11573398,
"postTitle": "how can i achieve payment gateway in my struts project? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 17:27:55Z"
},
"/q/562303/612429": {
"postId": 562303,
"postTitle": "The Definitive C Book Guide and List",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 17:27:48Z"
},
"/q/11513943/798448": {
"postId": 11513943,
"postTitle": "Functionality needed similar to Google Contacts - “New Contact” [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 17:27:41Z"
},
"/q/11545265/612429": {
"postId": 11545265,
"postTitle": "Links in html confused",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-20 17:27:40Z"
},
"/q/11573295/612429": {
"postId": 11573295,
"postTitle": "Do we have a good javascript debugger? [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 17:27:11Z"
},
"/q/11558501/612429": {
"postId": 11558501,
"postTitle": "New tabs in webkit [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 17:26:58Z"
},
"/q/11525164/612429": {
"postId": 11525164,
"postTitle": "What is wrong with access()?",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 17:26:48Z"
},
"/q/11574601/798448": {
"postId": 11574601,
"postTitle": "Dfference between emulator and AVD [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 17:26:46Z"
},
"/q/11578475/612429": {
"postId": 11578475,
"postTitle": "what is the error in following C Program ??- to store the content of a Directory in a Data Structure [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 17:26:08Z"
},
"/q/11551182/612429": {
"postId": 11551182,
"postTitle": "Ajax and Grails for Dummies",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-20 17:25:59Z"
},
"/q/11565700/612429": {
"postId": 11565700,
"postTitle": "Pros and cons of this extend function, for Javascript",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 17:25:51Z"
},
"/q/11579183/798448": {
"postId": 11579183,
"postTitle": "Calling a function from a file by href by javascript [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 17:25:31Z"
},
"/q/11569556/612429": {
"postId": 11569556,
"postTitle": "How do I update a mysql database from a mutliple line form using php [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 17:25:20Z"
},
"/q/11554606/612429": {
"postId": 11554606,
"postTitle": "How to add block comments in HTML?",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 17:25:06Z"
},
"/q/11580165/612429": {
"postId": 11580165,
"postTitle": "Javascript/jQuery based HTML editor [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 17:24:36Z"
},
"/q/11570472/612429": {
"postId": 11570472,
"postTitle": "How to read and extract data from a file (not csv file) that contains commas using python and then plot",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-20 17:24:25Z"
},
"/q/8725172/612429": {
"postId": 8725172,
"postTitle": "How to check radio button is checked using JQuery?",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 17:20:47Z"
},
"/q/11582908/612429": {
"postId": 11582908,
"postTitle": "How to use global variable inside the html?",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 17:20:36Z"
},
"/q/11567173/612429": {
"postId": 11567173,
"postTitle": "Finding the cause of NaN error",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 17:20:03Z"
},
"/q/11582226/612429": {
"postId": 11582226,
"postTitle": "How to horizontally center two divs within a header div?",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 17:19:55Z"
},
"/q/11577533/612429": {
"postId": 11577533,
"postTitle": "Array.prototype vs [] perf",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-20 17:19:25Z"
},
"/q/11571798/16487": {
"postId": 11571798,
"postTitle": "Char data type in C/C++",
"userId": 16487,
"userName": "C. Ross",
"action": "Do Not Close",
"datetime": "2012-07-20 16:44:39Z"
},
"/q/2904299/798448": {
"postId": 2904299,
"postTitle": "How exactly can Python compliment your C# skills for windows based development? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 16:40:36Z"
},
"/q/10085039/798448": {
"postId": 10085039,
"postTitle": "PostgreSql 'PDOException' with message 'could not find driver' [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 16:40:22Z"
},
"/q/11546677/16487": {
"postId": 11546677,
"postTitle": "Not all WCF performance counters showing up for service instances on Windows Server 2008",
"userId": 16487,
"userName": "C. Ross",
"action": "Close",
"datetime": "2012-07-20 16:40:13Z"
},
"/q/1633255/16487": {
"postId": 1633255,
"postTitle": "Good .NET Application Installer",
"userId": 16487,
"userName": "C. Ross",
"action": "Close",
"datetime": "2012-07-20 16:39:35Z"
},
"/q/11558899/16487": {
"postId": 11558899,
"postTitle": "Passing a string to C-code in Android NDK",
"userId": 16487,
"userName": "C. Ross",
"action": "Do Not Close",
"datetime": "2012-07-20 16:39:16Z"
},
"/q/11525164/16487": {
"postId": 11525164,
"postTitle": "What is wrong with access()?",
"userId": 16487,
"userName": "C. Ross",
"action": "Close",
"datetime": "2012-07-20 16:37:56Z"
},
"/q/11558997/16487": {
"postId": 11558997,
"postTitle": "what is the diagram the layers of .NET 4.0 architecture? [closed]",
"userId": 16487,
"userName": "C. Ross",
"action": "Close",
"datetime": "2012-07-20 16:37:29Z"
},
"/q/9866186/16487": {
"postId": 9866186,
"postTitle": "Best way to get a website off the ground with a python and C#/.NET background?",
"userId": 16487,
"userName": "C. Ross",
"action": "Close",
"datetime": "2012-07-20 16:37:15Z"
},
"/q/1447946/16487": {
"postId": 1447946,
"postTitle": "C cross-platform sound input library [closed]",
"userId": 16487,
"userName": "C. Ross",
"action": "Close",
"datetime": "2012-07-20 16:37:05Z"
},
"/q/11573281/16487": {
"postId": 11573281,
"postTitle": "MVVM and WebMatrix? [closed]",
"userId": 16487,
"userName": "C. Ross",
"action": "Close",
"datetime": "2012-07-20 16:35:56Z"
},
"/q/11576120/16487": {
"postId": 11576120,
"postTitle": "How do we know whether or not a word in English? .NET Ranorex C#",
"userId": 16487,
"userName": "C. Ross",
"action": "Do Not Close",
"datetime": "2012-07-20 16:35:46Z"
},
"/q/11562590/1137055": {
"postId": 11562590,
"postTitle": "Postgresql failed to start",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 16:35:17Z"
},
"/q/11539903/16487": {
"postId": 11539903,
"postTitle": "Application can't find CrystalReports after deployment [closed]",
"userId": 16487,
"userName": "C. Ross",
"action": "Close",
"datetime": "2012-07-20 16:35:01Z"
},
"/q/11578249/16487": {
"postId": 11578249,
"postTitle": "Web-Setup Deployment in Visual Studio 2010 [closed]",
"userId": 16487,
"userName": "C. Ross",
"action": "Close",
"datetime": "2012-07-20 16:34:45Z"
},
"/q/11573538/16487": {
"postId": 11573538,
"postTitle": "Tutorial or example for zookeeper C binding",
"userId": 16487,
"userName": "C. Ross",
"action": "Close",
"datetime": "2012-07-20 16:34:34Z"
},
"/q/11572970/1137055": {
"postId": 11572970,
"postTitle": "jQuery Slider is not working on Live Server [closed]",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 16:33:42Z"
},
"/q/11559492/1137055": {
"postId": 11559492,
"postTitle": "buddypress administrator separate then site admin",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 16:33:16Z"
},
"/q/11579055/1137055": {
"postId": 11579055,
"postTitle": "getJSON return variable.. solution?",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 16:32:39Z"
},
"/q/11550029/1137055": {
"postId": 11550029,
"postTitle": "How to install git on Linux [closed]",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 16:29:56Z"
},
"/q/11579807/1137055": {
"postId": 11579807,
"postTitle": "Remove empty <li> using jQuery",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 16:29:29Z"
},
"/q/11579367/105672": {
"postId": 11579367,
"postTitle": "Implementation of Goertzel algorithm in C",
"userId": 105672,
"userName": "pmr",
"action": "Do Not Close",
"datetime": "2012-07-20 16:25:01Z"
},
"/q/11580433/479167": {
"postId": 11580433,
"postTitle": "Comparing Numbers when those Numbers are strings [closed]",
"userId": 479167,
"userName": "rubish",
"action": "Close",
"datetime": "2012-07-20 16:22:48Z"
},
"/q/11570542/479167": {
"postId": 11570542,
"postTitle": "Instance not found. Rubber Gem",
"userId": 479167,
"userName": "rubish",
"action": "Close",
"datetime": "2012-07-20 16:18:09Z"
},
"/q/11562410/479167": {
"postId": 11562410,
"postTitle": "Rails 2.3.5 and mysql gem syntax error for date field",
"userId": 479167,
"userName": "rubish",
"action": "Do Not Close",
"datetime": "2012-07-20 16:17:30Z"
},
"/q/11547689/479167": {
"postId": 11547689,
"postTitle": "Zipping files in a directory with Ruby on Rails",
"userId": 479167,
"userName": "rubish",
"action": "Close",
"datetime": "2012-07-20 16:16:23Z"
},
"/q/10770163/861565": {
"postId": 10770163,
"postTitle": "Use AnimateWindow in a new thread",
"userId": 861565,
"userName": "jadarnel27",
"action": "Close",
"datetime": "2012-07-20 16:15:04Z"
},
"/q/11555355/861565": {
"postId": 11555355,
"postTitle": "Calculating the distance between 2 points",
"userId": 861565,
"userName": "jadarnel27",
"action": "Close",
"datetime": "2012-07-20 16:14:49Z"
},
"/q/11533010/861565": {
"postId": 11533010,
"postTitle": "Is using short-circuit evaluation to avoid an index out of range exception a bad habit?",
"userId": 861565,
"userName": "jadarnel27",
"action": "Close",
"datetime": "2012-07-20 16:14:07Z"
},
"/q/11549456/479167": {
"postId": 11549456,
"postTitle": "No route matches [POST]",
"userId": 479167,
"userName": "rubish",
"action": "Close",
"datetime": "2012-07-20 16:13:41Z"
},
"/q/11581054/479512": {
"postId": 11581054,
"postTitle": "Writing XML in ASP.NET",
"userId": 479512,
"userName": "Mark Hall",
"action": "Close",
"datetime": "2012-07-20 16:09:32Z"
},
"/q/11545573/1175599": {
"postId": 11545573,
"postTitle": "php-function, passing value to specific argument?",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:58:09Z"
},
"/q/11574525/1175599": {
"postId": 11574525,
"postTitle": "printed stdClass vs object",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:57:05Z"
},
"/q/11572416/1175599": {
"postId": 11572416,
"postTitle": "PHP and MySQL: Find out which file or query is causing heavy CPU load [closed]",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:56:51Z"
},
"/q/2915864/1175599": {
"postId": 2915864,
"postTitle": "PHP How to find the time elapsed since a date time?",
"userId": 1175599,
"userName": "GDP",
"action": "Do Not Close",
"datetime": "2012-07-20 15:56:31Z"
},
"/q/11576514/1175599": {
"postId": 11576514,
"postTitle": "Structuring MVC with PDO and PHP 5 [closed]",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:55:57Z"
},
"/q/11555883/1175599": {
"postId": 11555883,
"postTitle": "Building a recommendation engine for a webapp (Rails + MySQL + ?) — where to start",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:55:30Z"
},
"/q/11569556/1175599": {
"postId": 11569556,
"postTitle": "How do I update a mysql database from a mutliple line form using php [closed]",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:53:17Z"
},
"/q/11560144/1175599": {
"postId": 11560144,
"postTitle": "Multiple conditional statement",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:52:47Z"
},
"/q/11572524/1175599": {
"postId": 11572524,
"postTitle": "how to limit fetch from while loop",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:52:23Z"
},
"/q/8735579/1175599": {
"postId": 8735579,
"postTitle": "PHP & mySQLi: Do I still need to check user input when using prepare statements?",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:52:11Z"
},
"/q/11547699/1175599": {
"postId": 11547699,
"postTitle": "How to make calculations with javascript or jQuery, grabbing values from various different elements?",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:50:50Z"
},
"/q/11553596/1175599": {
"postId": 11553596,
"postTitle": "Php MySql Error -",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:50:21Z"
},
"/q/11579071/1175599": {
"postId": 11579071,
"postTitle": "bad word filter through txt file [closed]",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:49:58Z"
},
"/q/11564002/1175599": {
"postId": 11564002,
"postTitle": "Can I print to my printer with PHP and Apache?",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:49:35Z"
},
"/q/11269269/1175599": {
"postId": 11269269,
"postTitle": "Troubleshooting “Warning: mysqli_result::fetch_array() expects parameter 1 to be long, object given”",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:49:23Z"
},
"/q/11582259/1175599": {
"postId": 11582259,
"postTitle": "Post result from javascript to variable [closed]",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:49:04Z"
},
"/q/11557588/1175599": {
"postId": 11557588,
"postTitle": "FPDF - Inbuilt class - Generate dyanamic column PDF",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:48:05Z"
},
"/q/11581130/1175599": {
"postId": 11581130,
"postTitle": "is this php for loop correct? [closed]",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:47:51Z"
},
"/q/11576759/1175599": {
"postId": 11576759,
"postTitle": "How to run a php file in background",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:47:32Z"
},
"/q/11561680/240733": {
"postId": 11561680,
"postTitle": "Deleting all the data from a datagridview",
"userId": 240733,
"userName": "stakx",
"action": "Do Not Close",
"datetime": "2012-07-20 15:47:23Z"
},
"/q/11545102/1175599": {
"postId": 11545102,
"postTitle": "Deny Error SQL 1142",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:47:15Z"
},
"/q/11566786/240733": {
"postId": 11566786,
"postTitle": "How could this be rewritten using ninject?",
"userId": 240733,
"userName": "stakx",
"action": "Close",
"datetime": "2012-07-20 15:46:29Z"
},
"/q/11578309/1175599": {
"postId": 11578309,
"postTitle": "How to block a site for a certain screen size?",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:46:29Z"
},
"/q/179332/240733": {
"postId": 179332,
"postTitle": "Anyone Actually Using F# in Production?",
"userId": 240733,
"userName": "stakx",
"action": "Close",
"datetime": "2012-07-20 15:44:54Z"
},
"/q/11529196/1175599": {
"postId": 11529196,
"postTitle": "Checking if a website exists",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:42:43Z"
},
"/q/2330719/1175599": {
"postId": 2330719,
"postTitle": "Limit a php function to one result",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:42:01Z"
},
"/q/10085039/1175599": {
"postId": 10085039,
"postTitle": "PostgreSql 'PDOException' with message 'could not find driver' [closed]",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:41:44Z"
},
"/q/11564024/1175599": {
"postId": 11564024,
"postTitle": "How to download file with webdriver in php? [closed]",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:41:11Z"
},
"/q/11562980/1175599": {
"postId": 11562980,
"postTitle": "How to properly protect form action attribute",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:41:01Z"
},
"/q/11574574/1175599": {
"postId": 11574574,
"postTitle": "How To create Dynamic Xml Sitemap in php?",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:40:28Z"
},
"/q/11556232/1175599": {
"postId": 11556232,
"postTitle": "how to use php objects? [closed]",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:40:16Z"
},
"/q/4901728/1175599": {
"postId": 4901728,
"postTitle": "mysql_fetch_array() expects parameter 1 to be resource, string given",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:40:04Z"
},
"/q/4099420/1175599": {
"postId": 4099420,
"postTitle": "best mysql table type for a lookup table (heavy read, no write)",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:39:42Z"
},
"/q/11582455/1175599": {
"postId": 11582455,
"postTitle": "How to download Net/SSH2.php",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:39:00Z"
},
"/q/11575630/1175599": {
"postId": 11575630,
"postTitle": "Send email from textarea [closed]",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:38:47Z"
},
"/q/10160664/1175599": {
"postId": 10160664,
"postTitle": "Mysqli_Query warning: mysqli_query() expects parameter 1 to be mysqli",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:38:26Z"
},
"/q/11581890/1175599": {
"postId": 11581890,
"postTitle": "I need to use fpdf to print only 3 records per page but still it prints all the records",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:38:07Z"
},
"/q/11570720/1175599": {
"postId": 11570720,
"postTitle": "How to use Friendly URLs?",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:37:53Z"
},
"/q/11581199/1175599": {
"postId": 11581199,
"postTitle": "PHP: Best method to extract numbers from a string",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:37:16Z"
},
"/q/11345985/1175599": {
"postId": 11345985,
"postTitle": "Move file into a specific folder",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:36:24Z"
},
"/q/11564984/1175599": {
"postId": 11564984,
"postTitle": "PHP substr function is not talking conveter integer varible",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:36:04Z"
},
"/q/11560478/1175599": {
"postId": 11560478,
"postTitle": "Weird PHP redirection [closed]",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:35:10Z"
},
"/q/11578241/1175599": {
"postId": 11578241,
"postTitle": "Is there any way to check the performance of mysql Indexing",
"userId": 1175599,
"userName": "GDP",
"action": "Do Not Close",
"datetime": "2012-07-20 15:34:53Z"
},
"/q/11565430/1175599": {
"postId": 11565430,
"postTitle": "Google custom search (php and mysql)",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:34:23Z"
},
"/q/11575286/1175599": {
"postId": 11575286,
"postTitle": "How to get all id when input enter is a string? [closed]",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:34:03Z"
},
"/q/10606752/1175599": {
"postId": 10606752,
"postTitle": "Php: Hit Count . Error :mysql_num_rows() expects parameter 1 to be resource",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:33:38Z"
},
"/q/11562410/1175599": {
"postId": 11562410,
"postTitle": "Rails 2.3.5 and mysql gem syntax error for date field",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:33:01Z"
},
"/q/11572520/1175599": {
"postId": 11572520,
"postTitle": "PHP - Re-sizing Image [closed]",
"userId": 1175599,
"userName": "GDP",
"action": "Close",
"datetime": "2012-07-20 15:32:27Z"
},
"/q/11581219/219118": {
"postId": 11581219,
"postTitle": "browser & platform detection by using javascript [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 15:31:56Z"
},
"/q/11581288/219118": {
"postId": 11581288,
"postTitle": "save the output of this function in a custom field",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 15:31:47Z"
},
"/q/11570108/219118": {
"postId": 11570108,
"postTitle": "Is it possible in any browser to find text on a webpage using search and “clicking” it without the mouse?",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 15:29:40Z"
},
"/q/11560208/219118": {
"postId": 11560208,
"postTitle": "syntax difference in javascript function calling?",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 15:29:23Z"
},
"/q/11573971/219118": {
"postId": 11573971,
"postTitle": "Is it possible transform one DOM element to another? Or copy all attributes from it?",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 15:28:52Z"
},
"/q/11577111/219118": {
"postId": 11577111,
"postTitle": "using a form values to create an account on another website",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 15:28:41Z"
},
"/q/11564414/219118": {
"postId": 11564414,
"postTitle": "Is any paging plugin dynamic html table with collapsed rows available? [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 15:27:46Z"
},
"/q/11578053/219118": {
"postId": 11578053,
"postTitle": "Traversing a JSON object",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 15:27:31Z"
},
"/q/11549335/219118": {
"postId": 11549335,
"postTitle": "Lock asp.net grid view header (IE 9+)",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 15:27:27Z"
},
"/q/11574487/219118": {
"postId": 11574487,
"postTitle": "jquery plugin drop-down menu like facebook [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 15:27:21Z"
},
"/q/11555154/219118": {
"postId": 11555154,
"postTitle": "PHP MySQL Prepared Query using IN",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 15:25:14Z"
},
"/q/11574767/219118": {
"postId": 11574767,
"postTitle": "gd not creating thumbnails in class in certain files with the same code of others that do in the same location (php.ini or 'gd' restriction?) [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 15:25:03Z"
},
"/q/11566626/219118": {
"postId": 11566626,
"postTitle": "Remove added event listener",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 15:24:55Z"
},
"/q/11576987/219118": {
"postId": 11576987,
"postTitle": "How to run a auction without settimeout and setinterval function in javascript???",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 15:24:45Z"
},
"/q/11561170/219118": {
"postId": 11561170,
"postTitle": "Retrieve variable value and not name of this variable",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 15:24:35Z"
},
"/q/11570574/219118": {
"postId": 11570574,
"postTitle": "Determine proper image quality for file size?",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 15:23:57Z"
},
"/q/1948123/219118": {
"postId": 1948123,
"postTitle": "how to change the output encoding, while displaying a file through php",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 15:23:46Z"
},
"/q/11571561/219118": {
"postId": 11571561,
"postTitle": "Compress HTML using Apache [migrated]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 15:23:35Z"
},
"/q/11557260/237838": {
"postId": 11557260,
"postTitle": "Inserting values in to sql database",
"userId": 237838,
"userName": "Andrew Barber",
"action": "Close",
"datetime": "2012-07-20 15:23:28Z"
},
"/q/3376141/219118": {
"postId": 3376141,
"postTitle": "OpenID vs. OAuth",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 15:23:08Z"
},
"/q/11578455/219118": {
"postId": 11578455,
"postTitle": "Video is not displaying?",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 15:22:57Z"
},
"/q/11570025/237838": {
"postId": 11570025,
"postTitle": "Volume Level Meter using C# [closed]",
"userId": 237838,
"userName": "Andrew Barber",
"action": "Close",
"datetime": "2012-07-20 15:22:51Z"
},
"/q/11581906/237838": {
"postId": 11581906,
"postTitle": "What web technology does Youtube use to create it's playlist bar? [closed]",
"userId": 237838,
"userName": "Andrew Barber",
"action": "Close",
"datetime": "2012-07-20 15:22:39Z"
},
"/q/11560041/219118": {
"postId": 11560041,
"postTitle": "Getting all the css information about a generic node in a DOM tree in Java",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 15:22:38Z"
},
"/q/10518058/219118": {
"postId": 10518058,
"postTitle": "mysql_fetch_array() expects parameter 1 to be resource, boolean given in C:\\wamp\\www\\inc\\prod_list.php on line 3?",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 15:22:29Z"
},
"/q/11576395/219118": {
"postId": 11576395,
"postTitle": "alternatives to twitterjs? [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 15:21:52Z"
},
"/q/11556836/219118": {
"postId": 11556836,
"postTitle": "Remove array indexes or create array without indexes",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 15:21:40Z"
},
"/q/11565460/219118": {
"postId": 11565460,
"postTitle": "Terminal and FixedSys fonts on Firefox 14.0.1",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 15:21:34Z"
},
"/q/11560758/219118": {
"postId": 11560758,
"postTitle": "Click on button with PHP or javascript?",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 15:21:12Z"
},
"/q/26947/219118": {
"postId": 26947,
"postTitle": "How to implement a web scraper in PHP?",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 15:20:49Z"
},
"/q/11577673/219118": {
"postId": 11577673,
"postTitle": "eval condition in javascript where the parameter type mismatch",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 15:20:39Z"
},
"/q/11561751/219118": {
"postId": 11561751,
"postTitle": "PHP - Scheduling function executions",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 15:19:03Z"
},
"/q/6266157/219118": {
"postId": 6266157,
"postTitle": "How to detect if a certain radio button is checked with jQuery?",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 15:18:53Z"
},
"/q/11579183/219118": {
"postId": 11579183,
"postTitle": "Calling a function from a file by href by javascript [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 15:18:39Z"
},
"/q/11575287/219118": {
"postId": 11575287,
"postTitle": "Jquery to display images and attachments [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 15:18:33Z"
},
"/q/11579763/219118": {
"postId": 11579763,
"postTitle": "Give to user an ability to choose specific html element on his web site by click [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 15:18:25Z"
},
"/q/11571394/219118": {
"postId": 11571394,
"postTitle": "Inspiration / convention for element names HTML",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 15:15:38Z"
},
"/q/11532537/219118": {
"postId": 11532537,
"postTitle": "change color of a row in a webgrid",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 15:15:20Z"
},
"/q/11581437/219118": {
"postId": 11581437,
"postTitle": "How can I bind a click event using wildcard jquery? [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 15:12:47Z"
},
"/q/11567707/219118": {
"postId": 11567707,
"postTitle": "CSSHttpRequest - javascript does not work transferred",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 15:12:30Z"
},
"/q/11580791/219118": {
"postId": 11580791,
"postTitle": "How to add controls to a javascipt timer",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 15:09:31Z"
},
"/q/4988425/219118": {
"postId": 4988425,
"postTitle": "MySQL query boolean given",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 15:09:04Z"
},
"/q/11566206/219118": {
"postId": 11566206,
"postTitle": "Two type of model classes at PHP using MVC?",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 15:09:01Z"
},
"/q/11572053/219118": {
"postId": 11572053,
"postTitle": "Quick JavaScript to find URLs on the page and make them into links [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 15:08:50Z"
},
"/q/11572095/219118": {
"postId": 11572095,
"postTitle": "Animated Jquery Tabs",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 15:08:33Z"
},
"/q/11570778/219118": {
"postId": 11570778,
"postTitle": "Flexible Layout in CSS like vBulletin",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 15:08:21Z"
},
"/q/11575453/219118": {
"postId": 11575453,
"postTitle": "Two-in-one image split at mouseover point",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 15:08:12Z"
},
"/q/11576793/219118": {
"postId": 11576793,
"postTitle": "php in_array confusion: the strict setting",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 15:07:23Z"
},
"/q/11579365/219118": {
"postId": 11579365,
"postTitle": "PHP Cryptography code explanation",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 15:07:14Z"
},
"/q/11578649/219118": {
"postId": 11578649,
"postTitle": "Trying to create schedule in php",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 15:06:43Z"
},
"/q/11579738/219118": {
"postId": 11579738,
"postTitle": "Minify/obfuscate mix of PHP and Javascript",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 15:06:38Z"
},
"/q/11581890/219118": {
"postId": 11581890,
"postTitle": "I need to use fpdf to print only 3 records per page but still it prints all the records",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 15:06:07Z"
},
"/q/11565430/1137055": {
"postId": 11565430,
"postTitle": "Google custom search (php and mysql)",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 14:53:53Z"
},
"/q/4988425/1137055": {
"postId": 4988425,
"postTitle": "MySQL query boolean given",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 14:42:59Z"
},
"/q/11553596/1137055": {
"postId": 11553596,
"postTitle": "Php MySql Error -",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 14:42:04Z"
},
"/q/11575104/1137055": {
"postId": 11575104,
"postTitle": "unknown table status: TABLE_TYPE",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 14:41:13Z"
},
"/q/11571768/644348": {
"postId": 11571768,
"postTitle": "Access new web site via browser with IP address? [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-20 14:40:19Z"
},
"/q/11576879/15667": {
"postId": 11576879,
"postTitle": "Calendar table in SQL",
"userId": 15667,
"userName": "xan",
"action": "Do Not Close",
"datetime": "2012-07-20 14:39:14Z"
},
"/q/11567904/644348": {
"postId": 11567904,
"postTitle": "high scalability, what is it and good resource or book [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-20 14:39:03Z"
},
"/q/11578962/644348": {
"postId": 11578962,
"postTitle": "Magento products to ebay store [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-20 14:38:55Z"
},
"/q/179332/644348": {
"postId": 179332,
"postTitle": "Anyone Actually Using F# in Production?",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-20 14:38:45Z"
},
"/q/11571442/644348": {
"postId": 11571442,
"postTitle": "Mac default screen size command",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-20 14:38:36Z"
},
"/q/11576879/1137055": {
"postId": 11576879,
"postTitle": "Calendar table in SQL",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 14:38:09Z"
},
"/q/11571718/644348": {
"postId": 11571718,
"postTitle": "Facebook mail servers [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-20 14:38:06Z"
},
"/q/143708/644348": {
"postId": 143708,
"postTitle": "Is it possible that F# will be optimized more than other .Net languages in the future?",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-20 14:37:33Z"
},
"/q/9780825/1137055": {
"postId": 9780825,
"postTitle": "Syntax error in mysql trigger",
"userId": 1137055,
"userName": "dgw",
"action": "Do Not Close",
"datetime": "2012-07-20 14:37:25Z"
},
"/q/11560727/644348": {
"postId": 11560727,
"postTitle": "How to share an image on Pinterest in iOS?",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-20 14:37:10Z"
},
"/q/8725172/1137055": {
"postId": 8725172,
"postTitle": "How to check radio button is checked using JQuery?",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 14:37:00Z"
},
"/q/11577171/15667": {
"postId": 11577171,
"postTitle": "Table import failing on table with partition( ORA-00959: tablespace 'USR' does not exist) [closed]",
"userId": 15667,
"userName": "xan",
"action": "Close",
"datetime": "2012-07-20 14:37:00Z"
},
"/q/11579859/644348": {
"postId": 11579859,
"postTitle": "How to use WiFi to communicate between multiple users? [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-20 14:36:51Z"
},
"/q/11573273/644348": {
"postId": 11573273,
"postTitle": "color the selected part of body image on touch [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-20 14:36:44Z"
},
"/q/11558165/644348": {
"postId": 11558165,
"postTitle": "Date Format- how to convert string to date in MMM d, yyyy format using objective c [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-20 14:36:34Z"
},
"/q/8518811/1137055": {
"postId": 8518811,
"postTitle": "MySql - replication monitoring tool",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 14:36:26Z"
},
"/q/11569073/644348": {
"postId": 11569073,
"postTitle": "How do I track Geocoins programmatically in Cocoa-Touch? [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-20 14:36:09Z"
},
"/q/11572053/1137055": {
"postId": 11572053,
"postTitle": "Quick JavaScript to find URLs on the page and make them into links [closed]",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 14:35:59Z"
},
"/q/11561906/15667": {
"postId": 11561906,
"postTitle": "How to prevent Cross site scripting XSS using MVC 3 [closed]",
"userId": 15667,
"userName": "xan",
"action": "Close",
"datetime": "2012-07-20 14:35:57Z"
},
"/q/11573055/644348": {
"postId": 11573055,
"postTitle": "When I resubmit my app after being rejected, does the review start at the end of the line?",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-20 14:35:55Z"
},
"/q/11555054/1137055": {
"postId": 11555054,
"postTitle": "How to remove FTP details",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 14:35:38Z"
},
"/q/11566533/644348": {
"postId": 11566533,
"postTitle": "Landscape mode not working in MapView",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-20 14:35:37Z"
},
"/q/11580253/644348": {
"postId": 11580253,
"postTitle": "Best way to share data between classes in ios? [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-20 14:35:15Z"
},
"/q/6097364/1137055": {
"postId": 6097364,
"postTitle": "MySQL throws error after changing encoding",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 14:32:53Z"
},
"/q/11576176/1137055": {
"postId": 11576176,
"postTitle": "wait for a jquery ajax callback from calling function",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 14:32:23Z"
},
"/q/6390588/1137055": {
"postId": 6390588,
"postTitle": "Creating a criteria search in Access",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 14:32:07Z"
},
"/q/11557645/1137055": {
"postId": 11557645,
"postTitle": "How to update thousands of rows in mysql database",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 14:31:15Z"
},
"/q/11578739/1137055": {
"postId": 11578739,
"postTitle": "JQuery/Javascript progress bar that goes both ways [closed]",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 14:29:34Z"
},
"/q/11575287/1137055": {
"postId": 11575287,
"postTitle": "Jquery to display images and attachments [closed]",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 14:21:10Z"
},
"/q/11557479/1137055": {
"postId": 11557479,
"postTitle": "Nagios gives no out return from plugin",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 14:20:47Z"
},
"/q/11563874/1137055": {
"postId": 11563874,
"postTitle": "jQuery mobile specific list",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 14:19:31Z"
},
"/q/11564220/1137055": {
"postId": 11564220,
"postTitle": "MySQL Database Recovery after System Crash",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 14:18:12Z"
},
"/q/11572709/1137055": {
"postId": 11572709,
"postTitle": "MySQL PHP alter table, change all MEDIUMINT to INT",
"userId": 1137055,
"userName": "dgw",
"action": "Do Not Close",
"datetime": "2012-07-20 14:17:51Z"
},
"/q/11577476/1137055": {
"postId": 11577476,
"postTitle": "I'm getting this error when trying to connect to [closed]",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 14:17:11Z"
},
"/q/4538732/1137055": {
"postId": 4538732,
"postTitle": "what's mean by Collation",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 14:16:07Z"
},
"/q/11557972/1137055": {
"postId": 11557972,
"postTitle": "Refresh child window on parent window",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 14:11:08Z"
},
"/q/11545327/1137055": {
"postId": 11545327,
"postTitle": "what is being done here [ “${-#*i}” != “$-” ]",
"userId": 1137055,
"userName": "dgw",
"action": "Do Not Close",
"datetime": "2012-07-20 14:09:46Z"
},
"/q/7191846/52444": {
"postId": 7191846,
"postTitle": "C#: Help in Regular expression [closed]",
"userId": 52444,
"userName": "tanascius",
"action": "Close",
"datetime": "2012-07-20 14:09:22Z"
},
"/q/11558997/52444": {
"postId": 11558997,
"postTitle": "what is the diagram the layers of .NET 4.0 architecture? [closed]",
"userId": 52444,
"userName": "tanascius",
"action": "Close",
"datetime": "2012-07-20 14:09:05Z"
},
"/q/7555906/52444": {
"postId": 7555906,
"postTitle": "Why my Identifiers is not CLS-compliant?",
"userId": 52444,
"userName": "tanascius",
"action": "Close",
"datetime": "2012-07-20 14:08:47Z"
},
"/q/7105093/1137055": {
"postId": 7105093,
"postTitle": "Difference between datetime and timestamp in sqlserver?",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 14:08:24Z"
},
"/q/125159/52444": {
"postId": 125159,
"postTitle": "open source .net based MMORPG",
"userId": 52444,
"userName": "tanascius",
"action": "Do Not Close",
"datetime": "2012-07-20 14:08:13Z"
},
"/q/11579728/1137055": {
"postId": 11579728,
"postTitle": "Date Picker Using Dropdown Menu for all fields JavaScript and JQuery W/O Calendar",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 14:07:59Z"
},
"/q/11576120/52444": {
"postId": 11576120,
"postTitle": "How do we know whether or not a word in English? .NET Ranorex C#",
"userId": 52444,
"userName": "tanascius",
"action": "Close",
"datetime": "2012-07-20 14:07:35Z"
},
"/q/11572375/52444": {
"postId": 11572375,
"postTitle": "Word list file for Oxford Dictionary",
"userId": 52444,
"userName": "tanascius",
"action": "Do Not Close",
"datetime": "2012-07-20 14:06:25Z"
},
"/q/11555278/52444": {
"postId": 11555278,
"postTitle": "Whenever Updating a Pic Box with Bitmap Random Images Show Up? C# .Net",
"userId": 52444,
"userName": "tanascius",
"action": "Do Not Close",
"datetime": "2012-07-20 14:05:39Z"
},
"/q/1633255/52444": {
"postId": 1633255,
"postTitle": "Good .NET Application Installer",
"userId": 52444,
"userName": "tanascius",
"action": "Close",
"datetime": "2012-07-20 14:05:16Z"
},
"/q/11555638/52444": {
"postId": 11555638,
"postTitle": "Arabic barcode font [closed]",
"userId": 52444,
"userName": "tanascius",
"action": "Close",
"datetime": "2012-07-20 14:03:48Z"
},
"/q/11530168/52444": {
"postId": 11530168,
"postTitle": "regex space validation",
"userId": 52444,
"userName": "tanascius",
"action": "Close",
"datetime": "2012-07-20 14:03:16Z"
},
"/q/11577171/1137055": {
"postId": 11577171,
"postTitle": "Table import failing on table with partition( ORA-00959: tablespace 'USR' does not exist) [closed]",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 13:52:26Z"
},
"/q/11576054/1137055": {
"postId": 11576054,
"postTitle": "SQL Subquery error near )",
"userId": 1137055,
"userName": "dgw",
"action": "Do Not Close",
"datetime": "2012-07-20 13:51:53Z"
},
"/q/11551050/1137055": {
"postId": 11551050,
"postTitle": "magento on ipage: magento database exists in control panel but not visible [closed]",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 13:51:12Z"
},
"/q/11555936/1137055": {
"postId": 11555936,
"postTitle": "Downloading a source from a git repository using eclipse?",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 13:50:32Z"
},
"/q/11568649/1137055": {
"postId": 11568649,
"postTitle": "How to reload all bash startup files in os x?",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 13:49:55Z"
},
"/q/11572416/1137055": {
"postId": 11572416,
"postTitle": "PHP and MySQL: Find out which file or query is causing heavy CPU load [closed]",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 13:48:51Z"
},
"/q/11574590/1137055": {
"postId": 11574590,
"postTitle": "In Notepad++, set background color for file type",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 13:48:34Z"
},
"/q/11580165/1137055": {
"postId": 11580165,
"postTitle": "Javascript/jQuery based HTML editor [closed]",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 13:47:54Z"
},
"/q/11537874/1137055": {
"postId": 11537874,
"postTitle": "Is JQuery a good choice for writing cross-platform mobile apps even though the application does not communicate with a server",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 13:46:42Z"
},
"/q/11564414/1137055": {
"postId": 11564414,
"postTitle": "Is any paging plugin dynamic html table with collapsed rows available? [closed]",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 13:46:28Z"
},
"/q/11571946/646382": {
"postId": 11571946,
"postTitle": "can you recommend me a source on debugging in code blocks? [closed]",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-20 13:43:48Z"
},
"/q/11577444/646382": {
"postId": 11577444,
"postTitle": "Working with sharepoint 2007 [closed]",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-20 13:42:14Z"
},
"/q/1794743/646382": {
"postId": 1794743,
"postTitle": "What data types do the RangeValidator control support? [closed]",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-20 13:42:05Z"
},
"/q/11561906/646382": {
"postId": 11561906,
"postTitle": "How to prevent Cross site scripting XSS using MVC 3 [closed]",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-20 13:41:58Z"
},
"/q/11573749/646382": {
"postId": 11573749,
"postTitle": "Native C++ SplitterBar glitches",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-20 13:41:37Z"
},
"/q/11574267/646382": {
"postId": 11574267,
"postTitle": "How to draw an ellipse C# via GDI?",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-20 13:40:56Z"
},
"/q/11549954/646382": {
"postId": 11549954,
"postTitle": "Complexity of String.GetHashCode()",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-20 13:40:16Z"
},
"/q/72893/646382": {
"postId": 72893,
"postTitle": "What's the best way to learn C# quickly?",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-20 13:38:22Z"
},
"/q/11575735/646382": {
"postId": 11575735,
"postTitle": "Two-dimensional array in memory [closed]",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-20 13:38:12Z"
},
"/q/11571688/1137055": {
"postId": 11571688,
"postTitle": "How to use GIT on Lan? [closed]",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 13:37:24Z"
},
"/q/11556627/1137055": {
"postId": 11556627,
"postTitle": "Implement an Arzoo Hotel API by sending a SOAP request",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 13:36:59Z"
},
"/q/11555638/646382": {
"postId": 11555638,
"postTitle": "Arabic barcode font [closed]",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-20 13:36:56Z"
},
"/q/11561762/1137055": {
"postId": 11561762,
"postTitle": "Dropdownlist with suggestions that match what you type in a textbox",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 13:36:31Z"
},
"/q/11574655/646382": {
"postId": 11574655,
"postTitle": "what do the square brakets mean in vb.net in this string",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-20 13:36:27Z"
},
"/q/11574487/1137055": {
"postId": 11574487,
"postTitle": "jquery plugin drop-down menu like facebook [closed]",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 13:35:48Z"
},
"/q/11547816/427763": {
"postId": 11547816,
"postTitle": "Using OnClickListener with multiple ImageButtons?",
"userId": 427763,
"userName": "prolink007",
"action": "Do Not Close",
"datetime": "2012-07-20 13:35:42Z"
},
"/q/11565336/427763": {
"postId": 11565336,
"postTitle": "A complete php project online debugger",
"userId": 427763,
"userName": "prolink007",
"action": "Edit",
"datetime": "2012-07-20 13:35:27Z"
},
"/q/11579714/646382": {
"postId": 11579714,
"postTitle": "Excel - Unable to open https// <<PATH>> Cannot download the information you requested -— How to disable",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-20 13:35:08Z"
},
"/q/10770163/646382": {
"postId": 10770163,
"postTitle": "Use AnimateWindow in a new thread",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-20 13:34:57Z"
},
"/q/11579512/427763": {
"postId": 11579512,
"postTitle": "Extract boot.img",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-20 13:34:40Z"
},
"/q/11427318/1137055": {
"postId": 11427318,
"postTitle": "publish data from 1 wordpress to another",
"userId": 1137055,
"userName": "dgw",
"action": "Close",
"datetime": "2012-07-20 13:34:37Z"
},
"/q/1794743/427763": {
"postId": 1794743,
"postTitle": "What data types do the RangeValidator control support? [closed]",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-20 13:34:13Z"
},
"/q/11573190/427763": {
"postId": 11573190,
"postTitle": "CONNECT SQLITE DATABASE TO ECLIPSE [closed]",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-20 13:34:04Z"
},
"/q/11571561/427763": {
"postId": 11571561,
"postTitle": "Compress HTML using Apache [migrated]",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-20 13:33:55Z"
},
"/q/11558165/916299": {
"postId": 11558165,
"postTitle": "Date Format- how to convert string to date in MMM d, yyyy format using objective c [closed]",
"userId": 916299,
"userName": "James Webster",
"action": "Close",
"datetime": "2012-07-20 13:31:15Z"
},
"/q/1873186/916299": {
"postId": 1873186,
"postTitle": "session in iphone [closed]",
"userId": 916299,
"userName": "James Webster",
"action": "Close",
"datetime": "2012-07-20 13:30:59Z"
},
"/q/11569073/916299": {
"postId": 11569073,
"postTitle": "How do I track Geocoins programmatically in Cocoa-Touch? [closed]",
"userId": 916299,
"userName": "James Webster",
"action": "Close",
"datetime": "2012-07-20 13:30:53Z"
},
"/q/11554975/916299": {
"postId": 11554975,
"postTitle": "Does push notification work on a jailbroken device?",
"userId": 916299,
"userName": "James Webster",
"action": "Close",
"datetime": "2012-07-20 13:30:42Z"
},
"/q/11573254/916299": {
"postId": 11573254,
"postTitle": "I would like to use speech recognition (DragonMobileSDK) in my iOS app. Will Apple reject my app? [closed]",
"userId": 916299,
"userName": "James Webster",
"action": "Close",
"datetime": "2012-07-20 13:30:30Z"
},
"/q/2446373/693207": {
"postId": 2446373,
"postTitle": "Android title bar removal [closed]",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 13:23:46Z"
},
"/q/11579549/693207": {
"postId": 11579549,
"postTitle": "Echo string dynamically in while loop [closed]",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 13:22:27Z"
},
"/q/11202904/19624": {
"postId": 11202904,
"postTitle": "How can I convert a gridview into a PDF file without a pop-up window?",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-20 13:13:55Z"
},
"/q/11557588/19624": {
"postId": 11557588,
"postTitle": "FPDF - Inbuilt class - Generate dyanamic column PDF",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-20 13:13:40Z"
},
"/q/11554771/19624": {
"postId": 11554771,
"postTitle": "Project Euler #11. Is the logic in my program wrong? [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-20 13:13:15Z"
},
"/q/11577444/19624": {
"postId": 11577444,
"postTitle": "Working with sharepoint 2007 [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-20 13:12:12Z"
},
"/q/11561660/19624": {
"postId": 11561660,
"postTitle": "Twilio demo call from browser to phone [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-20 13:11:49Z"
},
"/q/11577476/19624": {
"postId": 11577476,
"postTitle": "I'm getting this error when trying to connect to [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-20 13:11:36Z"
},
"/q/11557260/19624": {
"postId": 11557260,
"postTitle": "Inserting values in to sql database",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-20 13:11:08Z"
},
"/q/6151571/19624": {
"postId": 6151571,
"postTitle": "How can I remove the $ symbol in my PHP language? [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Do Not Close",
"datetime": "2012-07-20 13:10:54Z"
},
"/q/1447946/612429": {
"postId": 1447946,
"postTitle": "C cross-platform sound input library [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 13:10:45Z"
},
"/q/11531634/693207": {
"postId": 11531634,
"postTitle": "How to delete from select in same table MySQL",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 12:33:25Z"
},
"/q/11533943/693207": {
"postId": 11533943,
"postTitle": "Hint for Wordpress Theme",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 12:29:51Z"
},
"/q/11572520/19624": {
"postId": 11572520,
"postTitle": "PHP - Re-sizing Image [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-20 12:25:39Z"
},
"/q/11532284/693207": {
"postId": 11532284,
"postTitle": "SQl query to join different tables [closed]",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 12:25:27Z"
},
"/q/979694/19624": {
"postId": 979694,
"postTitle": "Need free php based ad management system banner rotator etc - which also has client access - any ideas",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-20 12:25:25Z"
},
"/q/11547458/263525": {
"postId": 11547458,
"postTitle": "What is differences between JVM, JDK, JRE & OpenJDK?",
"userId": 263525,
"userName": "dystroy",
"action": "Do Not Close",
"datetime": "2012-07-20 12:25:04Z"
},
"/q/11533820/263525": {
"postId": 11533820,
"postTitle": "Java Animation Player Walking",
"userId": 263525,
"userName": "dystroy",
"action": "Close",
"datetime": "2012-07-20 12:24:53Z"
},
"/q/11569957/19624": {
"postId": 11569957,
"postTitle": "Is calling <?php multiple times inefficient? [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-20 12:24:42Z"
},
"/q/11554935/263525": {
"postId": 11554935,
"postTitle": "Not sure about default initialization of variables in Java [closed]",
"userId": 263525,
"userName": "dystroy",
"action": "Close",
"datetime": "2012-07-20 12:24:37Z"
},
"/q/11345985/19624": {
"postId": 11345985,
"postTitle": "Move file into a specific folder",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-20 12:24:16Z"
},
"/q/11573295/263525": {
"postId": 11573295,
"postTitle": "Do we have a good javascript debugger? [closed]",
"userId": 263525,
"userName": "dystroy",
"action": "Close",
"datetime": "2012-07-20 12:23:17Z"
},
"/q/14967/19624": {
"postId": 14967,
"postTitle": "Are there any suggestions for developing a C# coding standards / best practices document?",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Do Not Close",
"datetime": "2012-07-20 12:23:12Z"
},
"/q/7706257/263525": {
"postId": 7706257,
"postTitle": "What does the attribute x in <span x=“10”> mean in HTML?",
"userId": 263525,
"userName": "dystroy",
"action": "Do Not Close",
"datetime": "2012-07-20 12:22:58Z"
},
"/q/11570025/19624": {
"postId": 11570025,
"postTitle": "Volume Level Meter using C# [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-20 12:22:49Z"
},
"/q/11578690/19624": {
"postId": 11578690,
"postTitle": "IE8 sometimes shows my site, sometimes not [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-20 12:21:38Z"
},
"/q/11559638/19624": {
"postId": 11559638,
"postTitle": ".mdb files with Crystal Reports",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-20 12:21:30Z"
},
"/q/11572072/19624": {
"postId": 11572072,
"postTitle": "How to synchronize a mysql database using perl",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-20 12:20:20Z"
},
"/q/8050997/19624": {
"postId": 8050997,
"postTitle": "How do you remove the decimal place from a number",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-20 12:19:57Z"
},
"/q/11564220/19624": {
"postId": 11564220,
"postTitle": "MySQL Database Recovery after System Crash",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-20 12:19:27Z"
},
"/q/6741269/286116": {
"postId": 6741269,
"postTitle": "mysql_query() expects parameter",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 12:19:12Z"
},
"/q/11537813/19624": {
"postId": 11537813,
"postTitle": "How do I find a substring in a string?",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-20 12:18:54Z"
},
"/q/11567393/19624": {
"postId": 11567393,
"postTitle": "EXTJS 3 data store to get custom field value",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-20 12:18:46Z"
},
"/q/11579071/19624": {
"postId": 11579071,
"postTitle": "bad word filter through txt file [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-20 12:18:38Z"
},
"/q/11566606/19624": {
"postId": 11566606,
"postTitle": "whats commands in php can control windows? [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-20 12:17:48Z"
},
"/q/11567112/286116": {
"postId": 11567112,
"postTitle": "Tools to extract all functions from a source code project",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 12:16:55Z"
},
"/q/11567061/19624": {
"postId": 11567061,
"postTitle": "Where should we put our enums? [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-20 12:16:29Z"
},
"/q/11577771/286116": {
"postId": 11577771,
"postTitle": "is there any bug in my html code. its not producing bar chart as expected",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 12:16:28Z"
},
"/q/569410/286116": {
"postId": 569410,
"postTitle": "How do I choose web hosting? [closed]",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 12:16:16Z"
},
"/q/11573536/286116": {
"postId": 11573536,
"postTitle": "vnc tunneling and port forwarding",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 12:15:42Z"
},
"/q/7191846/19624": {
"postId": 7191846,
"postTitle": "C#: Help in Regular expression [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-20 12:15:21Z"
},
"/q/3568478/19624": {
"postId": 3568478,
"postTitle": "MySQL: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Do Not Close",
"datetime": "2012-07-20 12:15:04Z"
},
"/q/11556232/19624": {
"postId": 11556232,
"postTitle": "how to use php objects? [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-20 12:14:38Z"
},
"/q/11557864/19624": {
"postId": 11557864,
"postTitle": "PHP script to check if an email is subscribed to feeds of my blog",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-20 12:14:27Z"
},
"/q/11158579/19624": {
"postId": 11158579,
"postTitle": "WinForms MessageBox not appearing",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-20 12:14:05Z"
},
"/q/7923020/19624": {
"postId": 7923020,
"postTitle": "Troubleshooting “zip_read() expects parameter 1 to be resource, integer given” [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-20 12:13:33Z"
},
"/q/1963901/693207": {
"postId": 1963901,
"postTitle": "What does this symbol mean in PHP <?=",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 12:07:47Z"
},
"/q/10944756/286116": {
"postId": 10944756,
"postTitle": "“how to manipulate the microphone(laptop embedded microphone) using NAudio API?”",
"userId": 286116,
"userName": "Vin",
"action": "Close",
"datetime": "2012-07-20 12:07:33Z"
},
"/q/11575311/286116": {
"postId": 11575311,
"postTitle": "why little diamonds with question marks comes when i bind some HTML in text area?",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 12:07:08Z"
},
"/q/11393825/286116": {
"postId": 11393825,
"postTitle": "How to parse the response from SOAP",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 12:06:50Z"
},
"/q/11577383/286116": {
"postId": 11577383,
"postTitle": "Some Problems occurred while using iReport",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 12:06:35Z"
},
"/q/11567904/286116": {
"postId": 11567904,
"postTitle": "high scalability, what is it and good resource or book [closed]",
"userId": 286116,
"userName": "Vin",
"action": "Close",
"datetime": "2012-07-20 12:06:18Z"
},
"/q/11562305/286116": {
"postId": 11562305,
"postTitle": "Five star rating sysytem for cakephp 2.0?",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 12:06:01Z"
},
"/q/11550194/286116": {
"postId": 11550194,
"postTitle": "Need to extract specific text from a big unstructured log file (Text File ) in Perl",
"userId": 286116,
"userName": "Vin",
"action": "Close",
"datetime": "2012-07-20 12:05:37Z"
},
"/q/11566600/286116": {
"postId": 11566600,
"postTitle": "Emacs C++ mode indentation",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 12:05:25Z"
},
"/q/10680812/286116": {
"postId": 10680812,
"postTitle": "Cannot ping to VMware host [closed]",
"userId": 286116,
"userName": "Vin",
"action": "Close",
"datetime": "2012-07-20 12:05:09Z"
},
"/q/11576834/286116": {
"postId": 11576834,
"postTitle": "Explain database design to me, and relational vs non relational designs [closed]",
"userId": 286116,
"userName": "Vin",
"action": "Close",
"datetime": "2012-07-20 12:04:56Z"
},
"/q/11570993/286116": {
"postId": 11570993,
"postTitle": "How to create simple self LVL like library",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 12:02:35Z"
},
"/q/11557411/286116": {
"postId": 11557411,
"postTitle": "how to get the php variable without submitting form through ajax",
"userId": 286116,
"userName": "Vin",
"action": "Close",
"datetime": "2012-07-20 12:02:20Z"
},
"/q/11572609/286116": {
"postId": 11572609,
"postTitle": "How to get position fixed when the user scrolls down",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 12:02:08Z"
},
"/q/11578739/592182": {
"postId": 11578739,
"postTitle": "JQuery/Javascript progress bar that goes both ways [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 12:00:29Z"
},
"/q/11573340/693207": {
"postId": 11573340,
"postTitle": "ASP.NET - Class Library [closed]",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 11:57:29Z"
},
"/q/11533833/693207": {
"postId": 11533833,
"postTitle": "PHP mySQL table JOIN query - most efficient way?",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 11:54:36Z"
},
"/q/11572615/693207": {
"postId": 11572615,
"postTitle": "Convert \" into inch in magento seo URL [closed]",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 11:52:00Z"
},
"/q/11560653/592182": {
"postId": 11560653,
"postTitle": "What can cause IE7 to crash?",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 11:50:09Z"
},
"/q/11553912/693207": {
"postId": 11553912,
"postTitle": "PHP function to scramble javascript code? [closed]",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 11:49:19Z"
},
"/q/11567904/592182": {
"postId": 11567904,
"postTitle": "high scalability, what is it and good resource or book [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 11:49:15Z"
},
"/q/11574601/592182": {
"postId": 11574601,
"postTitle": "Dfference between emulator and AVD [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 11:48:50Z"
},
"/q/11561510/592182": {
"postId": 11561510,
"postTitle": "Echo cancellation with Core audio APIs",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 11:48:37Z"
},
"/q/11574251/592182": {
"postId": 11574251,
"postTitle": "Need help to learn web services/web apps",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 11:48:23Z"
},
"/q/11578469/693207": {
"postId": 11578469,
"postTitle": "In Which Framework do we use this [closed]",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 11:48:22Z"
},
"/q/11572022/592182": {
"postId": 11572022,
"postTitle": "When will the onLocationChanged functions called on the Android platform?",
"userId": 592182,
"userName": "forsvarir",
"action": "Edit",
"datetime": "2012-07-20 11:48:04Z"
},
"/q/11556302/286116": {
"postId": 11556302,
"postTitle": "Facebook wall post, from my website",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 11:47:09Z"
},
"/q/11566441/1275169": {
"postId": 11566441,
"postTitle": "Explain dynamically bound and static methods [closed]",
"userId": 1275169,
"userName": "KingsIndian",
"action": "Close",
"datetime": "2012-07-20 11:43:38Z"
},
"/q/11571660/1275169": {
"postId": 11571660,
"postTitle": "Where can i learn debugging on code blocks [closed]",
"userId": 1275169,
"userName": "KingsIndian",
"action": "Close",
"datetime": "2012-07-20 11:43:19Z"
},
"/q/11534328/693207": {
"postId": 11534328,
"postTitle": "Create a sql where condition using Alias in Zend",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 11:39:49Z"
},
"/q/11561650/592182": {
"postId": 11561650,
"postTitle": "Implementing Word Extraction from an Image by OCR Tesseract",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 11:39:48Z"
},
"/q/5449774/592182": {
"postId": 5449774,
"postTitle": "How to get SKU Number",
"userId": 592182,
"userName": "forsvarir",
"action": "Edit",
"datetime": "2012-07-20 11:39:00Z"
},
"/q/11561500/592182": {
"postId": 11561500,
"postTitle": "linux command nice works on any shell script? [migrated]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 11:37:03Z"
},
"/q/11566974/1468366": {
"postId": 11566974,
"postTitle": "Java GUI Automatically Resizing",
"userId": 1468366,
"userName": "MvG",
"action": "Do Not Close",
"datetime": "2012-07-20 11:36:53Z"
},
"/q/2810255/592182": {
"postId": 2810255,
"postTitle": "connecting visual studio 2008 with ms access 2007",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 11:36:41Z"
},
"/q/10606752/1468366": {
"postId": 10606752,
"postTitle": "Php: Hit Count . Error :mysql_num_rows() expects parameter 1 to be resource",
"userId": 1468366,
"userName": "MvG",
"action": "Close",
"datetime": "2012-07-20 11:35:53Z"
},
"/q/11578034/592182": {
"postId": 11578034,
"postTitle": "Good Learning Sources to learn ERD and ORM [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 11:35:49Z"
},
"/q/11572416/592182": {
"postId": 11572416,
"postTitle": "PHP and MySQL: Find out which file or query is causing heavy CPU load [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 11:35:12Z"
},
"/q/11568163/592182": {
"postId": 11568163,
"postTitle": "css body adjust to screen proportions",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 11:33:38Z"
},
"/q/11547495/592182": {
"postId": 11547495,
"postTitle": "Port forwarding for Windows server",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 11:33:05Z"
},
"/q/11558501/592182": {
"postId": 11558501,
"postTitle": "New tabs in webkit [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 11:32:46Z"
},
"/q/11578249/592182": {
"postId": 11578249,
"postTitle": "Web-Setup Deployment in Visual Studio 2010 [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 11:32:22Z"
},
"/q/11578146/592182": {
"postId": 11578146,
"postTitle": "remove tags from around a string",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 11:31:55Z"
},
"/q/11572708/1468366": {
"postId": 11572708,
"postTitle": "java server page tutorials",
"userId": 1468366,
"userName": "MvG",
"action": "Close",
"datetime": "2012-07-20 11:31:52Z"
},
"/q/220044/1468366": {
"postId": 220044,
"postTitle": "Which sort algorithm works best on mostly sorted data?",
"userId": 1468366,
"userName": "MvG",
"action": "Close",
"datetime": "2012-07-20 11:30:53Z"
},
"/q/11558097/1468366": {
"postId": 11558097,
"postTitle": "Estimate a mean of a set. (bias estimator)",
"userId": 1468366,
"userName": "MvG",
"action": "Close",
"datetime": "2012-07-20 11:30:40Z"
},
"/q/11577259/1468366": {
"postId": 11577259,
"postTitle": "Can I convert a string to a math operation in java?",
"userId": 1468366,
"userName": "MvG",
"action": "Do Not Close",
"datetime": "2012-07-20 11:27:43Z"
},
"/q/11578273/1468366": {
"postId": 11578273,
"postTitle": "Remove rows with sequentially similar data - R Zoo",
"userId": 1468366,
"userName": "MvG",
"action": "Do Not Close",
"datetime": "2012-07-20 11:27:16Z"
},
"/q/11560041/1468366": {
"postId": 11560041,
"postTitle": "Getting all the css information about a generic node in a DOM tree in Java",
"userId": 1468366,
"userName": "MvG",
"action": "Close",
"datetime": "2012-07-20 11:24:25Z"
},
"/q/9612150/1468366": {
"postId": 9612150,
"postTitle": "Ubuntu 11.04: Running MARS simulator",
"userId": 1468366,
"userName": "MvG",
"action": "Close",
"datetime": "2012-07-20 11:22:58Z"
},
"/q/11572676/1468366": {
"postId": 11572676,
"postTitle": "any other method beside setter and getter that will perform the same functionality but better?",
"userId": 1468366,
"userName": "MvG",
"action": "Do Not Close",
"datetime": "2012-07-20 11:22:21Z"
},
"/q/11544478/90527": {
"postId": 11544478,
"postTitle": "File transfer Unix to mainframe",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-20 11:17:25Z"
},
"/q/11568854/17413": {
"postId": 11568854,
"postTitle": "Why use robot.txt on javascript files?",
"userId": 17413,
"userName": "Nifle",
"action": "Close",
"datetime": "2012-07-20 11:15:27Z"
},
"/q/11542847/648313": {
"postId": 11542847,
"postTitle": "Android Augmented Reality Bug",
"userId": 648313,
"userName": "Idolon",
"action": "Do Not Close",
"datetime": "2012-07-20 11:15:23Z"
},
"/q/11546658/17413": {
"postId": 11546658,
"postTitle": "Search By Multiple Checkbox, with AJAX div updating… where do I begin?",
"userId": 17413,
"userName": "Nifle",
"action": "Close",
"datetime": "2012-07-20 11:14:40Z"
},
"/q/11562010/648313": {
"postId": 11562010,
"postTitle": "How to program different frequencies to play in a certain order when a button is pressed in android eclipse development",
"userId": 648313,
"userName": "Idolon",
"action": "Do Not Close",
"datetime": "2012-07-20 11:14:28Z"
},
"/q/1524542/17413": {
"postId": 1524542,
"postTitle": "How do I backup a MySQL database?",
"userId": 17413,
"userName": "Nifle",
"action": "Close",
"datetime": "2012-07-20 11:14:28Z"
},
"/q/11571967/17413": {
"postId": 11571967,
"postTitle": "Perl framework for html",
"userId": 17413,
"userName": "Nifle",
"action": "Close",
"datetime": "2012-07-20 11:13:55Z"
},
"/q/11549896/648313": {
"postId": 11549896,
"postTitle": ".JAR files using the command line [closed]",
"userId": 648313,
"userName": "Idolon",
"action": "Close",
"datetime": "2012-07-20 11:13:39Z"
},
"/q/11560692/17413": {
"postId": 11560692,
"postTitle": "copy-like algorithm with four iterators",
"userId": 17413,
"userName": "Nifle",
"action": "Close",
"datetime": "2012-07-20 11:13:34Z"
},
"/q/11558120/648313": {
"postId": 11558120,
"postTitle": "Android export : how to create .keystore file?",
"userId": 648313,
"userName": "Idolon",
"action": "Close",
"datetime": "2012-07-20 11:13:09Z"
},
"/q/11576469/17413": {
"postId": 11576469,
"postTitle": "Why is Perl market position in server-side scripting so low, even less than Java? [closed]",
"userId": 17413,
"userName": "Nifle",
"action": "Close",
"datetime": "2012-07-20 11:13:05Z"
},
"/q/11553378/17413": {
"postId": 11553378,
"postTitle": "Add boolean key to plist in Terminal",
"userId": 17413,
"userName": "Nifle",
"action": "Close",
"datetime": "2012-07-20 11:12:55Z"
},
"/q/11556326/648313": {
"postId": 11556326,
"postTitle": "Pattern Lock Code Page before my application start",
"userId": 648313,
"userName": "Idolon",
"action": "Close",
"datetime": "2012-07-20 11:12:53Z"
},
"/q/11577302/648313": {
"postId": 11577302,
"postTitle": "Android - Execute an http post on wifi connection",
"userId": 648313,
"userName": "Idolon",
"action": "Do Not Close",
"datetime": "2012-07-20 11:12:27Z"
},
"/q/11576754/17413": {
"postId": 11576754,
"postTitle": "Unix/Shell script",
"userId": 17413,
"userName": "Nifle",
"action": "Close",
"datetime": "2012-07-20 11:12:21Z"
},
"/q/11568587/17413": {
"postId": 11568587,
"postTitle": "Store images in Mongodb serve them with Nodejs",
"userId": 17413,
"userName": "Nifle",
"action": "Close",
"datetime": "2012-07-20 11:11:39Z"
},
"/q/11574505/17413": {
"postId": 11574505,
"postTitle": "Telecom churn dataset [closed]",
"userId": 17413,
"userName": "Nifle",
"action": "Close",
"datetime": "2012-07-20 11:11:23Z"
},
"/q/11562087/17413": {
"postId": 11562087,
"postTitle": "How can I copy my public ssh key to hundreds of computers without retyping my password hundreds of times?",
"userId": 17413,
"userName": "Nifle",
"action": "Close",
"datetime": "2012-07-20 11:10:55Z"
},
"/q/3899923/1468366": {
"postId": 3899923,
"postTitle": "PHP error: mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given [closed]",
"userId": 1468366,
"userName": "MvG",
"action": "Do Not Close",
"datetime": "2012-07-20 11:08:38Z"
},
"/q/11572072/17413": {
"postId": 11572072,
"postTitle": "How to synchronize a mysql database using perl",
"userId": 17413,
"userName": "Nifle",
"action": "Close",
"datetime": "2012-07-20 11:08:17Z"
},
"/q/4601446/17413": {
"postId": 4601446,
"postTitle": "Write a program to enter a string and count number of character and number of word [closed]",
"userId": 17413,
"userName": "Nifle",
"action": "Close",
"datetime": "2012-07-20 11:07:54Z"
},
"/q/11547973/90527": {
"postId": 11547973,
"postTitle": "How to set custom PHP.ini",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-20 11:07:41Z"
},
"/q/11571814/17413": {
"postId": 11571814,
"postTitle": "Which NodeJS framework to use: ExpressJS vs RailswayJS vs TowerJS vs GeddyJS vs RESTify for REST API server application [closed]",
"userId": 17413,
"userName": "Nifle",
"action": "Close",
"datetime": "2012-07-20 11:07:28Z"
},
"/q/11576987/17413": {
"postId": 11576987,
"postTitle": "How to run a auction without settimeout and setinterval function in javascript???",
"userId": 17413,
"userName": "Nifle",
"action": "Close",
"datetime": "2012-07-20 11:07:18Z"
},
"/q/11566806/90527": {
"postId": 11566806,
"postTitle": "proxifire login fail vs kaspersky 2012",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-20 11:07:03Z"
},
"/q/220044/17413": {
"postId": 220044,
"postTitle": "Which sort algorithm works best on mostly sorted data?",
"userId": 17413,
"userName": "Nifle",
"action": "Close",
"datetime": "2012-07-20 11:07:02Z"
},
"/q/11553115/17413": {
"postId": 11553115,
"postTitle": "get realpath in solaris shell",
"userId": 17413,
"userName": "Nifle",
"action": "Close",
"datetime": "2012-07-20 11:06:50Z"
},
"/q/11576002/648313": {
"postId": 11576002,
"postTitle": "How to increase the spacing between lines in a textview.? [closed]",
"userId": 648313,
"userName": "Idolon",
"action": "Close",
"datetime": "2012-07-20 11:06:32Z"
},
"/q/11555243/17413": {
"postId": 11555243,
"postTitle": "What is Unix find command's default ordering?",
"userId": 17413,
"userName": "Nifle",
"action": "Close",
"datetime": "2012-07-20 11:06:18Z"
},
"/q/11548040/648313": {
"postId": 11548040,
"postTitle": "Android GPS not working anymore",
"userId": 648313,
"userName": "Idolon",
"action": "Close",
"datetime": "2012-07-20 11:06:09Z"
},
"/q/11572949/17413": {
"postId": 11572949,
"postTitle": "2D Bin Packing with Multiple Size Bins",
"userId": 17413,
"userName": "Nifle",
"action": "Close",
"datetime": "2012-07-20 11:05:55Z"
},
"/q/11561500/17413": {
"postId": 11561500,
"postTitle": "linux command nice works on any shell script? [migrated]",
"userId": 17413,
"userName": "Nifle",
"action": "Close",
"datetime": "2012-07-20 11:05:39Z"
},
"/q/11554935/648313": {
"postId": 11554935,
"postTitle": "Not sure about default initialization of variables in Java [closed]",
"userId": 648313,
"userName": "Idolon",
"action": "Close",
"datetime": "2012-07-20 11:05:14Z"
},
"/q/11568712/17413": {
"postId": 11568712,
"postTitle": "pass a password to sudo su [migrated]",
"userId": 17413,
"userName": "Nifle",
"action": "Close",
"datetime": "2012-07-20 11:05:00Z"
},
"/q/2446373/648313": {
"postId": 2446373,
"postTitle": "Android title bar removal [closed]",
"userId": 648313,
"userName": "Idolon",
"action": "Close",
"datetime": "2012-07-20 11:04:11Z"
},
"/q/11562969/648313": {
"postId": 11562969,
"postTitle": "how to get current system month by java.sql.date",
"userId": 648313,
"userName": "Idolon",
"action": "Do Not Close",
"datetime": "2012-07-20 11:03:50Z"
},
"/q/11568084/1468366": {
"postId": 11568084,
"postTitle": "Are struct in c++ similar to enum or classes?",
"userId": 1468366,
"userName": "MvG",
"action": "Do Not Close",
"datetime": "2012-07-20 11:03:04Z"
},
"/q/11560463/648313": {
"postId": 11560463,
"postTitle": "StringTokenizer not working [closed]",
"userId": 648313,
"userName": "Idolon",
"action": "Do Not Close",
"datetime": "2012-07-20 11:02:00Z"
},
"/q/11565361/1468366": {
"postId": 11565361,
"postTitle": "Nodes using Structs",
"userId": 1468366,
"userName": "MvG",
"action": "Do Not Close",
"datetime": "2012-07-20 11:01:58Z"
},
"/q/11571501/648313": {
"postId": 11571501,
"postTitle": "Good Resources for Scheduling and Android Operating System",
"userId": 648313,
"userName": "Idolon",
"action": "Close",
"datetime": "2012-07-20 11:01:39Z"
},
"/q/11575591/648313": {
"postId": 11575591,
"postTitle": "how to send send data from android to php server",
"userId": 648313,
"userName": "Idolon",
"action": "Close",
"datetime": "2012-07-20 11:01:14Z"
},
"/q/11558837/648313": {
"postId": 11558837,
"postTitle": "second android emulator instance isn't shown",
"userId": 648313,
"userName": "Idolon",
"action": "Close",
"datetime": "2012-07-20 11:00:42Z"
},
"/q/11557983/648313": {
"postId": 11557983,
"postTitle": "Failure in SSL library on using cipher",
"userId": 648313,
"userName": "Idolon",
"action": "Do Not Close",
"datetime": "2012-07-20 10:59:27Z"
},
"/q/11549896/1468366": {
"postId": 11549896,
"postTitle": ".JAR files using the command line [closed]",
"userId": 1468366,
"userName": "MvG",
"action": "Close",
"datetime": "2012-07-20 10:58:37Z"
},
"/q/116865/648313": {
"postId": 116865,
"postTitle": "What’s the current state of closures in Java?",
"userId": 648313,
"userName": "Idolon",
"action": "Close",
"datetime": "2012-07-20 10:58:29Z"
},
"/q/4988425/693207": {
"postId": 4988425,
"postTitle": "MySQL query boolean given",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 10:57:32Z"
},
"/q/11545891/1468366": {
"postId": 11545891,
"postTitle": "java.util.ConcurrentModificationException, how to avoid [closed]",
"userId": 1468366,
"userName": "MvG",
"action": "Close",
"datetime": "2012-07-20 10:57:24Z"
},
"/q/2122114/693207": {
"postId": 2122114,
"postTitle": "How to Load test an php webpage [closed]",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 10:56:43Z"
},
"/q/11572578/1468366": {
"postId": 11572578,
"postTitle": "What is the efficient way to backup large files? [migrated]",
"userId": 1468366,
"userName": "MvG",
"action": "Close",
"datetime": "2012-07-20 10:56:10Z"
},
"/q/205748/592182": {
"postId": 205748,
"postTitle": "learning a new language",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 10:56:08Z"
},
"/q/11571957/592182": {
"postId": 11571957,
"postTitle": "What is the reason that copying some commands from ~/.bashrc to /etc/profile results in a bouncing graphical login in ubuntu 10?",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 10:55:56Z"
},
"/q/11561814/1468366": {
"postId": 11561814,
"postTitle": "Read .csv ANSI file and write to mysql",
"userId": 1468366,
"userName": "MvG",
"action": "Do Not Close",
"datetime": "2012-07-20 10:55:01Z"
},
"/q/11560244/592182": {
"postId": 11560244,
"postTitle": "Cannot change Visible in OnShow or OnHide [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 10:54:31Z"
},
"/q/11538577/648313": {
"postId": 11538577,
"postTitle": "How to record device audio in android, not from microphone?",
"userId": 648313,
"userName": "Idolon",
"action": "Close",
"datetime": "2012-07-20 10:53:47Z"
},
"/q/11555638/592182": {
"postId": 11555638,
"postTitle": "Arabic barcode font [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 10:53:46Z"
},
"/q/10944756/592182": {
"postId": 10944756,
"postTitle": "“how to manipulate the microphone(laptop embedded microphone) using NAudio API?”",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 10:53:27Z"
},
"/q/11576759/693207": {
"postId": 11576759,
"postTitle": "How to run a php file in background",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 10:53:20Z"
},
"/q/9065019/648313": {
"postId": 9065019,
"postTitle": "Android Spinner Custom Dialog with Searchbox [closed]",
"userId": 648313,
"userName": "Idolon",
"action": "Close",
"datetime": "2012-07-20 10:53:02Z"
},
"/q/136440/592182": {
"postId": 136440,
"postTitle": "How often should you hit the Save button?",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 10:52:11Z"
},
"/q/2513669/90527": {
"postId": 2513669,
"postTitle": "Complex User Interface -> MVC pattern",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-20 10:52:06Z"
},
"/q/11555243/90527": {
"postId": 11555243,
"postTitle": "What is Unix find command's default ordering?",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-20 10:51:40Z"
},
"/q/4926293/90527": {
"postId": 4926293,
"postTitle": "Looking for a solution for WiFi proxy issue with Android",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-20 10:51:26Z"
},
"/q/6151571/693207": {
"postId": 6151571,
"postTitle": "How can I remove the $ symbol in my PHP language? [closed]",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 10:51:14Z"
},
"/q/11567176/90527": {
"postId": 11567176,
"postTitle": "How do you set up .vimrc",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-20 10:51:09Z"
},
"/q/11547816/90527": {
"postId": 11547816,
"postTitle": "Using OnClickListener with multiple ImageButtons?",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-20 10:50:53Z"
},
"/q/11541424/592182": {
"postId": 11541424,
"postTitle": "Same code different result",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 10:50:25Z"
},
"/q/11575286/592182": {
"postId": 11575286,
"postTitle": "How to get all id when input enter is a string? [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 10:49:10Z"
},
"/q/11525527/693207": {
"postId": 11525527,
"postTitle": "Regular expression to replace everything between the html tags <table> and </table>?",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 10:48:32Z"
},
"/q/11552617/592182": {
"postId": 11552617,
"postTitle": "Jquery gallery with changing descriptions",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 10:48:31Z"
},
"/q/11575287/592182": {
"postId": 11575287,
"postTitle": "Jquery to display images and attachments [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 10:47:51Z"
},
"/q/11572435/592182": {
"postId": 11572435,
"postTitle": "How do i optimize my jquery function [migrated]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 10:47:16Z"
},
"/q/6973941/592182": {
"postId": 6973941,
"postTitle": "How to check if jQuery is loaded and what version?",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 10:46:36Z"
},
"/q/9330076/286116": {
"postId": 9330076,
"postTitle": "How to display banners into custom module views?",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 10:46:29Z"
},
"/q/11571026/286116": {
"postId": 11571026,
"postTitle": "State of SVG Performance on iOS and other Tablets?",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 10:46:11Z"
},
"/q/10518058/693207": {
"postId": 10518058,
"postTitle": "mysql_fetch_array() expects parameter 1 to be resource, boolean given in C:\\wamp\\www\\inc\\prod_list.php on line 3?",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 10:46:08Z"
},
"/q/11573195/286116": {
"postId": 11573195,
"postTitle": "object detection when we open iphone camera [closed]",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 10:46:01Z"
},
"/q/11576188/286116": {
"postId": 11576188,
"postTitle": "ios offering protected limited access to Wikipedia",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 10:45:48Z"
},
"/q/11574487/592182": {
"postId": 11574487,
"postTitle": "jquery plugin drop-down menu like facebook [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 10:45:42Z"
},
"/q/11571445/648313": {
"postId": 11571445,
"postTitle": "Android datepicker dialog",
"userId": 648313,
"userName": "Idolon",
"action": "Close",
"datetime": "2012-07-20 10:45:25Z"
},
"/q/11572878/286116": {
"postId": 11572878,
"postTitle": "Is there any way to customize the FBFriendPickerViewController in iOS SDK 3.0b?",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 10:45:20Z"
},
"/q/11573291/90527": {
"postId": 11573291,
"postTitle": "Facebook share using Phone in Blackberry [closed]",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-20 10:45:07Z"
},
"/q/11564414/592182": {
"postId": 11564414,
"postTitle": "Is any paging plugin dynamic html table with collapsed rows available? [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 10:44:59Z"
},
"/q/11553182/90527": {
"postId": 11553182,
"postTitle": "“Not Implemented” error While trying to modify a .exe file with 7Zip",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-20 10:44:58Z"
},
"/q/9399530/693207": {
"postId": 9399530,
"postTitle": "imagerotate() expects parameter 1 to be resource - error in php gd [closed]",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Do Not Close",
"datetime": "2012-07-20 10:44:52Z"
},
"/q/11575563/286116": {
"postId": 11575563,
"postTitle": "Did Facebook, Pinterest, Pandora, and other tech companies rewrote their whole product in Objective C?",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 10:44:41Z"
},
"/q/11576395/592182": {
"postId": 11576395,
"postTitle": "alternatives to twitterjs? [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 10:44:29Z"
},
"/q/10756649/592182": {
"postId": 10756649,
"postTitle": "What new technologies should I learn if I'm working with ASP MVC 3?",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 10:44:05Z"
},
"/q/6664262/286116": {
"postId": 6664262,
"postTitle": "Find out memory leak?",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 10:44:02Z"
},
"/q/11566606/693207": {
"postId": 11566606,
"postTitle": "whats commands in php can control windows? [closed]",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 10:43:58Z"
},
"/q/11569017/315862": {
"postId": 11569017,
"postTitle": "What is the difference between typeof and is when comparing object types?",
"userId": 315862,
"userName": "ccellar",
"action": "Close",
"datetime": "2012-07-20 10:43:33Z"
},
"/q/11552278/315862": {
"postId": 11552278,
"postTitle": "Use of word `Descriptor` when naming class",
"userId": 315862,
"userName": "ccellar",
"action": "Do Not Close",
"datetime": "2012-07-20 10:43:11Z"
},
"/q/11577439/90527": {
"postId": 11577439,
"postTitle": "MS office 2010 charts",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-20 10:43:09Z"
},
"/q/11574767/693207": {
"postId": 11574767,
"postTitle": "gd not creating thumbnails in class in certain files with the same code of others that do in the same location (php.ini or 'gd' restriction?) [closed]",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 10:42:31Z"
},
"/q/11576636/90527": {
"postId": 11576636,
"postTitle": "Drag&drop the icon between screens [closed]",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-20 10:42:13Z"
},
"/q/11570879/693207": {
"postId": 11570879,
"postTitle": "Easy way to make query for end users [closed]",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 10:41:12Z"
},
"/q/7191846/315862": {
"postId": 7191846,
"postTitle": "C#: Help in Regular expression [closed]",
"userId": 315862,
"userName": "ccellar",
"action": "Close",
"datetime": "2012-07-20 10:41:10Z"
},
"/q/11577376/315862": {
"postId": 11577376,
"postTitle": "Why does Thread.Sleep() behave this way [closed]",
"userId": 315862,
"userName": "ccellar",
"action": "Close",
"datetime": "2012-07-20 10:40:43Z"
},
"/q/11577476/693207": {
"postId": 11577476,
"postTitle": "I'm getting this error when trying to connect to [closed]",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 10:40:32Z"
},
"/q/11569957/90527": {
"postId": 11569957,
"postTitle": "Is calling <?php multiple times inefficient? [closed]",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-20 10:40:13Z"
},
"/q/11561906/315862": {
"postId": 11561906,
"postTitle": "How to prevent Cross site scripting XSS using MVC 3 [closed]",
"userId": 315862,
"userName": "ccellar",
"action": "Close",
"datetime": "2012-07-20 10:39:22Z"
},
"/q/11565597/315862": {
"postId": 11565597,
"postTitle": "How to return a string from a method",
"userId": 315862,
"userName": "ccellar",
"action": "Do Not Close",
"datetime": "2012-07-20 10:38:45Z"
},
"/q/2833757/648313": {
"postId": 2833757,
"postTitle": "Receiving error “Activity has leaked window” when try to show the dialog box",
"userId": 648313,
"userName": "Idolon",
"action": "Close",
"datetime": "2012-07-20 10:37:12Z"
},
"/q/11576753/648313": {
"postId": 11576753,
"postTitle": "Free libraries to make stunning Android UI",
"userId": 648313,
"userName": "Idolon",
"action": "Close",
"datetime": "2012-07-20 10:36:45Z"
},
"/q/11570139/648313": {
"postId": 11570139,
"postTitle": "AdMob revenue and alternatives : Impression vs Clicks [closed]",
"userId": 648313,
"userName": "Idolon",
"action": "Close",
"datetime": "2012-07-20 10:36:11Z"
},
"/q/11536786/693207": {
"postId": 11536786,
"postTitle": "How do I solve this warning on session_start()?",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 10:32:42Z"
},
"/q/6232084/1045444": {
"postId": 6232084,
"postTitle": "Is mysql_real_escape_string() necessary when using prepared statements?",
"userId": 1045444,
"userName": "Somnath Muluk",
"action": "Do Not Close",
"datetime": "2012-07-20 10:32:28Z"
},
"/q/153260/90527": {
"postId": 153260,
"postTitle": "Manage Scrum Software",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-20 10:31:37Z"
},
"/q/11542821/90527": {
"postId": 11542821,
"postTitle": "Gmail API in PHP [closed]",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-20 10:31:22Z"
},
"/q/11555845/90527": {
"postId": 11555845,
"postTitle": "Web client- interact with mobile camera?",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-20 10:30:57Z"
},
"/q/11570372/90527": {
"postId": 11570372,
"postTitle": "Virtual host and folders",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-20 10:30:42Z"
},
"/q/11550029/90527": {
"postId": 11550029,
"postTitle": "How to install git on Linux [closed]",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-20 10:30:03Z"
},
"/q/7259179/693207": {
"postId": 7259179,
"postTitle": "Warning: strlen() expects parameter 1 to be string, array given [closed]",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Do Not Close",
"datetime": "2012-07-20 10:29:44Z"
},
"/q/11571391/90527": {
"postId": 11571391,
"postTitle": "Looking for SEO tool to track rank for keyphrases over time? [closed]",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-20 10:29:34Z"
},
"/q/2446373/90527": {
"postId": 2446373,
"postTitle": "Android title bar removal [closed]",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-20 10:29:18Z"
},
"/q/11555839/90527": {
"postId": 11555839,
"postTitle": "check whether jquery is already defined or not",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-20 10:25:41Z"
},
"/q/11565280/693207": {
"postId": 11565280,
"postTitle": "Where can I find documentation for this?",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 10:25:22Z"
},
"/q/11562305/90527": {
"postId": 11562305,
"postTitle": "Five star rating sysytem for cakephp 2.0?",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-20 10:24:02Z"
},
"/q/11576176/693207": {
"postId": 11576176,
"postTitle": "wait for a jquery ajax callback from calling function",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 10:14:09Z"
},
"/q/7105093/693207": {
"postId": 7105093,
"postTitle": "Difference between datetime and timestamp in sqlserver?",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 10:11:05Z"
},
"/q/6097364/693207": {
"postId": 6097364,
"postTitle": "MySQL throws error after changing encoding",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 10:06:23Z"
},
"/q/11576467/693207": {
"postId": 11576467,
"postTitle": "Adding SSL certificates to Debian",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 10:02:44Z"
},
"/q/11569978/693207": {
"postId": 11569978,
"postTitle": "SQL SELF JOIN TO CONCATENATE COLUMNS [closed]",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 10:00:10Z"
},
"/q/11542928/693207": {
"postId": 11542928,
"postTitle": "Auto generate sku in Magento",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 09:58:41Z"
},
"/q/3247974/693207": {
"postId": 3247974,
"postTitle": "php beginner safe input",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 09:58:07Z"
},
"/q/11558120/90527": {
"postId": 11558120,
"postTitle": "Android export : how to create .keystore file?",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-20 09:49:01Z"
},
"/q/11557159/90527": {
"postId": 11557159,
"postTitle": "HOw to install Appinventor True Ofline (App Inventor Personal Server) on Linux",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-20 09:45:31Z"
},
"/q/11553912/90527": {
"postId": 11553912,
"postTitle": "PHP function to scramble javascript code? [closed]",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-20 09:44:52Z"
},
"/q/11561500/708434": {
"postId": 11561500,
"postTitle": "linux command nice works on any shell script? [migrated]",
"userId": 708434,
"userName": "Xaerxess",
"action": "Close",
"datetime": "2012-07-20 09:38:39Z"
},
"/q/11573599/90527": {
"postId": 11573599,
"postTitle": "button clicked in one fragment action in anther fragment in android",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-20 09:38:08Z"
},
"/q/6151571/90527": {
"postId": 6151571,
"postTitle": "How can I remove the $ symbol in my PHP language? [closed]",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-20 09:36:59Z"
},
"/q/10680812/90527": {
"postId": 10680812,
"postTitle": "Cannot ping to VMware host [closed]",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-20 09:36:19Z"
},
"/q/11552381/90527": {
"postId": 11552381,
"postTitle": "UTF-8 without BOM in php files",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-20 09:34:56Z"
},
"/q/11566974/784540": {
"postId": 11566974,
"postTitle": "Java GUI Automatically Resizing",
"userId": 784540,
"userName": "Rafael Osipov",
"action": "Close",
"datetime": "2012-07-20 09:31:21Z"
},
"/q/11575449/784540": {
"postId": 11575449,
"postTitle": "what's wrong in the input tag I'm writing [closed]",
"userId": 784540,
"userName": "Rafael Osipov",
"action": "Do Not Close",
"datetime": "2012-07-20 09:30:55Z"
},
"/q/11540310/693207": {
"postId": 11540310,
"postTitle": "internal error 500 with htaccess file",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 09:25:42Z"
},
"/q/11575889/644450": {
"postId": 11575889,
"postTitle": "FREE Mockup Tool for Web Applications?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 09:25:03Z"
},
"/q/11559740/693207": {
"postId": 11559740,
"postTitle": "PHP code for Substr - Making It Stop After A Word? [closed]",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 09:24:09Z"
},
"/q/11568469/693207": {
"postId": 11568469,
"postTitle": "Best approach for simple database configuration & record creation (login & booking system) [closed]",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 09:21:57Z"
},
"/q/11288125/693207": {
"postId": 11288125,
"postTitle": "URL redirect without GET parameters",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 09:18:52Z"
},
"/q/9327115/693207": {
"postId": 9327115,
"postTitle": "adding a quick order form in magento",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 09:16:44Z"
},
"/q/11561660/693207": {
"postId": 11561660,
"postTitle": "Twilio demo call from browser to phone [closed]",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 09:14:23Z"
},
"/q/11567894/693207": {
"postId": 11567894,
"postTitle": "How to join 2 columns in a SQL table to one column in another SQL table?",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 09:13:42Z"
},
"/q/11544018/693207": {
"postId": 11544018,
"postTitle": "PHP Deploy project at customer [closed]",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 09:11:54Z"
},
"/q/11544609/693207": {
"postId": 11544609,
"postTitle": "PHP: File extension to MIME type?",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 09:09:56Z"
},
"/q/10606752/693207": {
"postId": 10606752,
"postTitle": "Php: Hit Count . Error :mysql_num_rows() expects parameter 1 to be resource",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 09:03:06Z"
},
"/q/11564422/693207": {
"postId": 11564422,
"postTitle": "Encrypting credit card information and storing it in a database [closed]",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 08:58:29Z"
},
"/q/11571406/50468": {
"postId": 11571406,
"postTitle": "edit multiple contacts thunderbird",
"userId": 50468,
"userName": "Olivier Payen",
"action": "Close",
"datetime": "2012-07-20 08:56:20Z"
},
"/q/11552193/50468": {
"postId": 11552193,
"postTitle": "what do collation and cardinality mean in mysql index?",
"userId": 50468,
"userName": "Olivier Payen",
"action": "Close",
"datetime": "2012-07-20 08:56:04Z"
},
"/q/11565157/50468": {
"postId": 11565157,
"postTitle": "resize video using ffmpeg compiled for android libraries",
"userId": 50468,
"userName": "Olivier Payen",
"action": "Close",
"datetime": "2012-07-20 08:55:25Z"
},
"/q/11558900/50468": {
"postId": 11558900,
"postTitle": "How to make a slider screen on Windows Phone 7.1",
"userId": 50468,
"userName": "Olivier Payen",
"action": "Close",
"datetime": "2012-07-20 08:54:56Z"
},
"/q/11563734/693207": {
"postId": 11563734,
"postTitle": "Nested Insert-Exec",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 08:54:19Z"
},
"/q/11523141/50468": {
"postId": 11523141,
"postTitle": "How to wait for entire template to render in KnockoutJS?",
"userId": 50468,
"userName": "Olivier Payen",
"action": "Do Not Close",
"datetime": "2012-07-20 08:53:48Z"
},
"/q/11573221/50468": {
"postId": 11573221,
"postTitle": "How to add Dispatcher timer in for loop?",
"userId": 50468,
"userName": "Olivier Payen",
"action": "Close",
"datetime": "2012-07-20 08:52:52Z"
},
"/q/11568130/693207": {
"postId": 11568130,
"postTitle": "PHP Echo If URL ends with text",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Do Not Close",
"datetime": "2012-07-20 08:50:19Z"
},
"/q/11550193/693207": {
"postId": 11550193,
"postTitle": "How to get the full path to php interpreter / binary without shell access",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-20 08:48:26Z"
},
"/q/11554445/644450": {
"postId": 11554445,
"postTitle": "what did I do that my app involved with data service",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:40:14Z"
},
"/q/6390588/644450": {
"postId": 6390588,
"postTitle": "Creating a criteria search in Access",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:39:56Z"
},
"/q/11570879/644450": {
"postId": 11570879,
"postTitle": "Easy way to make query for end users [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:38:47Z"
},
"/q/8164124/644450": {
"postId": 8164124,
"postTitle": "Python py2exe 32bits and 64bits",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:38:36Z"
},
"/q/11570198/644450": {
"postId": 11570198,
"postTitle": "Error with struktex in MikTex making a Case [migrated]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:38:19Z"
},
"/q/11568974/644450": {
"postId": 11568974,
"postTitle": "php no headers text",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-20 08:38:09Z"
},
"/q/3766443/644450": {
"postId": 3766443,
"postTitle": "Warning: mysql_num_rows() expects parameter 1 to be resource",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-20 08:37:33Z"
},
"/q/11553924/644450": {
"postId": 11553924,
"postTitle": "Is there any open source face-match software?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:37:14Z"
},
"/q/11571561/644450": {
"postId": 11571561,
"postTitle": "Compress HTML using Apache [migrated]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:36:57Z"
},
"/q/11558717/644450": {
"postId": 11558717,
"postTitle": "How to change ubercart add to cart button to image[Drupal 7]?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:36:46Z"
},
"/q/11552433/644450": {
"postId": 11552433,
"postTitle": "Is there anyway to send and receive email in linux command using POP3? [migrated]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:36:23Z"
},
"/q/11575500/644450": {
"postId": 11575500,
"postTitle": "Ubunto 12.04 Desktop USB Boot Error",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:36:11Z"
},
"/q/11575449/644450": {
"postId": 11575449,
"postTitle": "what's wrong in the input tag I'm writing [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:36:01Z"
},
"/q/11556414/644450": {
"postId": 11556414,
"postTitle": "Facebook Connect Error fb.connect.requiresession",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:35:39Z"
},
"/q/11572154/644450": {
"postId": 11572154,
"postTitle": "Application does not start on Samsung Galaxy SIII but works on Samsung Duo and Ace",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:35:29Z"
},
"/q/11547829/644450": {
"postId": 11547829,
"postTitle": "Types of patterns",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:34:58Z"
},
"/q/11559200/644450": {
"postId": 11559200,
"postTitle": "Create a selection tool in as3",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:34:41Z"
},
"/q/11573971/592182": {
"postId": 11573971,
"postTitle": "Is it possible transform one DOM element to another? Or copy all attributes from it?",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 08:34:40Z"
},
"/q/1992384/644450": {
"postId": 1992384,
"postTitle": "“Program to an interface”. What does it mean?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:34:16Z"
},
"/q/11561762/592182": {
"postId": 11561762,
"postTitle": "Dropdownlist with suggestions that match what you type in a textbox",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 08:34:07Z"
},
"/q/11565930/644450": {
"postId": 11565930,
"postTitle": "How can I create a drag-and-drop component GUI builder using Swing?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:34:04Z"
},
"/q/11573398/644450": {
"postId": 11573398,
"postTitle": "how can i achieve payment gateway in my struts project? [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:33:52Z"
},
"/q/11574300/644450": {
"postId": 11574300,
"postTitle": "Rplace emoticons from a String,to String using java [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:33:11Z"
},
"/q/11562685/644450": {
"postId": 11562685,
"postTitle": "How many mails can I send with google app engine per day?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:32:51Z"
},
"/q/11557839/644450": {
"postId": 11557839,
"postTitle": "Float and BigDecimal precision difference",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:32:27Z"
},
"/q/11561227/644450": {
"postId": 11561227,
"postTitle": "Java Game - revamping my GUI to be more efficient and less brute [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:32:09Z"
},
"/q/11566480/644450": {
"postId": 11566480,
"postTitle": "java thrift client with embedded hive?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:32:01Z"
},
"/q/11572785/644450": {
"postId": 11572785,
"postTitle": "what's this file in java? core.26416, heap dump or thread dump?",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-20 08:31:43Z"
},
"/q/2456217/644450": {
"postId": 2456217,
"postTitle": "What book should I read as an alternative to “Head First Servlets and JSP”?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:31:19Z"
},
"/q/11572708/644450": {
"postId": 11572708,
"postTitle": "java server page tutorials",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:31:12Z"
},
"/q/11559954/644450": {
"postId": 11559954,
"postTitle": "Internals of how the HashMap put() and get() methods work (basic logic only )",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:30:22Z"
},
"/q/11561817/644450": {
"postId": 11561817,
"postTitle": "Method Chaining in Java [closed]",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-20 08:28:49Z"
},
"/q/11560463/644450": {
"postId": 11560463,
"postTitle": "StringTokenizer not working [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:28:02Z"
},
"/q/11575376/644450": {
"postId": 11575376,
"postTitle": "Why use Enums instead of Constants?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:27:32Z"
},
"/q/11572661/644450": {
"postId": 11572661,
"postTitle": "what's the mean of “This is in 1/20th of a point.”? [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:27:01Z"
},
"/q/11573939/644450": {
"postId": 11573939,
"postTitle": "how to count special character in a string [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:26:30Z"
},
"/q/11563066/644450": {
"postId": 11563066,
"postTitle": "Using reflection (or something similar) to do runtime determination of generic types?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:26:16Z"
},
"/q/11566039/644450": {
"postId": 11566039,
"postTitle": "Getting the key when we know the value in HashMap [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:24:34Z"
},
"/q/116865/644450": {
"postId": 116865,
"postTitle": "What’s the current state of closures in Java?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:24:18Z"
},
"/q/11562464/644450": {
"postId": 11562464,
"postTitle": "what best Gantt chart product can do these using Flex?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:23:48Z"
},
"/q/179915/95": {
"postId": 179915,
"postTitle": "ASP.NET MVC + ORM",
"userId": 95,
"userName": "Marek Grzenkowicz",
"action": "Do Not Close",
"datetime": "2012-07-20 08:19:01Z"
},
"/q/11569897/649687": {
"postId": 11569897,
"postTitle": "how to change only the children of the element and make the child disappear after last child thing has been focus",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 08:17:48Z"
},
"/q/11572520/649687": {
"postId": 11572520,
"postTitle": "PHP - Re-sizing Image [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 08:17:33Z"
},
"/q/11574767/649687": {
"postId": 11574767,
"postTitle": "gd not creating thumbnails in class in certain files with the same code of others that do in the same location (php.ini or 'gd' restriction?) [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 08:17:15Z"
},
"/q/11538229/649687": {
"postId": 11538229,
"postTitle": "Apart from GET and POST is there any way to send data to server using PHP? [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 08:17:03Z"
},
"/q/7219597/644450": {
"postId": 7219597,
"postTitle": "Sorting Songs in Java [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:16:37Z"
},
"/q/10993798/649687": {
"postId": 10993798,
"postTitle": "How to partially stage a file?",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 08:16:33Z"
},
"/q/10531319/649687": {
"postId": 10531319,
"postTitle": "How to save images created in applet to specified folder?",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-20 08:16:20Z"
},
"/q/11547296/649687": {
"postId": 11547296,
"postTitle": "add a new row in a table using jQuery [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 08:15:49Z"
},
"/q/11563816/649687": {
"postId": 11563816,
"postTitle": "How to include files in gcc search path?",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-20 08:15:35Z"
},
"/q/11571814/649687": {
"postId": 11571814,
"postTitle": "Which NodeJS framework to use: ExpressJS vs RailswayJS vs TowerJS vs GeddyJS vs RESTify for REST API server application [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 08:15:20Z"
},
"/q/11561549/644450": {
"postId": 11561549,
"postTitle": "How should i design a server application in java",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:15:16Z"
},
"/q/10085039/649687": {
"postId": 10085039,
"postTitle": "PostgreSql 'PDOException' with message 'could not find driver' [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 08:15:12Z"
},
"/q/11560889/644450": {
"postId": 11560889,
"postTitle": "How does setRequestProperty method work? [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:14:52Z"
},
"/q/11560041/644450": {
"postId": 11560041,
"postTitle": "Getting all the css information about a generic node in a DOM tree in Java",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:14:40Z"
},
"/q/11565437/644450": {
"postId": 11565437,
"postTitle": "How to run Java applications without using an IDE or the command prompt",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:13:49Z"
},
"/q/11562553/649687": {
"postId": 11562553,
"postTitle": "Echo cancellers on Android",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 08:13:39Z"
},
"/q/11573721/644450": {
"postId": 11573721,
"postTitle": "Design a module [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:13:31Z"
},
"/q/11541763/649687": {
"postId": 11541763,
"postTitle": "Sorting Multi-dimension array based on key",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-20 08:13:30Z"
},
"/q/11533820/784540": {
"postId": 11533820,
"postTitle": "Java Animation Player Walking",
"userId": 784540,
"userName": "Rafael Osipov",
"action": "Close",
"datetime": "2012-07-20 08:13:15Z"
},
"/q/10531319/644450": {
"postId": 10531319,
"postTitle": "How to save images created in applet to specified folder?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:12:54Z"
},
"/q/11211114/649687": {
"postId": 11211114,
"postTitle": "How do I configure Spring security to work on Virgo - using annotations?",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-20 08:12:52Z"
},
"/q/11559265/644450": {
"postId": 11559265,
"postTitle": "Open VIM with Java application",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-20 08:12:46Z"
},
"/q/11564583/649687": {
"postId": 11564583,
"postTitle": "How to hide/encrypt/confuse direct URLs used in my Android application?",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-20 08:12:37Z"
},
"/q/11568202/649687": {
"postId": 11568202,
"postTitle": "Center a Background Image in a DIV",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-20 08:11:58Z"
},
"/q/11562969/644450": {
"postId": 11562969,
"postTitle": "how to get current system month by java.sql.date",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:11:49Z"
},
"/q/11569815/286116": {
"postId": 11569815,
"postTitle": "Pointer-reference-class assignment",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 08:11:30Z"
},
"/q/11559325/649687": {
"postId": 11559325,
"postTitle": "Android Image Uploading",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 08:11:26Z"
},
"/q/9065019/649687": {
"postId": 9065019,
"postTitle": "Android Spinner Custom Dialog with Searchbox [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 08:11:06Z"
},
"/q/11539525/649687": {
"postId": 11539525,
"postTitle": "Add hidden values inside an <select> tag",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-20 08:10:55Z"
},
"/q/9781373/644450": {
"postId": 9781373,
"postTitle": "A try-catch method in while loop?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:10:53Z"
},
"/q/11573599/649687": {
"postId": 11573599,
"postTitle": "button clicked in one fragment action in anther fragment in android",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 08:10:38Z"
},
"/q/11550514/286116": {
"postId": 11550514,
"postTitle": "Any trick on how to increase frames per second cocos2d",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 08:10:25Z"
},
"/q/11574542/649687": {
"postId": 11574542,
"postTitle": "About JSP creation and deploying [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 08:10:19Z"
},
"/q/11562340/286116": {
"postId": 11562340,
"postTitle": "Can you modify the iphone password screen?",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 08:10:18Z"
},
"/q/11558837/649687": {
"postId": 11558837,
"postTitle": "second android emulator instance isn't shown",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 08:10:11Z"
},
"/q/11490290/644450": {
"postId": 11490290,
"postTitle": "Algorithm for duplicated but overlapping strings",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-15 12:21:55Z"
},
"/q/11556052/286116": {
"postId": 11556052,
"postTitle": "not able to compare (null) [closed]",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 08:09:35Z"
},
"/q/11570661/644450": {
"postId": 11570661,
"postTitle": "Java “Optimization”: if controls in lower classes [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:09:34Z"
},
"/q/11545176/286116": {
"postId": 11545176,
"postTitle": "App Store gifting with iTunes Affiliate link?",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 08:09:29Z"
},
"/q/11562980/649687": {
"postId": 11562980,
"postTitle": "How to properly protect form action attribute",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 08:09:18Z"
},
"/q/11211114/644450": {
"postId": 11211114,
"postTitle": "How do I configure Spring security to work on Virgo - using annotations?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:09:11Z"
},
"/q/11573315/649687": {
"postId": 11573315,
"postTitle": "YouTube: Play On Android Application [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 08:09:05Z"
},
"/q/11557772/649687": {
"postId": 11557772,
"postTitle": "left join with null values [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 08:08:52Z"
},
"/q/11549620/286116": {
"postId": 11549620,
"postTitle": "Why does reloadRowsAtIndexPaths not work for iOS 5.0?",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 08:08:50Z"
},
"/q/11574001/644450": {
"postId": 11574001,
"postTitle": "How to develop my own framework Java? [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:08:44Z"
},
"/q/11566441/644450": {
"postId": 11566441,
"postTitle": "Explain dynamically bound and static methods [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-20 08:08:39Z"
},
"/q/11574245/286116": {
"postId": 11574245,
"postTitle": "How to get the latitude and longitude from address with out using google maps in Xcode,iPhone",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 08:08:26Z"
},
"/q/11574059/286116": {
"postId": 11574059,
"postTitle": "application not running correctly on iphone and ipad",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 08:08:19Z"
},
"/q/3506400/286116": {
"postId": 3506400,
"postTitle": "designMode or contentEditable on mobile safari",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 08:08:12Z"
},
"/q/11544018/649687": {
"postId": 11544018,
"postTitle": "PHP Deploy project at customer [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 08:07:16Z"
},
"/q/11572219/286116": {
"postId": 11572219,
"postTitle": "Custom String Literals",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 08:06:37Z"
},
"/q/11538089/286116": {
"postId": 11538089,
"postTitle": "Pin annotation in iphone",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 08:06:28Z"
},
"/q/11558153/649687": {
"postId": 11558153,
"postTitle": "excel vlookup with if functionc",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 08:06:18Z"
},
"/q/2904299/649687": {
"postId": 2904299,
"postTitle": "How exactly can Python compliment your C# skills for windows based development? [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 08:05:55Z"
},
"/q/11544162/286116": {
"postId": 11544162,
"postTitle": "Facebook login on iOS apps",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 08:03:38Z"
},
"/q/4872509/286116": {
"postId": 4872509,
"postTitle": "Does anyone know how to implement the NSFastEnumeration protocol?",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 08:02:42Z"
},
"/q/11565053/649687": {
"postId": 11565053,
"postTitle": "Having trouble replicating JavaScript countdown timer",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-20 08:01:58Z"
},
"/q/11573555/286116": {
"postId": 11573555,
"postTitle": "How do you get private twitter feeds?",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 08:01:44Z"
},
"/q/11573398/649687": {
"postId": 11573398,
"postTitle": "how can i achieve payment gateway in my struts project? [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 08:01:35Z"
},
"/q/11562091/649687": {
"postId": 11562091,
"postTitle": "Global Variables in jquery nested functions?",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-20 08:01:24Z"
},
"/q/11549563/286116": {
"postId": 11549563,
"postTitle": "How to use a pull to refresh in a WebView ( iOS 5 )?",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 08:01:16Z"
},
"/q/11561097/649687": {
"postId": 11561097,
"postTitle": "Its really possible to use custom template for “home page” in “socialengine”?",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 08:01:01Z"
},
"/q/11548086/286116": {
"postId": 11548086,
"postTitle": "Random non repeat number Xcode",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 08:01:01Z"
},
"/q/11545649/649687": {
"postId": 11545649,
"postTitle": "Background link (on ALL the background!)",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 08:00:43Z"
},
"/q/11570564/286116": {
"postId": 11570564,
"postTitle": "QR code with web address for Iphone",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 08:00:30Z"
},
"/q/11564916/649687": {
"postId": 11564916,
"postTitle": "Script that reads 2 files and replaces certains values of one file in another",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-20 08:00:28Z"
},
"/q/11558052/649687": {
"postId": 11558052,
"postTitle": "mysqli->prepare('Update')",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-20 07:59:53Z"
},
"/q/11566458/286116": {
"postId": 11566458,
"postTitle": "Squatting App ID?",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 07:59:51Z"
},
"/q/6049624/649687": {
"postId": 6049624,
"postTitle": "Warning: mysql_fetch_array() expects parameter 1 to be resource [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 07:59:33Z"
},
"/q/4901728/649687": {
"postId": 4901728,
"postTitle": "mysql_fetch_array() expects parameter 1 to be resource, string given",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 07:59:12Z"
},
"/q/11557724/649687": {
"postId": 11557724,
"postTitle": "Behaviour of pre/post increment operators in Multiplication scenarios",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 07:58:54Z"
},
"/q/11560134/649687": {
"postId": 11560134,
"postTitle": "Can't write and read to stdin/stdout using Python",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-20 07:58:39Z"
},
"/q/7706257/649687": {
"postId": 7706257,
"postTitle": "What does the attribute x in <span x=“10”> mean in HTML?",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 07:58:29Z"
},
"/q/6741269/649687": {
"postId": 6741269,
"postTitle": "mysql_query() expects parameter",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 07:58:10Z"
},
"/q/11571688/649687": {
"postId": 11571688,
"postTitle": "How to use GIT on Lan? [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 07:57:47Z"
},
"/q/11565536/649687": {
"postId": 11565536,
"postTitle": "When I run the following code, it gives me a NullPointerException – How do I fix it?",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-20 07:57:33Z"
},
"/q/11555839/649687": {
"postId": 11555839,
"postTitle": "check whether jquery is already defined or not",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 07:55:02Z"
},
"/q/11549719/649687": {
"postId": 11549719,
"postTitle": "Pulling out GET data from URL using JS/Jquery",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 07:54:42Z"
},
"/q/11572524/649687": {
"postId": 11572524,
"postTitle": "how to limit fetch from while loop",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 07:54:08Z"
},
"/q/11571659/649687": {
"postId": 11571659,
"postTitle": "pygtk: a row of clickable images",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-20 07:53:56Z"
},
"/q/11572713/649687": {
"postId": 11572713,
"postTitle": "Eclipse to Search a “String” and Replace with “Non-Printable” chars? [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 07:53:44Z"
},
"/q/11560915/649687": {
"postId": 11560915,
"postTitle": "Selecting XML tags with <bar:foo> markup using jquery",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 07:51:34Z"
},
"/q/3376141/649687": {
"postId": 3376141,
"postTitle": "OpenID vs. OAuth",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 07:50:29Z"
},
"/q/11570139/649687": {
"postId": 11570139,
"postTitle": "AdMob revenue and alternatives : Impression vs Clicks [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 07:50:14Z"
},
"/q/11564327/649687": {
"postId": 11564327,
"postTitle": "JavaScript error - $e is not defined",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 07:50:03Z"
},
"/q/11547914/649687": {
"postId": 11547914,
"postTitle": "Why runtime exception is unchecked exception?",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-20 07:49:47Z"
},
"/q/11572609/649687": {
"postId": 11572609,
"postTitle": "How to get position fixed when the user scrolls down",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 07:49:19Z"
},
"/q/11571964/649687": {
"postId": 11571964,
"postTitle": "Java abstract method with object as input parameter",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-20 07:49:10Z"
},
"/q/11559377/649687": {
"postId": 11559377,
"postTitle": "Import a library into Android/Java program without using Eclipse",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-20 07:48:59Z"
},
"/q/11537874/592182": {
"postId": 11537874,
"postTitle": "Is JQuery a good choice for writing cross-platform mobile apps even though the application does not communicate with a server",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 07:46:27Z"
},
"/q/11571860/219118": {
"postId": 11571860,
"postTitle": "Please tell me what does the code below in javascript does? [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 07:43:31Z"
},
"/q/11561536/592182": {
"postId": 11561536,
"postTitle": "Dropdown doesn't show menu items until I mouseover",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 07:25:56Z"
},
"/q/11572016/592182": {
"postId": 11572016,
"postTitle": "Form value also submits form [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 07:24:59Z"
},
"/q/11573951/219118": {
"postId": 11573951,
"postTitle": "CSV file - New columns are not formed",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 07:24:49Z"
},
"/q/11565416/219118": {
"postId": 11565416,
"postTitle": "Get Twitter profile picture actual link",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 07:24:44Z"
},
"/q/11566554/219118": {
"postId": 11566554,
"postTitle": "PHP. How to extract array keys for new array?",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 07:24:36Z"
},
"/q/11562980/219118": {
"postId": 11562980,
"postTitle": "How to properly protect form action attribute",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 07:24:25Z"
},
"/q/11568469/219118": {
"postId": 11568469,
"postTitle": "Best approach for simple database configuration & record creation (login & booking system) [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 07:24:10Z"
},
"/q/11571702/219118": {
"postId": 11571702,
"postTitle": "jQuery plugin - image animation",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 07:23:57Z"
},
"/q/11568134/592182": {
"postId": 11568134,
"postTitle": "Consistent graph drawing",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 07:23:56Z"
},
"/q/11550193/219118": {
"postId": 11550193,
"postTitle": "How to get the full path to php interpreter / binary without shell access",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 07:23:49Z"
},
"/q/11559712/592182": {
"postId": 11559712,
"postTitle": "Print text from few div",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 07:23:36Z"
},
"/q/3247974/219118": {
"postId": 3247974,
"postTitle": "php beginner safe input",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 07:23:36Z"
},
"/q/11559740/219118": {
"postId": 11559740,
"postTitle": "PHP code for Substr - Making It Stop After A Word? [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 07:23:24Z"
},
"/q/11555845/592182": {
"postId": 11555845,
"postTitle": "Web client- interact with mobile camera?",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 07:23:19Z"
},
"/q/11540408/219118": {
"postId": 11540408,
"postTitle": "How get exact number of online users in php chat system?",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 07:23:16Z"
},
"/q/11565395/219118": {
"postId": 11565395,
"postTitle": "convert a jpeg into url for css",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 07:23:06Z"
},
"/q/11556832/219118": {
"postId": 11556832,
"postTitle": "PHP model class for MVC-based project",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 07:22:50Z"
},
"/q/9043532/219118": {
"postId": 9043532,
"postTitle": "Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 07:22:42Z"
},
"/q/11553912/219118": {
"postId": 11553912,
"postTitle": "PHP function to scramble javascript code? [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 07:22:38Z"
},
"/q/11561372/219118": {
"postId": 11561372,
"postTitle": "Why is my layout broken only in Firefox and IE8 (not 9)?",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 07:22:29Z"
},
"/q/11562816/219118": {
"postId": 11562816,
"postTitle": "php error on basic php",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 07:22:25Z"
},
"/q/11572095/592182": {
"postId": 11572095,
"postTitle": "Animated Jquery Tabs",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 07:22:07Z"
},
"/q/11572010/219118": {
"postId": 11572010,
"postTitle": "Overridden CSS Styles with Background Images",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 07:22:01Z"
},
"/q/11559512/592182": {
"postId": 11559512,
"postTitle": "jQuery live() deprecated: Using on for mouseenter and mouseout? [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 07:21:51Z"
},
"/q/11564422/219118": {
"postId": 11564422,
"postTitle": "Encrypting credit card information and storing it in a database [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 07:21:48Z"
},
"/q/11564024/219118": {
"postId": 11564024,
"postTitle": "How to download file with webdriver in php? [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 07:21:40Z"
},
"/q/11532537/592182": {
"postId": 11532537,
"postTitle": "change color of a row in a webgrid",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 07:21:33Z"
},
"/q/11573986/219118": {
"postId": 11573986,
"postTitle": "Playing with Linux Directory in PHP/CGI [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 07:21:20Z"
},
"/q/11550612/219118": {
"postId": 11550612,
"postTitle": "Properties not being defined by constructor",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 07:21:12Z"
},
"/q/11567762/219118": {
"postId": 11567762,
"postTitle": "Website display issues depending on the computer",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 07:21:08Z"
},
"/q/11572970/592182": {
"postId": 11572970,
"postTitle": "jQuery Slider is not working on Live Server [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 07:21:01Z"
},
"/q/11556049/592182": {
"postId": 11556049,
"postTitle": "Using Raphael.js how to create and animate multicolor curved lines based on my mouse moves? [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-20 07:20:31Z"
},
"/q/11422924/219118": {
"postId": 11422924,
"postTitle": "jquery validationengine not working on aspx page with master page",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 07:19:19Z"
},
"/q/1923514/219118": {
"postId": 1923514,
"postTitle": "Warning: gregoriantojd() expects parameter 1 to be long, string given in on line 19 [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 07:18:56Z"
},
"/q/11573313/219118": {
"postId": 11573313,
"postTitle": "Retrieve Data From DB using PHP",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 07:18:32Z"
},
"/q/11557114/1258041": {
"postId": 11557114,
"postTitle": "cp -r without hidden files",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Do Not Close",
"datetime": "2012-07-20 06:59:19Z"
},
"/q/4988425/1258041": {
"postId": 4988425,
"postTitle": "MySQL query boolean given",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Close",
"datetime": "2012-07-20 06:58:25Z"
},
"/q/11569852/1258041": {
"postId": 11569852,
"postTitle": "Python interpreting a string or SMS to match words [closed]",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Do Not Close",
"datetime": "2012-07-20 06:57:15Z"
},
"/q/11573190/1258041": {
"postId": 11573190,
"postTitle": "CONNECT SQLITE DATABASE TO ECLIPSE [closed]",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Close",
"datetime": "2012-07-20 06:55:26Z"
},
"/q/11568291/1258041": {
"postId": 11568291,
"postTitle": "Benefit of using threads/Threading module python 2.7",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Do Not Close",
"datetime": "2012-07-20 06:53:59Z"
},
"/q/11554365/1258041": {
"postId": 11554365,
"postTitle": "Converting datetime to unix timestamp",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Do Not Close",
"datetime": "2012-07-20 06:51:34Z"
},
"/q/11530168/1258041": {
"postId": 11530168,
"postTitle": "regex space validation",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Close",
"datetime": "2012-07-20 06:50:32Z"
},
"/q/11568473/286116": {
"postId": 11568473,
"postTitle": "Submitting apps automatically to app store",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 05:27:31Z"
},
"/q/11569609/286116": {
"postId": 11569609,
"postTitle": "Regex to grab a number from within a string",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 05:26:53Z"
},
"/q/11546323/286116": {
"postId": 11546323,
"postTitle": "I dont understand what this Open Gl code does in apples template",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 05:26:46Z"
},
"/q/11570655/286116": {
"postId": 11570655,
"postTitle": "Sencha Touch - How do they know? [closed]",
"userId": 286116,
"userName": "Vin",
"action": "Close",
"datetime": "2012-07-20 05:21:03Z"
},
"/q/11566821/286116": {
"postId": 11566821,
"postTitle": "iPad simulator (5.1) shows black screen upon launch",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 05:20:45Z"
},
"/q/11557642/286116": {
"postId": 11557642,
"postTitle": "raphael svg free hand drawing in ipad is not smooth",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 05:20:12Z"
},
"/q/11560727/286116": {
"postId": 11560727,
"postTitle": "How to share an image on Pinterest in iOS?",
"userId": 286116,
"userName": "Vin",
"action": "Close",
"datetime": "2012-07-20 05:19:53Z"
},
"/q/535403/286116": {
"postId": 535403,
"postTitle": "Is it possible to develop iPhone apps with a Hackintosh? [closed]",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 05:19:32Z"
},
"/q/11550222/286116": {
"postId": 11550222,
"postTitle": "Using prepareforsegue to pass an image from a button to an image view",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 05:19:06Z"
},
"/q/10746060/286116": {
"postId": 10746060,
"postTitle": "iOS libraries for OCR, Edge Detection, and Straightening?",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 05:18:44Z"
},
"/q/11538475/286116": {
"postId": 11538475,
"postTitle": "combining 2x2 puzzle",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 05:17:53Z"
},
"/q/11124836/286116": {
"postId": 11124836,
"postTitle": "organizing iOS app that gets data from server?",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 05:17:49Z"
},
"/q/11565834/286116": {
"postId": 11565834,
"postTitle": "Do I have to use buttons?",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 05:16:46Z"
},
"/q/11546016/286116": {
"postId": 11546016,
"postTitle": "Cocoa - Get all information of Adress Book",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 05:12:31Z"
},
"/q/11556710/286116": {
"postId": 11556710,
"postTitle": "How to control the audio in iOS",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 05:12:01Z"
},
"/q/11570113/286116": {
"postId": 11570113,
"postTitle": "iPhone Mail Composer Appearance Change allowed?",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 05:10:57Z"
},
"/q/11540156/286116": {
"postId": 11540156,
"postTitle": "Trouble with CocoaTouch",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 05:10:12Z"
},
"/q/11548900/286116": {
"postId": 11548900,
"postTitle": "Is there an advantage of using NSStream directly (as opposed to CFNetwork, BSD sockets, etc.)",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 05:09:35Z"
},
"/q/11563779/286116": {
"postId": 11563779,
"postTitle": "NSString select part go a string objective-c",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 05:08:32Z"
},
"/q/10289099/286116": {
"postId": 10289099,
"postTitle": "In-App Purchasing Changing Test User on the Simulator [closed]",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 05:07:59Z"
},
"/q/11547360/286116": {
"postId": 11547360,
"postTitle": "Mediaplayer.swf jw player 3.16 not playing in iPad",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 05:07:27Z"
},
"/q/11552778/286116": {
"postId": 11552778,
"postTitle": "Why isn't UIPopoverController KVO compliant?",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 05:07:09Z"
},
"/q/11324282/286116": {
"postId": 11324282,
"postTitle": "how to draw smooth curve using raphael js",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 05:06:50Z"
},
"/q/675816/286116": {
"postId": 675816,
"postTitle": "What does the 'k' prefix indicate in Apple's APIs?",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 05:06:26Z"
},
"/q/11526862/286116": {
"postId": 11526862,
"postTitle": "dispatch_async and [NSURLConnection sendSynchronousRequest]",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 05:05:31Z"
},
"/q/11526622/286116": {
"postId": 11526622,
"postTitle": "In app purchases: Urban Airship v. MKStoreKit v. just plain StoreKit [closed]",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 05:05:20Z"
},
"/q/11554683/286116": {
"postId": 11554683,
"postTitle": "How to implement Blur effect of Instagram in my App",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 05:02:23Z"
},
"/q/11563024/286116": {
"postId": 11563024,
"postTitle": "Multi-platform development",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 05:02:11Z"
},
"/q/11565990/286116": {
"postId": 11565990,
"postTitle": "About retain/release for properties",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-20 05:00:55Z"
},
"/q/11542928/269581": {
"postId": 11542928,
"postTitle": "Auto generate sku in Magento",
"userId": 269581,
"userName": "tkone",
"action": "Close",
"datetime": "2012-07-20 04:19:14Z"
},
"/q/11571391/269581": {
"postId": 11571391,
"postTitle": "Looking for SEO tool to track rank for keyphrases over time? [closed]",
"userId": 269581,
"userName": "tkone",
"action": "Close",
"datetime": "2012-07-20 04:19:05Z"
},
"/q/4601446/269581": {
"postId": 4601446,
"postTitle": "Write a program to enter a string and count number of character and number of word [closed]",
"userId": 269581,
"userName": "tkone",
"action": "Close",
"datetime": "2012-07-20 04:18:44Z"
},
"/q/11558045/298054": {
"postId": 11558045,
"postTitle": "Child/Parent structure with different clases in C++",
"userId": 298054,
"userName": "jweyrich",
"action": "Close",
"datetime": "2012-07-20 04:11:34Z"
},
"/q/11572578/298054": {
"postId": 11572578,
"postTitle": "What is the efficient way to backup large files? [migrated]",
"userId": 298054,
"userName": "jweyrich",
"action": "Close",
"datetime": "2012-07-20 04:09:57Z"
},
"/q/4596385/298054": {
"postId": 4596385,
"postTitle": "MySQL Database Design with Internationalization",
"userId": 298054,
"userName": "jweyrich",
"action": "Close",
"datetime": "2012-07-20 04:08:53Z"
},
"/q/11470042/798448": {
"postId": 11470042,
"postTitle": "How do you choose the EC2 instance for your django app? [migrated]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 04:03:40Z"
},
"/q/8518811/298054": {
"postId": 8518811,
"postTitle": "MySql - replication monitoring tool",
"userId": 298054,
"userName": "jweyrich",
"action": "Close",
"datetime": "2012-07-20 04:03:29Z"
},
"/q/11503298/798448": {
"postId": 11503298,
"postTitle": "Openfire Hardening [migrated]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 04:02:41Z"
},
"/q/11513076/798448": {
"postId": 11513076,
"postTitle": "Sending email via PHP [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 04:02:02Z"
},
"/q/11489492/798448": {
"postId": 11489492,
"postTitle": "What is the best way to hit a URL in Android without using a WebView? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 04:01:12Z"
},
"/q/11564414/193688": {
"postId": 11564414,
"postTitle": "Is any paging plugin dynamic html table with collapsed rows available? [closed]",
"userId": 193688,
"userName": "Chris Johnsen",
"action": "Close",
"datetime": "2012-07-20 03:43:50Z"
},
"/q/11571948/193688": {
"postId": 11571948,
"postTitle": "NSMutableAttributedStrings - objectAtIndex:effectiveRange:: Out of bounds",
"userId": 193688,
"userName": "Chris Johnsen",
"action": "Do Not Close",
"datetime": "2012-07-20 03:40:03Z"
},
"/q/11571837/798448": {
"postId": 11571837,
"postTitle": "SSH folder/file permissions [migrated]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 03:38:59Z"
},
"/q/7831302/193688": {
"postId": 7831302,
"postTitle": "git: Commit the currently uncommitted work in progress in the current branch to a new branch",
"userId": 193688,
"userName": "Chris Johnsen",
"action": "Close",
"datetime": "2012-07-20 03:34:57Z"
},
"/q/11536554/193688": {
"postId": 11536554,
"postTitle": "How to compare time in objc [closed]",
"userId": 193688,
"userName": "Chris Johnsen",
"action": "Close",
"datetime": "2012-07-20 03:33:59Z"
},
"/q/11561436/193688": {
"postId": 11561436,
"postTitle": "Find list of active users in UNIX",
"userId": 193688,
"userName": "Chris Johnsen",
"action": "Close",
"datetime": "2012-07-20 03:32:58Z"
},
"/q/11572053/193688": {
"postId": 11572053,
"postTitle": "Quick JavaScript to find URLs on the page and make them into links [closed]",
"userId": 193688,
"userName": "Chris Johnsen",
"action": "Close",
"datetime": "2012-07-20 03:32:40Z"
},
"/q/11571512/798448": {
"postId": 11571512,
"postTitle": "This template code will not compile. Any ideas? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 03:30:22Z"
},
"/q/11557114/193688": {
"postId": 11557114,
"postTitle": "cp -r without hidden files",
"userId": 193688,
"userName": "Chris Johnsen",
"action": "Close",
"datetime": "2012-07-20 03:26:11Z"
},
"/q/11563316/798448": {
"postId": 11563316,
"postTitle": "A Method for Preventing Replay Attacks without HTTPS [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 03:25:40Z"
},
"/q/11434065/798448": {
"postId": 11434065,
"postTitle": "Virtual Gps Application [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 03:24:42Z"
},
"/q/11464620/798448": {
"postId": 11464620,
"postTitle": "PHP - Call two of the same function? Possible? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 03:24:22Z"
},
"/q/11566439/798448": {
"postId": 11566439,
"postTitle": "update table if checkbox is checked in datagridview for each row [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 03:23:55Z"
},
"/q/11519068/798448": {
"postId": 11519068,
"postTitle": "Cloud Zoom integration [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 03:21:48Z"
},
"/q/11532468/798448": {
"postId": 11532468,
"postTitle": "HackerGuardian - Comodo [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 03:21:27Z"
},
"/q/11559031/798448": {
"postId": 11559031,
"postTitle": "What is the css equivalent of the HTML attribute “size” for a select which is multiple? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 03:20:58Z"
},
"/q/11494848/798448": {
"postId": 11494848,
"postTitle": "jQuery - 'this' selector doesn't work inside callback function [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 03:16:41Z"
},
"/q/11483084/798448": {
"postId": 11483084,
"postTitle": "java drawstring directly image [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 03:15:21Z"
},
"/q/11518874/798448": {
"postId": 11518874,
"postTitle": "Does't need Collection List tag in xml [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 03:14:45Z"
},
"/q/11559845/798448": {
"postId": 11559845,
"postTitle": "Circular reference between three classes [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 03:12:48Z"
},
"/q/11441829/798448": {
"postId": 11441829,
"postTitle": "Random selection from datasource [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 03:10:37Z"
},
"/q/1969909/918414": {
"postId": 1969909,
"postTitle": "Dynamically load data into a List Controller in Dashcode? (Via JSON) [closed]",
"userId": 918414,
"userName": "ThinkingStiff",
"action": "Close",
"datetime": "2012-07-20 02:12:39Z"
},
"/q/11563874/918414": {
"postId": 11563874,
"postTitle": "jQuery mobile specific list",
"userId": 918414,
"userName": "ThinkingStiff",
"action": "Close",
"datetime": "2012-07-20 02:12:27Z"
},
"/q/11100367/312124": {
"postId": 11100367,
"postTitle": "Creating a wired connection b/w two vms in vmware",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-20 02:10:56Z"
},
"/q/11554782/312124": {
"postId": 11554782,
"postTitle": "Show Print dialog window for PDF",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-20 02:10:37Z"
},
"/q/11536135/312124": {
"postId": 11536135,
"postTitle": "Finding Research Topic for GPGPU [closed]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-20 02:10:13Z"
},
"/q/11570584/312124": {
"postId": 11570584,
"postTitle": "Posting image to Facebook [closed]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-20 02:10:06Z"
},
"/q/11562066/219118": {
"postId": 11562066,
"postTitle": "jQuery: next and nextAll",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 01:38:16Z"
},
"/q/11556010/219118": {
"postId": 11556010,
"postTitle": "How To Use Preg Match",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 01:38:00Z"
},
"/q/11563317/219118": {
"postId": 11563317,
"postTitle": "JavaScript, How can I parse a variable into a command?",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 01:37:53Z"
},
"/q/7884164/219118": {
"postId": 7884164,
"postTitle": "Issue with conditional clause [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 01:37:44Z"
},
"/q/11565700/219118": {
"postId": 11565700,
"postTitle": "Pros and cons of this extend function, for Javascript",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 01:37:40Z"
},
"/q/11540354/219118": {
"postId": 11540354,
"postTitle": "Getting all tangled up in json_encode/json_parse and escaping",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 01:37:35Z"
},
"/q/11534602/219118": {
"postId": 11534602,
"postTitle": "How to get vimeo userID based on username(email) & password",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 01:37:32Z"
},
"/q/11555839/219118": {
"postId": 11555839,
"postTitle": "check whether jquery is already defined or not",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 01:37:16Z"
},
"/q/11555076/219118": {
"postId": 11555076,
"postTitle": "How to disable pdf file download option using JQuery?",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 01:37:06Z"
},
"/q/11557852/219118": {
"postId": 11557852,
"postTitle": "How to allow cross-domain file uploads?",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 01:37:00Z"
},
"/q/11539873/219118": {
"postId": 11539873,
"postTitle": "Why my ajax call respon goes w [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 01:36:53Z"
},
"/q/11548918/219118": {
"postId": 11548918,
"postTitle": "shipping rating with Ups API",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 01:36:34Z"
},
"/q/11568751/219118": {
"postId": 11568751,
"postTitle": "When will this design pattern break?",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 01:36:29Z"
},
"/q/11558180/219118": {
"postId": 11558180,
"postTitle": "How to write a function in tpl",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 01:36:21Z"
},
"/q/11550185/219118": {
"postId": 11550185,
"postTitle": "How to position a fixed element [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 01:36:03Z"
},
"/q/11569060/219118": {
"postId": 11569060,
"postTitle": "Error: Deprecated: Function Session_register [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 01:35:49Z"
},
"/q/11565754/219118": {
"postId": 11565754,
"postTitle": "Prepopulating forms via URL when parameters are already set",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 01:35:40Z"
},
"/q/11568974/219118": {
"postId": 11568974,
"postTitle": "php no headers text",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 01:34:46Z"
},
"/q/7641390/219118": {
"postId": 7641390,
"postTitle": "PHP MYSQL Warning: mysql_query() expects parameter 1 to be string, resource given in [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 01:34:29Z"
},
"/q/6177991/219118": {
"postId": 6177991,
"postTitle": "mysql_num_rows() expects parameter 1 to be resource error message on register form [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 01:34:05Z"
},
"/q/11529196/219118": {
"postId": 11529196,
"postTitle": "Checking if a website exists",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 01:33:47Z"
},
"/q/11569085/219118": {
"postId": 11569085,
"postTitle": "can't find variable javascript error",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 01:32:50Z"
},
"/q/11564748/219118": {
"postId": 11564748,
"postTitle": "How to create a site map using javascript",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-20 01:32:19Z"
},
"/q/11559031/219118": {
"postId": 11559031,
"postTitle": "What is the css equivalent of the HTML attribute “size” for a select which is multiple? [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-20 01:32:06Z"
},
"/q/11555737/612429": {
"postId": 11555737,
"postTitle": "How to detect DLL is not used by Any Application",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-20 01:00:41Z"
},
"/q/11567432/612429": {
"postId": 11567432,
"postTitle": "curand, thrust::random",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-20 01:00:06Z"
},
"/q/11546420/612429": {
"postId": 11546420,
"postTitle": "Reading a file and displaying the sum of names within that file",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 00:59:50Z"
},
"/q/11559031/612429": {
"postId": 11559031,
"postTitle": "What is the css equivalent of the HTML attribute “size” for a select which is multiple? [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 00:59:38Z"
},
"/q/11568972/612429": {
"postId": 11568972,
"postTitle": "Try to get value from dll",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-20 00:59:12Z"
},
"/q/4826617/612429": {
"postId": 4826617,
"postTitle": "Method with variable number of objects and a list of other arguments",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 00:59:05Z"
},
"/q/11545558/612429": {
"postId": 11545558,
"postTitle": "JavaScript combining && statements in a variable to be true or false",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 00:58:30Z"
},
"/q/11561963/612429": {
"postId": 11561963,
"postTitle": "input multiple always sending size of 5 [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 00:58:00Z"
},
"/q/11553912/612429": {
"postId": 11553912,
"postTitle": "PHP function to scramble javascript code? [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 00:57:46Z"
},
"/q/11547777/612429": {
"postId": 11547777,
"postTitle": "Is this code valid under any C standard?",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-20 00:57:35Z"
},
"/q/11568134/612429": {
"postId": 11568134,
"postTitle": "Consistent graph drawing",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 00:57:08Z"
},
"/q/11533161/612429": {
"postId": 11533161,
"postTitle": "jquery-ui datepicker change z-index",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-20 00:55:57Z"
},
"/q/11559096/612429": {
"postId": 11559096,
"postTitle": "declare typedef type",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 00:55:41Z"
},
"/q/11554167/612429": {
"postId": 11554167,
"postTitle": "ipv6 router advertisement issue [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 00:55:27Z"
},
"/q/11561372/612429": {
"postId": 11561372,
"postTitle": "Why is my layout broken only in Firefox and IE8 (not 9)?",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 00:55:14Z"
},
"/q/11557974/1114": {
"postId": 11557974,
"postTitle": "Can't remove Whitespace at the bottom of my document",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 00:55:09Z"
},
"/q/11571039/612429": {
"postId": 11571039,
"postTitle": "Text iteration, Assembly versus C++",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-20 00:55:05Z"
},
"/q/11562239/612429": {
"postId": 11562239,
"postTitle": "Dynamically retrieving variable from chained objects",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-20 00:54:55Z"
},
"/q/11548274/1114": {
"postId": 11548274,
"postTitle": "Image getting cut off in IE",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 00:54:43Z"
},
"/q/11549428/612429": {
"postId": 11549428,
"postTitle": "Div transition triggered by a tags",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-20 00:54:15Z"
},
"/q/11558810/612429": {
"postId": 11558810,
"postTitle": "Creating a Sap UI5 Control",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 00:53:47Z"
},
"/q/10043097/612429": {
"postId": 10043097,
"postTitle": "How to close\\hide from popup form window in javascript? [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 00:53:33Z"
},
"/q/11560758/612429": {
"postId": 11560758,
"postTitle": "Click on button with PHP or javascript?",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 00:53:20Z"
},
"/q/11540905/1114": {
"postId": 11540905,
"postTitle": "iscroll 4 not working in blackberry [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-20 00:52:59Z"
},
"/q/11558501/707795": {
"postId": 11558501,
"postTitle": "New tabs in webkit [closed]",
"userId": 707795,
"userName": "Aurelio De Rosa",
"action": "Close",
"datetime": "2012-07-20 00:44:00Z"
},
"/q/11548918/707795": {
"postId": 11548918,
"postTitle": "shipping rating with Ups API",
"userId": 707795,
"userName": "Aurelio De Rosa",
"action": "Close",
"datetime": "2012-07-20 00:43:48Z"
},
"/q/11537810/707795": {
"postId": 11537810,
"postTitle": "checking if internet is active using jquery",
"userId": 707795,
"userName": "Aurelio De Rosa",
"action": "Close",
"datetime": "2012-07-20 00:43:38Z"
},
"/q/11560953/707795": {
"postId": 11560953,
"postTitle": "Search the document for text to remove more than the tag it's found in",
"userId": 707795,
"userName": "Aurelio De Rosa",
"action": "Close",
"datetime": "2012-07-20 00:43:28Z"
},
"/q/11545661/707795": {
"postId": 11545661,
"postTitle": "PHP force download json [closed]",
"userId": 707795,
"userName": "Aurelio De Rosa",
"action": "Close",
"datetime": "2012-07-20 00:43:20Z"
},
"/q/11568850/707795": {
"postId": 11568850,
"postTitle": "Equivalent of .ready() for a div?",
"userId": 707795,
"userName": "Aurelio De Rosa",
"action": "Close",
"datetime": "2012-07-20 00:42:50Z"
},
"/q/11544609/707795": {
"postId": 11544609,
"postTitle": "PHP: File extension to MIME type?",
"userId": 707795,
"userName": "Aurelio De Rosa",
"action": "Close",
"datetime": "2012-07-20 00:42:29Z"
},
"/q/11564187/612429": {
"postId": 11564187,
"postTitle": "Modifying printf",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-20 00:42:22Z"
},
"/q/11559512/707795": {
"postId": 11559512,
"postTitle": "jQuery live() deprecated: Using on for mouseenter and mouseout? [closed]",
"userId": 707795,
"userName": "Aurelio De Rosa",
"action": "Close",
"datetime": "2012-07-20 00:42:14Z"
},
"/q/11567414/612429": {
"postId": 11567414,
"postTitle": "use pymongo to insert json file into mongo collection",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-20 00:42:12Z"
},
"/q/11558430/707795": {
"postId": 11558430,
"postTitle": "browser not pick up the code added by jquery function. html () [closed]",
"userId": 707795,
"userName": "Aurelio De Rosa",
"action": "Close",
"datetime": "2012-07-20 00:42:00Z"
},
"/q/3513179/612429": {
"postId": 3513179,
"postTitle": "How to Access File Descriptor of Open File",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 00:41:49Z"
},
"/q/11422924/707795": {
"postId": 11422924,
"postTitle": "jquery validationengine not working on aspx page with master page",
"userId": 707795,
"userName": "Aurelio De Rosa",
"action": "Close",
"datetime": "2012-07-20 00:41:39Z"
},
"/q/11565361/612429": {
"postId": 11565361,
"postTitle": "Nodes using Structs",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 00:41:21Z"
},
"/q/11530930/612429": {
"postId": 11530930,
"postTitle": "How to copy a file on linux from a c program exactly",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-20 00:41:07Z"
},
"/q/11557497/612429": {
"postId": 11557497,
"postTitle": "how to clear all textBoxes in the winform with c++ ? [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 00:40:59Z"
},
"/q/11571075/612429": {
"postId": 11571075,
"postTitle": "jQuery .toggle not completing",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-20 00:40:31Z"
},
"/q/11564327/612429": {
"postId": 11564327,
"postTitle": "JavaScript error - $e is not defined",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 00:40:13Z"
},
"/q/11561316/612429": {
"postId": 11561316,
"postTitle": "Recommendations/Experiences concerning multi precision libraries",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-20 00:39:55Z"
},
"/q/11568741/612429": {
"postId": 11568741,
"postTitle": "Why do I get that I'm passing an arguments from incompatible pointer type?",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-20 00:38:27Z"
},
"/q/11559570/612429": {
"postId": 11559570,
"postTitle": "Best practice for having two if statements from the same bool c++",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-20 00:38:02Z"
},
"/q/11568202/612429": {
"postId": 11568202,
"postTitle": "Center a Background Image in a DIV",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 00:37:13Z"
},
"/q/11567547/612429": {
"postId": 11567547,
"postTitle": "C++: Any performance penalty for wrapping int in a class?",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-20 00:36:51Z"
},
"/q/11540079/612429": {
"postId": 11540079,
"postTitle": "jQuery + jQuery Mobile + Chrome 20",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 00:36:34Z"
},
"/q/11546061/612429": {
"postId": 11546061,
"postTitle": "How to have window message stay and not leave the page until user clicks button?",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-20 00:36:24Z"
},
"/q/11523737/798448": {
"postId": 11523737,
"postTitle": "jquery - save image as specified filename [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 00:23:42Z"
},
"/q/11559845/105084": {
"postId": 11559845,
"postTitle": "Circular reference between three classes [closed]",
"userId": 105084,
"userName": "Matthew",
"action": "Close",
"datetime": "2012-07-20 00:20:52Z"
},
"/q/11517522/798448": {
"postId": 11517522,
"postTitle": "XPATH expression parser [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 00:20:42Z"
},
"/q/11533702/798448": {
"postId": 11533702,
"postTitle": "Transfer a table from my main website to my mobile website [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 00:20:31Z"
},
"/q/11554077/798448": {
"postId": 11554077,
"postTitle": "“find” command weird behavior, return different result on same command [migrated]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 00:19:48Z"
},
"/q/11202904/105084": {
"postId": 11202904,
"postTitle": "How can I convert a gridview into a PDF file without a pop-up window?",
"userId": 105084,
"userName": "Matthew",
"action": "Close",
"datetime": "2012-07-20 00:19:02Z"
},
"/q/11556536/798448": {
"postId": 11556536,
"postTitle": "Find array index by ignorecase [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 00:16:00Z"
},
"/q/11526582/798448": {
"postId": 11526582,
"postTitle": "Java: Convert bool array into a single int [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 00:14:49Z"
},
"/q/11554091/499609": {
"postId": 11554091,
"postTitle": "Why does this function always crash when free memory?",
"userId": 499609,
"userName": "Len",
"action": "Close",
"datetime": "2012-07-20 00:14:32Z"
},
"/q/11554167/499609": {
"postId": 11554167,
"postTitle": "ipv6 router advertisement issue [closed]",
"userId": 499609,
"userName": "Len",
"action": "Close",
"datetime": "2012-07-20 00:14:15Z"
},
"/q/11555076/612429": {
"postId": 11555076,
"postTitle": "How to disable pdf file download option using JQuery?",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 00:13:15Z"
},
"/q/11561000/612429": {
"postId": 11561000,
"postTitle": "Loading object from JSON file into javascript",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-20 00:12:53Z"
},
"/q/11539307/798448": {
"postId": 11539307,
"postTitle": "Which option to select to use sql in C++ [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 00:12:03Z"
},
"/q/11565905/798448": {
"postId": 11565905,
"postTitle": "how to disable mouseover div swap in browser [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 00:11:32Z"
},
"/q/11547192/798448": {
"postId": 11547192,
"postTitle": "Android swype softkeyboard when shrinked does not resize the background layout [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 00:11:18Z"
},
"/q/11567112/612429": {
"postId": 11567112,
"postTitle": "Tools to extract all functions from a source code project",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 00:11:13Z"
},
"/q/11560208/612429": {
"postId": 11560208,
"postTitle": "syntax difference in javascript function calling?",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 00:10:56Z"
},
"/q/11568422/798448": {
"postId": 11568422,
"postTitle": "Is there way to customize windows timer changes programmitically? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 00:10:24Z"
},
"/q/11544364/612429": {
"postId": 11544364,
"postTitle": "Strange srand behaviour inside for loop; c++",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-20 00:10:13Z"
},
"/q/11570455/612429": {
"postId": 11570455,
"postTitle": "Python: General CSV file parsing and manipulation",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-20 00:09:50Z"
},
"/q/11554882/798448": {
"postId": 11554882,
"postTitle": "Beta builder supports IOS 5.0 and later [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 00:06:02Z"
},
"/q/11568644/798448": {
"postId": 11568644,
"postTitle": "CS 193p assignment 3 Model [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 00:05:29Z"
},
"/q/11560398/798448": {
"postId": 11560398,
"postTitle": "iPhone: Merge/combine audio files [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-20 00:04:08Z"
},
"/q/11565060/448625": {
"postId": 11565060,
"postTitle": "php array of dates; code review? [closed]",
"userId": 448625,
"userName": "Caner",
"action": "Close",
"datetime": "2012-07-19 23:53:51Z"
},
"/q/11532131/886887": {
"postId": 11532131,
"postTitle": "Python Not Running Code [closed]",
"userId": 886887,
"userName": "Harry Johnston",
"action": "Close",
"datetime": "2012-07-19 23:19:38Z"
},
"/q/11554108/886887": {
"postId": 11554108,
"postTitle": "install posix on windows 7 32bit is it posible?",
"userId": 886887,
"userName": "Harry Johnston",
"action": "Close",
"datetime": "2012-07-19 23:19:15Z"
},
"/q/11566139/9453": {
"postId": 11566139,
"postTitle": "I accidentally did ulimit -r1 and I want to go back to ulimit -r90+, how do I do this?",
"userId": 9453,
"userName": "Daniel DiPaolo",
"action": "Close",
"datetime": "2012-07-19 23:18:35Z"
},
"/q/11540602/886887": {
"postId": 11540602,
"postTitle": "Moving ODBC connections from WindowsXP to Win7 64bit",
"userId": 886887,
"userName": "Harry Johnston",
"action": "Close",
"datetime": "2012-07-19 23:18:25Z"
},
"/q/11567967/9453": {
"postId": 11567967,
"postTitle": "My Android app needs to push data to a database in a cloud. What database do I use, what code do I need in the app?",
"userId": 9453,
"userName": "Daniel DiPaolo",
"action": "Close",
"datetime": "2012-07-19 23:18:16Z"
},
"/q/11566606/886887": {
"postId": 11566606,
"postTitle": "whats commands in php can control windows? [closed]",
"userId": 886887,
"userName": "Harry Johnston",
"action": "Close",
"datetime": "2012-07-19 23:18:15Z"
},
"/q/11556409/9453": {
"postId": 11556409,
"postTitle": "Fixed size database - advantage?",
"userId": 9453,
"userName": "Daniel DiPaolo",
"action": "Do Not Close",
"datetime": "2012-07-19 23:18:03Z"
},
"/q/11116034/886887": {
"postId": 11116034,
"postTitle": "How to install Oracle XE 11g in silent mode?",
"userId": 886887,
"userName": "Harry Johnston",
"action": "Close",
"datetime": "2012-07-19 23:17:59Z"
},
"/q/11565685/886887": {
"postId": 11565685,
"postTitle": "warp/rotate/scale windows 7 desktop",
"userId": 886887,
"userName": "Harry Johnston",
"action": "Do Not Close",
"datetime": "2012-07-19 23:17:20Z"
},
"/q/11542974/886887": {
"postId": 11542974,
"postTitle": "How can I manually/via the registry delete desktop icons?",
"userId": 886887,
"userName": "Harry Johnston",
"action": "Close",
"datetime": "2012-07-19 23:17:05Z"
},
"/q/2833757/886887": {
"postId": 2833757,
"postTitle": "Receiving error “Activity has leaked window” when try to show the dialog box",
"userId": 886887,
"userName": "Harry Johnston",
"action": "Close",
"datetime": "2012-07-19 23:16:51Z"
},
"/q/11536978/886887": {
"postId": 11536978,
"postTitle": "not able to upload files on skydrive",
"userId": 886887,
"userName": "Harry Johnston",
"action": "Close",
"datetime": "2012-07-19 23:16:09Z"
},
"/q/2002896/886887": {
"postId": 2002896,
"postTitle": "Knowledge of windows internals?",
"userId": 886887,
"userName": "Harry Johnston",
"action": "Close",
"datetime": "2012-07-19 23:15:50Z"
},
"/q/11555936/886887": {
"postId": 11555936,
"postTitle": "Downloading a source from a git repository using eclipse?",
"userId": 886887,
"userName": "Harry Johnston",
"action": "Close",
"datetime": "2012-07-19 23:15:38Z"
},
"/q/11562163/19624": {
"postId": 11562163,
"postTitle": "Get tweets with PHP - $twitter_id? [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 23:06:07Z"
},
"/q/11537488/19624": {
"postId": 11537488,
"postTitle": "compile c project with Cygwin [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 23:05:57Z"
},
"/q/11567682/19624": {
"postId": 11567682,
"postTitle": "A simple tutorial for Wt (c++ web development) [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 23:05:41Z"
},
"/q/11557772/19624": {
"postId": 11557772,
"postTitle": "left join with null values [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 23:05:24Z"
},
"/q/11559594/19624": {
"postId": 11559594,
"postTitle": "I want an example to make shortcut file [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 23:04:56Z"
},
"/q/11288125/19624": {
"postId": 11288125,
"postTitle": "URL redirect without GET parameters",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 23:04:43Z"
},
"/q/11561097/19624": {
"postId": 11561097,
"postTitle": "Its really possible to use custom template for “home page” in “socialengine”?",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 23:04:16Z"
},
"/q/2122114/19624": {
"postId": 2122114,
"postTitle": "How to Load test an php webpage [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 23:03:57Z"
},
"/q/11555054/19624": {
"postId": 11555054,
"postTitle": "How to remove FTP details",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 23:03:42Z"
},
"/q/11217859/19624": {
"postId": 11217859,
"postTitle": "get the time from database based on date and id and print it using lable",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 23:03:30Z"
},
"/q/11564553/119477": {
"postId": 11564553,
"postTitle": "How do i add set of numbers to specific one index in a List<float>?",
"userId": 119477,
"userName": "Conrad Frix",
"action": "Do Not Close",
"datetime": "2012-07-19 22:12:26Z"
},
"/q/11559205/119477": {
"postId": 11559205,
"postTitle": "Website fails to connect to SQL server with Error - 26 server not found",
"userId": 119477,
"userName": "Conrad Frix",
"action": "Do Not Close",
"datetime": "2012-07-19 22:11:57Z"
},
"/q/11565165/693207": {
"postId": 11565165,
"postTitle": "Check if an array value exist",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Do Not Close",
"datetime": "2012-07-19 22:11:34Z"
},
"/q/11564282/693207": {
"postId": 11564282,
"postTitle": "Use of the parameter 'status' to exit",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Do Not Close",
"datetime": "2012-07-19 22:09:53Z"
},
"/q/11567745/23567": {
"postId": 11567745,
"postTitle": "Missing Part of function leads to error in calculation: RTAQ::harModel",
"userId": 23567,
"userName": "soegaard",
"action": "Close",
"datetime": "2012-07-19 21:44:43Z"
},
"/q/11551560/23567": {
"postId": 11551560,
"postTitle": "How to add multiple line segments between two associated points in ggplot2?",
"userId": 23567,
"userName": "soegaard",
"action": "Do Not Close",
"datetime": "2012-07-19 21:43:30Z"
},
"/q/11563154/23567": {
"postId": 11563154,
"postTitle": "What are Replacement Functions in R?",
"userId": 23567,
"userName": "soegaard",
"action": "Do Not Close",
"datetime": "2012-07-19 21:42:58Z"
},
"/q/11536023/23567": {
"postId": 11536023,
"postTitle": "Understanding awesomeness of Lisp/Clojure [closed]",
"userId": 23567,
"userName": "soegaard",
"action": "Close",
"datetime": "2012-07-19 21:40:47Z"
},
"/q/11540589/502381": {
"postId": 11540589,
"postTitle": "open or create files with assembly code [closed]",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-19 21:31:13Z"
},
"/q/1576716/502381": {
"postId": 1576716,
"postTitle": "Web-based WYSIWYG HTML layout editor?",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-19 21:31:06Z"
},
"/q/7074158/502381": {
"postId": 7074158,
"postTitle": "How can I edit eclipse workbench title bar name?",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-19 21:30:57Z"
},
"/q/11560518/502381": {
"postId": 11560518,
"postTitle": "How can I accept credit card payment without leaving my website? [closed]",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-19 21:30:44Z"
},
"/q/11560470/502381": {
"postId": 11560470,
"postTitle": "How to prevent phishing sites from being uploaded on shared server?",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-19 21:30:20Z"
},
"/q/11552433/502381": {
"postId": 11552433,
"postTitle": "Is there anyway to send and receive email in linux command using POP3? [migrated]",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-19 21:29:58Z"
},
"/q/11567176/502381": {
"postId": 11567176,
"postTitle": "How do you set up .vimrc",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-19 21:29:44Z"
},
"/q/11560807/502381": {
"postId": 11560807,
"postTitle": "How do I get a short code in India?",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-19 21:29:37Z"
},
"/q/11554457/693207": {
"postId": 11554457,
"postTitle": "Split Name into First name and Last Name [closed]",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-19 21:25:48Z"
},
"/q/11563874/592182": {
"postId": 11563874,
"postTitle": "jQuery mobile specific list",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-19 21:22:55Z"
},
"/q/11559420/119477": {
"postId": 11559420,
"postTitle": "UPDATE/INSERT based on if a row exists",
"userId": 119477,
"userName": "Conrad Frix",
"action": "Do Not Close",
"datetime": "2012-07-19 21:22:38Z"
},
"/q/11564697/119477": {
"postId": 11564697,
"postTitle": "dropdownlist won't fire on SelectedItemChanged",
"userId": 119477,
"userName": "Conrad Frix",
"action": "Close",
"datetime": "2012-07-19 21:21:27Z"
},
"/q/4263680/119477": {
"postId": 4263680,
"postTitle": "How to best arrange the learning process phaseand in the future the work itself?",
"userId": 119477,
"userName": "Conrad Frix",
"action": "Close",
"datetime": "2012-07-19 21:20:13Z"
},
"/q/11533702/119477": {
"postId": 11533702,
"postTitle": "Transfer a table from my main website to my mobile website [closed]",
"userId": 119477,
"userName": "Conrad Frix",
"action": "Close",
"datetime": "2012-07-19 21:19:37Z"
},
"/q/11557588/693207": {
"postId": 11557588,
"postTitle": "FPDF - Inbuilt class - Generate dyanamic column PDF",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-19 21:19:18Z"
},
"/q/11539011/119477": {
"postId": 11539011,
"postTitle": "CSS transform: rotate bug in safari [closed]",
"userId": 119477,
"userName": "Conrad Frix",
"action": "Close",
"datetime": "2012-07-19 21:19:18Z"
},
"/q/11537302/119477": {
"postId": 11537302,
"postTitle": "MySQL Query using NOT in it, possible?",
"userId": 119477,
"userName": "Conrad Frix",
"action": "Do Not Close",
"datetime": "2012-07-19 21:18:27Z"
},
"/q/11557713/693207": {
"postId": 11557713,
"postTitle": "Frameworks for: JQuery Mobile + PHP + Mysql + REST [closed]",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-19 21:18:20Z"
},
"/q/4538732/693207": {
"postId": 4538732,
"postTitle": "what's mean by Collation",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-19 21:05:57Z"
},
"/q/11556627/693207": {
"postId": 11556627,
"postTitle": "Implement an Arzoo Hotel API by sending a SOAP request",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-19 21:02:56Z"
},
"/q/3376141/693207": {
"postId": 3376141,
"postTitle": "OpenID vs. OAuth",
"userId": 693207,
"userName": "Jürgen Thelen",
"action": "Close",
"datetime": "2012-07-19 20:48:59Z"
},
"/q/8806148/4794": {
"postId": 8806148,
"postTitle": "mysql_query() expects parameter 1 to be string, resource given",
"userId": 4794,
"userName": "Don Kirkby",
"action": "Do Not Close",
"datetime": "2012-07-19 20:32:15Z"
},
"/q/5268125/4794": {
"postId": 5268125,
"postTitle": "Warning: fopen() expects parameter 1 to be string, array given in /home/speedycm/public_html/speedyautos/carphoto.php on line 47",
"userId": 4794,
"userName": "Don Kirkby",
"action": "Do Not Close",
"datetime": "2012-07-19 20:28:25Z"
},
"/q/11345985/427763": {
"postId": 11345985,
"postTitle": "Move file into a specific folder",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 19:59:26Z"
},
"/q/11556232/427763": {
"postId": 11556232,
"postTitle": "how to use php objects? [closed]",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 19:59:14Z"
},
"/q/11558471/427763": {
"postId": 11558471,
"postTitle": "SQL Server database backup file (.bak ) file gets corrupted",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 19:58:52Z"
},
"/q/11554077/427763": {
"postId": 11554077,
"postTitle": "“find” command weird behavior, return different result on same command [migrated]",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 19:58:32Z"
},
"/q/7191846/427763": {
"postId": 7191846,
"postTitle": "C#: Help in Regular expression [closed]",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 19:57:57Z"
},
"/q/11548884/427763": {
"postId": 11548884,
"postTitle": "Write a packet to a socket, preferably using socket_write() [closed]",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 19:57:21Z"
},
"/q/11545661/427763": {
"postId": 11545661,
"postTitle": "PHP force download json [closed]",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 19:56:56Z"
},
"/q/11555355/427763": {
"postId": 11555355,
"postTitle": "Calculating the distance between 2 points",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 19:56:13Z"
},
"/q/11566041/427763": {
"postId": 11566041,
"postTitle": "How to connect to database using applet and html [closed]",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 19:55:41Z"
},
"/q/11546905/427763": {
"postId": 11546905,
"postTitle": "How can I make my own android lockscreen?",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 19:54:51Z"
},
"/q/11269269/427763": {
"postId": 11269269,
"postTitle": "Troubleshooting “Warning: mysqli_result::fetch_array() expects parameter 1 to be long, object given”",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 19:54:33Z"
},
"/q/11556683/427763": {
"postId": 11556683,
"postTitle": "Out of Memory Exception in C#",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 19:53:28Z"
},
"/q/11534719/427763": {
"postId": 11534719,
"postTitle": "Printing a table layout panel in a windows form application [closed]",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 19:52:06Z"
},
"/q/11556836/427763": {
"postId": 11556836,
"postTitle": "Remove array indexes or create array without indexes",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 19:51:56Z"
},
"/q/11546266/427763": {
"postId": 11546266,
"postTitle": "Can i manage employee related data in one table?",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 19:51:26Z"
},
"/q/11560778/3853": {
"postId": 11560778,
"postTitle": "Resize Controls Dynamically Based on Text",
"userId": 3853,
"userName": "ChrisN",
"action": "Do Not Close",
"datetime": "2012-07-19 19:43:47Z"
},
"/q/11549563/608157": {
"postId": 11549563,
"postTitle": "How to use a pull to refresh in a WebView ( iOS 5 )?",
"userId": 608157,
"userName": "David Rönnqvist",
"action": "Close",
"datetime": "2012-07-19 19:37:27Z"
},
"/q/11554683/608157": {
"postId": 11554683,
"postTitle": "How to implement Blur effect of Instagram in my App",
"userId": 608157,
"userName": "David Rönnqvist",
"action": "Close",
"datetime": "2012-07-19 19:36:53Z"
},
"/q/11550222/608157": {
"postId": 11550222,
"postTitle": "Using prepareforsegue to pass an image from a button to an image view",
"userId": 608157,
"userName": "David Rönnqvist",
"action": "Close",
"datetime": "2012-07-19 19:36:20Z"
},
"/q/11261825/608157": {
"postId": 11261825,
"postTitle": "iphone KVO setup [closed]",
"userId": 608157,
"userName": "David Rönnqvist",
"action": "Close",
"datetime": "2012-07-19 19:34:58Z"
},
"/q/11536554/608157": {
"postId": 11536554,
"postTitle": "How to compare time in objc [closed]",
"userId": 608157,
"userName": "David Rönnqvist",
"action": "Close",
"datetime": "2012-07-19 19:34:07Z"
},
"/q/11540713/608157": {
"postId": 11540713,
"postTitle": "Create tableview like Facebook timeline… iPhone app [closed]",
"userId": 608157,
"userName": "David Rönnqvist",
"action": "Close",
"datetime": "2012-07-19 19:32:53Z"
},
"/q/1564029/608157": {
"postId": 1564029,
"postTitle": "Star rating after iPhone app distribution",
"userId": 608157,
"userName": "David Rönnqvist",
"action": "Close",
"datetime": "2012-07-19 19:31:54Z"
},
"/q/11533702/1114": {
"postId": 11533702,
"postTitle": "Transfer a table from my main website to my mobile website [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 19:15:42Z"
},
"/q/11552341/1114": {
"postId": 11552341,
"postTitle": "Unable to line up 2 objects in the same line [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 19:15:35Z"
},
"/q/11563249/1114": {
"postId": 11563249,
"postTitle": "Get floats to “float up” to fill space",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 19:15:14Z"
},
"/q/11532131/1114": {
"postId": 11532131,
"postTitle": "Python Not Running Code [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 19:14:40Z"
},
"/q/11540079/1114": {
"postId": 11540079,
"postTitle": "jQuery + jQuery Mobile + Chrome 20",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 19:13:56Z"
},
"/q/11565344/1114": {
"postId": 11565344,
"postTitle": "“Uncaught TypeError: undefined is not a function” on production server",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 19:13:10Z"
},
"/q/11559886/281472": {
"postId": 11559886,
"postTitle": "Convert or get image from PDF, EPS, PP, PSD, AI, etc file formats in asp.net [closed]",
"userId": 281472,
"userName": "Garrett Vlieger",
"action": "Close",
"datetime": "2012-07-19 19:12:23Z"
},
"/q/11567393/281472": {
"postId": 11567393,
"postTitle": "EXTJS 3 data store to get custom field value",
"userId": 281472,
"userName": "Garrett Vlieger",
"action": "Close",
"datetime": "2012-07-19 19:11:56Z"
},
"/q/11565756/1114": {
"postId": 11565756,
"postTitle": "Twitter HTML data parsing using Python [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 19:11:28Z"
},
"/q/1542236/281472": {
"postId": 1542236,
"postTitle": "Class not registered Exception - Microsoft Office 2003 OCR with MODI-C# Windows Application [closed]",
"userId": 281472,
"userName": "Garrett Vlieger",
"action": "Close",
"datetime": "2012-07-19 19:11:15Z"
},
"/q/11565905/1114": {
"postId": 11565905,
"postTitle": "how to disable mouseover div swap in browser [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 19:11:01Z"
},
"/q/11555034/281472": {
"postId": 11555034,
"postTitle": "Is it true? Adobe AIR based Android development has no future [closed]",
"userId": 281472,
"userName": "Garrett Vlieger",
"action": "Close",
"datetime": "2012-07-19 19:10:56Z"
},
"/q/11559360/1114": {
"postId": 11559360,
"postTitle": "Can we create onhover effect with editable text with background image color change?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 19:10:44Z"
},
"/q/11555646/281472": {
"postId": 11555646,
"postTitle": "Program terminates when TCP Client connects",
"userId": 281472,
"userName": "Garrett Vlieger",
"action": "Do Not Close",
"datetime": "2012-07-19 19:10:34Z"
},
"/q/11324282/1114": {
"postId": 11324282,
"postTitle": "how to draw smooth curve using raphael js",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 19:10:18Z"
},
"/q/11561963/1114": {
"postId": 11561963,
"postTitle": "input multiple always sending size of 5 [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 19:09:36Z"
},
"/q/11553721/1114": {
"postId": 11553721,
"postTitle": "Using a string variable as a variable name [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 19:09:12Z"
},
"/q/11560025/1114": {
"postId": 11560025,
"postTitle": "how to align the image to the center? [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 19:05:52Z"
},
"/q/4263680/1114": {
"postId": 4263680,
"postTitle": "How to best arrange the learning process phaseand in the future the work itself?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 19:05:33Z"
},
"/q/11554154/1114": {
"postId": 11554154,
"postTitle": "How to receive javascript variable in another file? [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 19:05:13Z"
},
"/q/11565657/1114": {
"postId": 11565657,
"postTitle": "Rounding UP to next integer with javascript even if value is 1.00000000001",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Do Not Close",
"datetime": "2012-07-19 19:04:53Z"
},
"/q/11563368/1114": {
"postId": 11563368,
"postTitle": "Encoding in IE9",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 19:03:18Z"
},
"/q/11560134/1114": {
"postId": 11560134,
"postTitle": "Can't write and read to stdin/stdout using Python",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 19:02:33Z"
},
"/q/11556669/1114": {
"postId": 11556669,
"postTitle": "Way to extract Name or other fields from the Word Resume(Indian)",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 19:01:41Z"
},
"/q/11563890/1114": {
"postId": 11563890,
"postTitle": "Python - switch alternative for non-discrete comparisons",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Do Not Close",
"datetime": "2012-07-19 19:01:21Z"
},
"/q/11563656/1114": {
"postId": 11563656,
"postTitle": "convert java variable to javascript",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Do Not Close",
"datetime": "2012-07-19 19:00:57Z"
},
"/q/11565460/1114": {
"postId": 11565460,
"postTitle": "Terminal and FixedSys fonts on Firefox 14.0.1",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 18:59:54Z"
},
"/q/11560208/1114": {
"postId": 11560208,
"postTitle": "syntax difference in javascript function calling?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 18:59:36Z"
},
"/q/11558582/1114": {
"postId": 11558582,
"postTitle": "Don't understand CIRCUMFLEX use in this UNIX command ls -L | grep -v ^zip",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Do Not Close",
"datetime": "2012-07-19 18:59:06Z"
},
"/q/11559671/1114": {
"postId": 11559671,
"postTitle": "syntax error in external javascript file but ok in <head>? [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 18:57:48Z"
},
"/q/11557972/1114": {
"postId": 11557972,
"postTitle": "Refresh child window on parent window",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 18:57:23Z"
},
"/q/11541576/1114": {
"postId": 11541576,
"postTitle": "How to delete duplicate values in a list? [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 18:56:26Z"
},
"/q/11566626/1114": {
"postId": 11566626,
"postTitle": "Remove added event listener",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 18:54:01Z"
},
"/q/11562091/1114": {
"postId": 11562091,
"postTitle": "Global Variables in jquery nested functions?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 18:52:47Z"
},
"/q/11530733/1114": {
"postId": 11530733,
"postTitle": "clearing floated divs acting odd within parent div",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 18:51:58Z"
},
"/q/11562465/1114": {
"postId": 11562465,
"postTitle": "Indent code on a web page like in a code editor?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Do Not Close",
"datetime": "2012-07-19 18:51:29Z"
},
"/q/11549281/1114": {
"postId": 11549281,
"postTitle": "jQuery each() breaking on null",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 18:50:49Z"
},
"/q/10043097/1114": {
"postId": 10043097,
"postTitle": "How to close\\hide from popup form window in javascript? [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 18:49:44Z"
},
"/q/22795/1114": {
"postId": 22795,
"postTitle": "When to (notionally) “Build your own compiler” [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 18:49:06Z"
},
"/q/11535803/1114": {
"postId": 11535803,
"postTitle": "how to java script swap dropdown value on change PHP my code attached?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 18:48:11Z"
},
"/q/11557852/1114": {
"postId": 11557852,
"postTitle": "How to allow cross-domain file uploads?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 18:47:39Z"
},
"/q/11563154/1135819": {
"postId": 11563154,
"postTitle": "What are Replacement Functions in R?",
"userId": 1135819,
"userName": "betabandido",
"action": "Close",
"datetime": "2012-07-19 18:45:03Z"
},
"/q/11548423/1135819": {
"postId": 11548423,
"postTitle": "Gedit open in new window then new tab",
"userId": 1135819,
"userName": "betabandido",
"action": "Do Not Close",
"datetime": "2012-07-19 18:42:16Z"
},
"/q/11561316/1135819": {
"postId": 11561316,
"postTitle": "Recommendations/Experiences concerning multi precision libraries",
"userId": 1135819,
"userName": "betabandido",
"action": "Close",
"datetime": "2012-07-19 18:35:05Z"
},
"/q/11557497/1135819": {
"postId": 11557497,
"postTitle": "how to clear all textBoxes in the winform with c++ ? [closed]",
"userId": 1135819,
"userName": "betabandido",
"action": "Close",
"datetime": "2012-07-19 18:33:08Z"
},
"/q/11559325/64174": {
"postId": 11559325,
"postTitle": "Android Image Uploading",
"userId": 64174,
"userName": "Sean Owen",
"action": "Close",
"datetime": "2012-07-19 18:31:51Z"
},
"/q/11538229/427763": {
"postId": 11538229,
"postTitle": "Apart from GET and POST is there any way to send data to server using PHP? [closed]",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 18:21:02Z"
},
"/q/11554985/427763": {
"postId": 11554985,
"postTitle": "Seekbar progress Level upto a limit between 0 and max [closed]",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 18:20:47Z"
},
"/q/11561892/4": {
"postId": 11561892,
"postTitle": "vbs script for “Uploading documents to QC test lab” [closed]",
"userId": 4,
"userName": "Joel Spolsky",
"action": "Close",
"datetime": "2012-07-19 18:10:53Z"
},
"/q/11560478/427763": {
"postId": 11560478,
"postTitle": "Weird PHP redirection [closed]",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 18:02:33Z"
},
"/q/11566441/427763": {
"postId": 11566441,
"postTitle": "Explain dynamically bound and static methods [closed]",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 18:01:44Z"
},
"/q/11564916/427763": {
"postId": 11564916,
"postTitle": "Script that reads 2 files and replaces certains values of one file in another",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 18:00:38Z"
},
"/q/11547777/427763": {
"postId": 11547777,
"postTitle": "Is this code valid under any C standard?",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 17:59:54Z"
},
"/q/11566039/427763": {
"postId": 11566039,
"postTitle": "Getting the key when we know the value in HashMap [closed]",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 17:59:40Z"
},
"/q/11535223/427763": {
"postId": 11535223,
"postTitle": "Map application which show a current location",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 17:59:12Z"
},
"/q/11561660/427763": {
"postId": 11561660,
"postTitle": "Twilio demo call from browser to phone [closed]",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 17:58:56Z"
},
"/q/11561595/427763": {
"postId": 11561595,
"postTitle": "Does javascript have an Equivalent to C#s HttpUtility.HtmlEncode? [closed]",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 17:58:40Z"
},
"/q/11559096/427763": {
"postId": 11559096,
"postTitle": "declare typedef type",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 17:58:12Z"
},
"/q/11541085/427763": {
"postId": 11541085,
"postTitle": "How to load and play youtube videos in our own android application?",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 17:57:51Z"
},
"/q/11558913/427763": {
"postId": 11558913,
"postTitle": "SQL Server 2008 vs. 2005 [closed]",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 17:57:34Z"
},
"/q/6097364/427763": {
"postId": 6097364,
"postTitle": "MySQL throws error after changing encoding",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 17:57:16Z"
},
"/q/11556876/427763": {
"postId": 11556876,
"postTitle": "Android new technology instead of the socket [closed]",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 17:55:48Z"
},
"/q/10160664/427763": {
"postId": 10160664,
"postTitle": "Mysqli_Query warning: mysqli_query() expects parameter 1 to be mysqli",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 17:54:36Z"
},
"/q/11555616/427763": {
"postId": 11555616,
"postTitle": "Which one of concurrency models in NHibernate is better and commonly used? What is the benefits of each one?",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 17:54:04Z"
},
"/q/11539307/427763": {
"postId": 11539307,
"postTitle": "Which option to select to use sql in C++ [closed]",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 17:53:48Z"
},
"/q/4635007/427763": {
"postId": 4635007,
"postTitle": "warning:mysql_fetch_array() expects parameter 1 to be resource, object given",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 17:53:22Z"
},
"/q/11565879/281472": {
"postId": 11565879,
"postTitle": "What is the difference between following sql queries for SQL Server? [closed]",
"userId": 281472,
"userName": "Garrett Vlieger",
"action": "Close",
"datetime": "2012-07-19 17:40:27Z"
},
"/q/11556536/281472": {
"postId": 11556536,
"postTitle": "Find array index by ignorecase [closed]",
"userId": 281472,
"userName": "Garrett Vlieger",
"action": "Close",
"datetime": "2012-07-19 17:39:44Z"
},
"/q/4269372/281472": {
"postId": 4269372,
"postTitle": "HTML5 UI framework?",
"userId": 281472,
"userName": "Garrett Vlieger",
"action": "Do Not Close",
"datetime": "2012-07-19 17:39:18Z"
},
"/q/11558447/1135819": {
"postId": 11558447,
"postTitle": "getting Linux file descriptor from a C++ std::fstream [closed]",
"userId": 1135819,
"userName": "betabandido",
"action": "Close",
"datetime": "2012-07-19 17:30:50Z"
},
"/q/11560789/281472": {
"postId": 11560789,
"postTitle": "Create Json in C# [closed]",
"userId": 281472,
"userName": "Garrett Vlieger",
"action": "Close",
"datetime": "2012-07-19 17:28:34Z"
},
"/q/11550879/281472": {
"postId": 11550879,
"postTitle": "Detecting key presses in console [closed]",
"userId": 281472,
"userName": "Garrett Vlieger",
"action": "Do Not Close",
"datetime": "2012-07-19 17:27:59Z"
},
"/q/11543366/281472": {
"postId": 11543366,
"postTitle": "Inline Insertion in ASP.Net Gridview",
"userId": 281472,
"userName": "Garrett Vlieger",
"action": "Do Not Close",
"datetime": "2012-07-19 17:27:13Z"
},
"/q/3107594/281472": {
"postId": 3107594,
"postTitle": "How to change YAF(yetanotherforum) theme",
"userId": 281472,
"userName": "Garrett Vlieger",
"action": "Close",
"datetime": "2012-07-19 17:27:00Z"
},
"/q/11545448/281472": {
"postId": 11545448,
"postTitle": "Picking a code pattern to implement in my GIS win application?",
"userId": 281472,
"userName": "Garrett Vlieger",
"action": "Close",
"datetime": "2012-07-19 17:26:46Z"
},
"/q/11542888/281472": {
"postId": 11542888,
"postTitle": "Pass arguments to a command prompt using c#",
"userId": 281472,
"userName": "Garrett Vlieger",
"action": "Close",
"datetime": "2012-07-19 17:26:23Z"
},
"/q/11348493/281472": {
"postId": 11348493,
"postTitle": "Resizing a 3D array",
"userId": 281472,
"userName": "Garrett Vlieger",
"action": "Do Not Close",
"datetime": "2012-07-19 17:26:03Z"
},
"/q/11550947/281472": {
"postId": 11550947,
"postTitle": "In the contoller, how do i obtain data from an http post? [closed]",
"userId": 281472,
"userName": "Garrett Vlieger",
"action": "Close",
"datetime": "2012-07-19 17:24:56Z"
},
"/q/11536140/281472": {
"postId": 11536140,
"postTitle": "Convert completed project to dll",
"userId": 281472,
"userName": "Garrett Vlieger",
"action": "Close",
"datetime": "2012-07-19 17:24:25Z"
},
"/q/11558524/281472": {
"postId": 11558524,
"postTitle": "How can i fix the connection string for windows forms application in visual studio 2010 with SQL server 2008 [closed]",
"userId": 281472,
"userName": "Garrett Vlieger",
"action": "Close",
"datetime": "2012-07-19 17:24:04Z"
},
"/q/11560427/281472": {
"postId": 11560427,
"postTitle": "Manually trust SSL certificate in C#",
"userId": 281472,
"userName": "Garrett Vlieger",
"action": "Do Not Close",
"datetime": "2012-07-19 17:23:47Z"
},
"/q/11564249/281472": {
"postId": 11564249,
"postTitle": "Asp.net: How to get a page to appear like a pop up (smaller screen)?",
"userId": 281472,
"userName": "Garrett Vlieger",
"action": "Close",
"datetime": "2012-07-19 17:23:39Z"
},
"/q/11554457/281472": {
"postId": 11554457,
"postTitle": "Split Name into First name and Last Name [closed]",
"userId": 281472,
"userName": "Garrett Vlieger",
"action": "Close",
"datetime": "2012-07-19 17:21:54Z"
},
"/q/6226670/281472": {
"postId": 6226670,
"postTitle": "I want to add web part in web part zone using powershell script",
"userId": 281472,
"userName": "Garrett Vlieger",
"action": "Do Not Close",
"datetime": "2012-07-19 17:21:28Z"
},
"/q/11561051/281472": {
"postId": 11561051,
"postTitle": "Display HTML5 client-side validation error bubbles after event.preventDefault",
"userId": 281472,
"userName": "Garrett Vlieger",
"action": "Do Not Close",
"datetime": "2012-07-19 17:21:12Z"
},
"/q/11543045/281472": {
"postId": 11543045,
"postTitle": "C# xml to keypair value",
"userId": 281472,
"userName": "Garrett Vlieger",
"action": "Close",
"datetime": "2012-07-19 17:08:10Z"
},
"/q/11394033/872395": {
"postId": 11394033,
"postTitle": "How to solve System.ArgumentException: An item with the same key has already been added in mvc 3?",
"userId": 872395,
"userName": "nemesv",
"action": "Do Not Close",
"datetime": "2012-07-19 16:32:52Z"
},
"/q/11546920/872395": {
"postId": 11546920,
"postTitle": "Convert an XBAP to a stand alone WPF application",
"userId": 872395,
"userName": "nemesv",
"action": "Close",
"datetime": "2012-07-19 16:32:20Z"
},
"/q/7710483/872395": {
"postId": 7710483,
"postTitle": "How to obtain the scaled size of a WPF Visual element",
"userId": 872395,
"userName": "nemesv",
"action": "Do Not Close",
"datetime": "2012-07-19 16:32:09Z"
},
"/q/11549515/872395": {
"postId": 11549515,
"postTitle": "DataReader : Invalid attempt to read when no data is present",
"userId": 872395,
"userName": "nemesv",
"action": "Close",
"datetime": "2012-07-19 16:31:46Z"
},
"/q/11561595/872395": {
"postId": 11561595,
"postTitle": "Does javascript have an Equivalent to C#s HttpUtility.HtmlEncode? [closed]",
"userId": 872395,
"userName": "nemesv",
"action": "Close",
"datetime": "2012-07-19 16:31:29Z"
},
"/q/11542302/872395": {
"postId": 11542302,
"postTitle": "built a soap client for this web services in C#",
"userId": 872395,
"userName": "nemesv",
"action": "Do Not Close",
"datetime": "2012-07-19 16:30:49Z"
},
"/q/11562965/872395": {
"postId": 11562965,
"postTitle": "How to compare strings by ignore “ ” prefix and postfix without call string.Trim() [closed]",
"userId": 872395,
"userName": "nemesv",
"action": "Do Not Close",
"datetime": "2012-07-19 16:29:54Z"
},
"/q/11532468/571563": {
"postId": 11532468,
"postTitle": "HackerGuardian - Comodo [closed]",
"userId": 571563,
"userName": "Chris Shain",
"action": "Close",
"datetime": "2012-07-19 16:26:28Z"
},
"/q/11535680/4418": {
"postId": 11535680,
"postTitle": "call to call a batch file from another batch file and pass control to former/",
"userId": 4418,
"userName": "warren",
"action": "Close",
"datetime": "2012-07-19 16:23:48Z"
},
"/q/11557789/4418": {
"postId": 11557789,
"postTitle": "What is the best high performance Javascript Collections (Collection<T>)? [closed]",
"userId": 4418,
"userName": "warren",
"action": "Close",
"datetime": "2012-07-19 16:23:36Z"
},
"/q/11535280/4418": {
"postId": 11535280,
"postTitle": "what is better to use the http or https profile link from facebook connect",
"userId": 4418,
"userName": "warren",
"action": "Close",
"datetime": "2012-07-19 16:23:24Z"
},
"/q/11538448/4418": {
"postId": 11538448,
"postTitle": "XCode methods file",
"userId": 4418,
"userName": "warren",
"action": "Do Not Close",
"datetime": "2012-07-19 16:23:16Z"
},
"/q/11537322/4418": {
"postId": 11537322,
"postTitle": "Tools for generating reports on cross browser compatiblity",
"userId": 4418,
"userName": "warren",
"action": "Do Not Close",
"datetime": "2012-07-19 16:23:02Z"
},
"/q/11532515/4418": {
"postId": 11532515,
"postTitle": "How to find the location of a “List index out of bounds” error in Delphi XE2",
"userId": 4418,
"userName": "warren",
"action": "Do Not Close",
"datetime": "2012-07-19 16:22:55Z"
},
"/q/11533196/4418": {
"postId": 11533196,
"postTitle": "SQLite and MySQL",
"userId": 4418,
"userName": "warren",
"action": "Edit",
"datetime": "2012-07-19 16:22:44Z"
},
"/q/11230583/4418": {
"postId": 11230583,
"postTitle": "Can't help but see Domain entities as wasteful. Why?",
"userId": 4418,
"userName": "warren",
"action": "Close",
"datetime": "2012-07-19 16:21:20Z"
},
"/q/316071/4418": {
"postId": 316071,
"postTitle": "How to create MFC applications with VS express08?",
"userId": 4418,
"userName": "warren",
"action": "Close",
"datetime": "2012-07-19 16:21:06Z"
},
"/q/10085039/4418": {
"postId": 10085039,
"postTitle": "PostgreSql 'PDOException' with message 'could not find driver' [closed]",
"userId": 4418,
"userName": "warren",
"action": "Close",
"datetime": "2012-07-19 16:20:56Z"
},
"/q/11555269/4418": {
"postId": 11555269,
"postTitle": "Music converter that checks folder every minute",
"userId": 4418,
"userName": "warren",
"action": "Close",
"datetime": "2012-07-19 16:20:33Z"
},
"/q/11547248/4418": {
"postId": 11547248,
"postTitle": "Possible Port Error with SFTP Connection",
"userId": 4418,
"userName": "warren",
"action": "Close",
"datetime": "2012-07-19 16:20:22Z"
},
"/q/10848494/4418": {
"postId": 10848494,
"postTitle": "how can put 6 button in round shape which can also move round?",
"userId": 4418,
"userName": "warren",
"action": "Close",
"datetime": "2012-07-19 16:20:10Z"
},
"/q/11554985/533552": {
"postId": 11554985,
"postTitle": "Seekbar progress Level upto a limit between 0 and max [closed]",
"userId": 533552,
"userName": "Dalmas",
"action": "Close",
"datetime": "2012-07-19 15:54:07Z"
},
"/q/11563664/533552": {
"postId": 11563664,
"postTitle": "How can I create a carousel?",
"userId": 533552,
"userName": "Dalmas",
"action": "Close",
"datetime": "2012-07-19 15:53:58Z"
},
"/q/11537488/533552": {
"postId": 11537488,
"postTitle": "compile c project with Cygwin [closed]",
"userId": 533552,
"userName": "Dalmas",
"action": "Close",
"datetime": "2012-07-19 15:53:49Z"
},
"/q/11560185/533552": {
"postId": 11560185,
"postTitle": "Disable force stop button in manage application",
"userId": 533552,
"userName": "Dalmas",
"action": "Do Not Close",
"datetime": "2012-07-19 15:53:42Z"
},
"/q/4457677/533552": {
"postId": 4457677,
"postTitle": "How to create OCR on android [closed]",
"userId": 533552,
"userName": "Dalmas",
"action": "Close",
"datetime": "2012-07-19 15:53:27Z"
},
"/q/11555758/533552": {
"postId": 11555758,
"postTitle": "Ideas to do strong authentication on Android phone [closed]",
"userId": 533552,
"userName": "Dalmas",
"action": "Close",
"datetime": "2012-07-19 15:53:19Z"
},
"/q/11100883/533552": {
"postId": 11100883,
"postTitle": "Android OCR implementation",
"userId": 533552,
"userName": "Dalmas",
"action": "Close",
"datetime": "2012-07-19 15:53:09Z"
},
"/q/11559267/533552": {
"postId": 11559267,
"postTitle": "Adding multiple product at a time",
"userId": 533552,
"userName": "Dalmas",
"action": "Do Not Close",
"datetime": "2012-07-19 15:52:48Z"
},
"/q/11556326/533552": {
"postId": 11556326,
"postTitle": "Pattern Lock Code Page before my application start",
"userId": 533552,
"userName": "Dalmas",
"action": "Close",
"datetime": "2012-07-19 15:52:38Z"
},
"/q/11540882/533552": {
"postId": 11540882,
"postTitle": "somthing Wrong in json coding in android",
"userId": 533552,
"userName": "Dalmas",
"action": "Close",
"datetime": "2012-07-19 15:52:33Z"
},
"/q/11541085/533552": {
"postId": 11541085,
"postTitle": "How to load and play youtube videos in our own android application?",
"userId": 533552,
"userName": "Dalmas",
"action": "Close",
"datetime": "2012-07-19 15:52:18Z"
},
"/q/9065019/533552": {
"postId": 9065019,
"postTitle": "Android Spinner Custom Dialog with Searchbox [closed]",
"userId": 533552,
"userName": "Dalmas",
"action": "Close",
"datetime": "2012-07-19 15:52:08Z"
},
"/q/11556876/533552": {
"postId": 11556876,
"postTitle": "Android new technology instead of the socket [closed]",
"userId": 533552,
"userName": "Dalmas",
"action": "Close",
"datetime": "2012-07-19 15:51:53Z"
},
"/q/11558120/533552": {
"postId": 11558120,
"postTitle": "Android export : how to create .keystore file?",
"userId": 533552,
"userName": "Dalmas",
"action": "Close",
"datetime": "2012-07-19 15:51:43Z"
},
"/q/11560144/30433": {
"postId": 11560144,
"postTitle": "Multiple conditional statement",
"userId": 30433,
"userName": "Colin",
"action": "Close",
"datetime": "2012-07-19 15:44:20Z"
},
"/q/11561097/30433": {
"postId": 11561097,
"postTitle": "Its really possible to use custom template for “home page” in “socialengine”?",
"userId": 30433,
"userName": "Colin",
"action": "Close",
"datetime": "2012-07-19 15:44:02Z"
},
"/q/11538811/500974": {
"postId": 11538811,
"postTitle": "How can I avoid running into false part in IIF?",
"userId": 500974,
"userName": "Matt Wilko",
"action": "Do Not Close",
"datetime": "2012-07-19 15:23:26Z"
},
"/q/11556809/500974": {
"postId": 11556809,
"postTitle": "Convert date from mm/dd/yyyy to yyyymmdd",
"userId": 500974,
"userName": "Matt Wilko",
"action": "Do Not Close",
"datetime": "2012-07-19 15:23:03Z"
},
"/q/11544388/500974": {
"postId": 11544388,
"postTitle": "custom installer with auto update feature",
"userId": 500974,
"userName": "Matt Wilko",
"action": "Do Not Close",
"datetime": "2012-07-19 15:21:38Z"
},
"/q/11540369/500974": {
"postId": 11540369,
"postTitle": "Replace part of string",
"userId": 500974,
"userName": "Matt Wilko",
"action": "Do Not Close",
"datetime": "2012-07-19 15:16:52Z"
},
"/q/11559886/500974": {
"postId": 11559886,
"postTitle": "Convert or get image from PDF, EPS, PP, PSD, AI, etc file formats in asp.net [closed]",
"userId": 500974,
"userName": "Matt Wilko",
"action": "Close",
"datetime": "2012-07-19 15:16:22Z"
},
"/q/11552617/491075": {
"postId": 11552617,
"postTitle": "Jquery gallery with changing descriptions",
"userId": 491075,
"userName": "gion_13",
"action": "Close",
"datetime": "2012-07-19 14:46:44Z"
},
"/q/11560287/491075": {
"postId": 11560287,
"postTitle": "jQuery on() method cross browser compatibility?",
"userId": 491075,
"userName": "gion_13",
"action": "Do Not Close",
"datetime": "2012-07-19 14:45:41Z"
},
"/q/11559021/491075": {
"postId": 11559021,
"postTitle": "Why hotmail doesn't show the body of this html email? [closed]",
"userId": 491075,
"userName": "gion_13",
"action": "Close",
"datetime": "2012-07-19 14:43:56Z"
},
"/q/11555913/648313": {
"postId": 11555913,
"postTitle": "Things to use in android game dev [closed]",
"userId": 648313,
"userName": "Idolon",
"action": "Close",
"datetime": "2012-07-19 14:41:50Z"
},
"/q/11561227/648313": {
"postId": 11561227,
"postTitle": "Java Game - revamping my GUI to be more efficient and less brute [closed]",
"userId": 648313,
"userName": "Idolon",
"action": "Close",
"datetime": "2012-07-19 14:40:52Z"
},
"/q/11556613/648313": {
"postId": 11556613,
"postTitle": "Source code of hackbook for Facebook/Android not working [closed]",
"userId": 648313,
"userName": "Idolon",
"action": "Close",
"datetime": "2012-07-19 14:39:52Z"
},
"/q/11554154/218196": {
"postId": 11554154,
"postTitle": "How to receive javascript variable in another file? [closed]",
"userId": 218196,
"userName": "Felix Kling",
"action": "Close",
"datetime": "2012-07-19 14:38:37Z"
},
"/q/11549456/431053": {
"postId": 11549456,
"postTitle": "No route matches [POST]",
"userId": 431053,
"userName": "Peter DeWeese",
"action": "Close",
"datetime": "2012-07-19 14:21:58Z"
},
"/q/11538288/431053": {
"postId": 11538288,
"postTitle": "iphone app crashing rarely can any one tell me reason for crash with following Log?",
"userId": 431053,
"userName": "Peter DeWeese",
"action": "Do Not Close",
"datetime": "2012-07-19 14:21:18Z"
},
"/q/11544162/431053": {
"postId": 11544162,
"postTitle": "Facebook login on iOS apps",
"userId": 431053,
"userName": "Peter DeWeese",
"action": "Close",
"datetime": "2012-07-19 14:21:06Z"
},
"/q/11545772/431053": {
"postId": 11545772,
"postTitle": "Has anyone compiled iGraph, graph layout library, for iOS?",
"userId": 431053,
"userName": "Peter DeWeese",
"action": "Close",
"datetime": "2012-07-19 14:20:38Z"
},
"/q/11533321/431053": {
"postId": 11533321,
"postTitle": "iOS: issue submitting app on 2nd attempt",
"userId": 431053,
"userName": "Peter DeWeese",
"action": "Do Not Close",
"datetime": "2012-07-19 14:19:28Z"
},
"/q/11540249/431053": {
"postId": 11540249,
"postTitle": "Integrate Facebook comments with iOS application [closed]",
"userId": 431053,
"userName": "Peter DeWeese",
"action": "Close",
"datetime": "2012-07-19 14:18:39Z"
},
"/q/11562376/608157": {
"postId": 11562376,
"postTitle": "IOS Beta Builder supports IOS 5.0 and later [closed]",
"userId": 608157,
"userName": "David Rönnqvist",
"action": "Close",
"datetime": "2012-07-19 14:18:03Z"
},
"/q/11545176/608157": {
"postId": 11545176,
"postTitle": "App Store gifting with iTunes Affiliate link?",
"userId": 608157,
"userName": "David Rönnqvist",
"action": "Close",
"datetime": "2012-07-19 14:17:16Z"
},
"/q/11546582/608157": {
"postId": 11546582,
"postTitle": "Custom URL Scheme maximum URL length",
"userId": 608157,
"userName": "David Rönnqvist",
"action": "Do Not Close",
"datetime": "2012-07-19 14:16:28Z"
},
"/q/11561569/4702": {
"postId": 11561569,
"postTitle": "I need spectrum analisys for .caf file [closed]",
"userId": 4702,
"userName": "Will Harris",
"action": "Close",
"datetime": "2012-07-19 14:15:22Z"
},
"/q/11552210/608157": {
"postId": 11552210,
"postTitle": "Xcode class/method documentation",
"userId": 608157,
"userName": "David Rönnqvist",
"action": "Do Not Close",
"datetime": "2012-07-19 14:14:38Z"
},
"/q/11538266/4702": {
"postId": 11538266,
"postTitle": "Function call with a variable number of parameters? [closed]",
"userId": 4702,
"userName": "Will Harris",
"action": "Close",
"datetime": "2012-07-19 14:14:35Z"
},
"/q/11554326/4702": {
"postId": 11554326,
"postTitle": "Android Frameworks/Technologies to improve development [closed]",
"userId": 4702,
"userName": "Will Harris",
"action": "Do Not Close",
"datetime": "2012-07-19 14:13:30Z"
},
"/q/11540249/608157": {
"postId": 11540249,
"postTitle": "Integrate Facebook comments with iOS application [closed]",
"userId": 608157,
"userName": "David Rönnqvist",
"action": "Close",
"datetime": "2012-07-19 14:12:58Z"
},
"/q/11556710/608157": {
"postId": 11556710,
"postTitle": "How to control the audio in iOS",
"userId": 608157,
"userName": "David Rönnqvist",
"action": "Close",
"datetime": "2012-07-19 14:12:32Z"
},
"/q/11518430/4702": {
"postId": 11518430,
"postTitle": "Database in installation issue in android [closed]",
"userId": 4702,
"userName": "Will Harris",
"action": "Do Not Close",
"datetime": "2012-07-19 14:09:47Z"
},
"/q/11561436/502381": {
"postId": 11561436,
"postTitle": "Find list of active users in UNIX",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-19 14:07:46Z"
},
"/q/4269372/502381": {
"postId": 4269372,
"postTitle": "HTML5 UI framework?",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-19 14:07:09Z"
},
"/q/11527715/637783": {
"postId": 11527715,
"postTitle": "How would you implement Controller in Javascript? (inside of self-made MVC)",
"userId": 637783,
"userName": "jbtule",
"action": "Do Not Close",
"datetime": "2012-07-19 14:04:50Z"
},
"/q/11540249/637783": {
"postId": 11540249,
"postTitle": "Integrate Facebook comments with iOS application [closed]",
"userId": 637783,
"userName": "jbtule",
"action": "Close",
"datetime": "2012-07-19 14:04:19Z"
},
"/q/11538770/637783": {
"postId": 11538770,
"postTitle": "what are the benifits of using Prism in WPF+MVVM application",
"userId": 637783,
"userName": "jbtule",
"action": "Close",
"datetime": "2012-07-19 14:03:36Z"
},
"/q/11547997/637783": {
"postId": 11547997,
"postTitle": "Hello world code for Mountain Lion OSX 10.8 showing notification like iChat [closed]",
"userId": 637783,
"userName": "jbtule",
"action": "Close",
"datetime": "2012-07-19 14:03:10Z"
},
"/q/11548753/637783": {
"postId": 11548753,
"postTitle": "Encrypted Text Message [closed]",
"userId": 637783,
"userName": "jbtule",
"action": "Close",
"datetime": "2012-07-19 14:02:43Z"
},
"/q/11543366/637783": {
"postId": 11543366,
"postTitle": "Inline Insertion in ASP.Net Gridview",
"userId": 637783,
"userName": "jbtule",
"action": "Close",
"datetime": "2012-07-19 14:02:16Z"
},
"/q/11562257/637783": {
"postId": 11562257,
"postTitle": "If I am concerned about memory usage, should I avoid MVVM?",
"userId": 637783,
"userName": "jbtule",
"action": "Close",
"datetime": "2012-07-19 14:01:40Z"
},
"/q/11547725/637783": {
"postId": 11547725,
"postTitle": "How can I convert a list of objects to XElement C#",
"userId": 637783,
"userName": "jbtule",
"action": "Close",
"datetime": "2012-07-19 14:01:25Z"
},
"/q/11553660/427763": {
"postId": 11553660,
"postTitle": "Creating a Stop Watch in PHP [closed]",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 13:55:05Z"
},
"/q/11561549/427763": {
"postId": 11561549,
"postTitle": "How should i design a server application in java",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 13:54:51Z"
},
"/q/11532284/427763": {
"postId": 11532284,
"postTitle": "SQl query to join different tables [closed]",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 13:48:48Z"
},
"/q/11525218/6898": {
"postId": 11525218,
"postTitle": "SetCursorPos() not working on 32bit",
"userId": 6898,
"userName": "CJM",
"action": "Close",
"datetime": "2012-07-19 13:46:50Z"
},
"/q/11560025/6898": {
"postId": 11560025,
"postTitle": "how to align the image to the center? [closed]",
"userId": 6898,
"userName": "CJM",
"action": "Close",
"datetime": "2012-07-19 13:46:32Z"
},
"/q/4621478/6898": {
"postId": 4621478,
"postTitle": "What is the best Windows Installer?",
"userId": 6898,
"userName": "CJM",
"action": "Close",
"datetime": "2012-07-19 13:46:07Z"
},
"/q/11543926/6898": {
"postId": 11543926,
"postTitle": "Cannot bind between MyCombobox and the binding property",
"userId": 6898,
"userName": "CJM",
"action": "Close",
"datetime": "2012-07-19 13:45:46Z"
},
"/q/11525814/6898": {
"postId": 11525814,
"postTitle": "Jquery + CSS animation",
"userId": 6898,
"userName": "CJM",
"action": "Close",
"datetime": "2012-07-19 13:45:05Z"
},
"/q/8050997/6898": {
"postId": 8050997,
"postTitle": "How do you remove the decimal place from a number",
"userId": 6898,
"userName": "CJM",
"action": "Close",
"datetime": "2012-07-19 13:44:33Z"
},
"/q/9913516/6898": {
"postId": 9913516,
"postTitle": "Refresh Google Search Results for My Site",
"userId": 6898,
"userName": "CJM",
"action": "Close",
"datetime": "2012-07-19 13:38:34Z"
},
"/q/11534968/6898": {
"postId": 11534968,
"postTitle": "How to access javascript function html page arguments?",
"userId": 6898,
"userName": "CJM",
"action": "Close",
"datetime": "2012-07-19 13:38:04Z"
},
"/q/11533010/6898": {
"postId": 11533010,
"postTitle": "Is using short-circuit evaluation to avoid an index out of range exception a bad habit?",
"userId": 6898,
"userName": "CJM",
"action": "Close",
"datetime": "2012-07-19 13:37:47Z"
},
"/q/11542468/6898": {
"postId": 11542468,
"postTitle": "writing a mobile version of a web service in vb.net ",
"userId": 6898,
"userName": "CJM",
"action": "Close",
"datetime": "2012-07-19 13:37:09Z"
},
"/q/11561906/6898": {
"postId": 11561906,
"postTitle": "How to prevent Cross site scripting XSS using MVC 3 [closed]",
"userId": 6898,
"userName": "CJM",
"action": "Close",
"datetime": "2012-07-19 13:35:35Z"
},
"/q/11491619/427763": {
"postId": 11491619,
"postTitle": "Component Code in Designer.cs File",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 13:35:04Z"
},
"/q/2446373/427763": {
"postId": 2446373,
"postTitle": "Android title bar removal [closed]",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 13:34:36Z"
},
"/q/11537813/427763": {
"postId": 11537813,
"postTitle": "How do I find a substring in a string?",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 13:33:38Z"
},
"/q/11554831/19624": {
"postId": 11554831,
"postTitle": "C# Oracle data provider (Oracle DataAccess.Dll) Connection request timed out",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 13:30:30Z"
},
"/q/11556809/19624": {
"postId": 11556809,
"postTitle": "Convert date from mm/dd/yyyy to yyyymmdd",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 13:30:21Z"
},
"/q/11534668/427763": {
"postId": 11534668,
"postTitle": "How can i add Pagination bing php Search engine",
"userId": 427763,
"userName": "prolink007",
"action": "Do Not Close",
"datetime": "2012-07-19 13:30:00Z"
},
"/q/11555890/427763": {
"postId": 11555890,
"postTitle": "how to parse xml with special character? specifically for ampersand",
"userId": 427763,
"userName": "prolink007",
"action": "Do Not Close",
"datetime": "2012-07-19 13:29:07Z"
},
"/q/11542311/6898": {
"postId": 11542311,
"postTitle": "Visual Studio 2008 can't show designer when designing Inherited Forms",
"userId": 6898,
"userName": "CJM",
"action": "Do Not Close",
"datetime": "2012-07-19 13:28:57Z"
},
"/q/8819822/427763": {
"postId": 8819822,
"postTitle": "Async Task Error Handling",
"userId": 427763,
"userName": "prolink007",
"action": "Do Not Close",
"datetime": "2012-07-19 13:28:14Z"
},
"/q/11542302/6898": {
"postId": 11542302,
"postTitle": "built a soap client for this web services in C#",
"userId": 6898,
"userName": "CJM",
"action": "Close",
"datetime": "2012-07-19 13:28:05Z"
},
"/q/11559186/427763": {
"postId": 11559186,
"postTitle": "mysqli :: prepare SQL error",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 13:27:03Z"
},
"/q/8806148/427763": {
"postId": 8806148,
"postTitle": "mysql_query() expects parameter 1 to be string, resource given",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 13:26:28Z"
},
"/q/11545891/427763": {
"postId": 11545891,
"postTitle": "java.util.ConcurrentModificationException, how to avoid [closed]",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 13:25:48Z"
},
"/q/11559034/427763": {
"postId": 11559034,
"postTitle": "XML Parser - Data Binding C++ Builder",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 13:25:30Z"
},
"/q/11550238/427763": {
"postId": 11550238,
"postTitle": "Why Only the frame appears while the other works properly? [closed]",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 13:25:05Z"
},
"/q/11536196/427763": {
"postId": 11536196,
"postTitle": "Print the line and a line 10 lines before the match in Linux",
"userId": 427763,
"userName": "prolink007",
"action": "Close",
"datetime": "2012-07-19 13:24:26Z"
},
"/q/11554314/427763": {
"postId": 11554314,
"postTitle": "EF & TransitionScope - The connection object can not be enlisted in transaction scope",
"userId": 427763,
"userName": "prolink007",
"action": "Do Not Close",
"datetime": "2012-07-19 13:23:12Z"
},
"/q/11546750/6898": {
"postId": 11546750,
"postTitle": "How to use Recursive in SQL? Thanks [closed]",
"userId": 6898,
"userName": "CJM",
"action": "Close",
"datetime": "2012-07-19 13:20:54Z"
},
"/q/11543045/6898": {
"postId": 11543045,
"postTitle": "C# xml to keypair value",
"userId": 6898,
"userName": "CJM",
"action": "Close",
"datetime": "2012-07-19 13:18:53Z"
},
"/q/5268125/1045444": {
"postId": 5268125,
"postTitle": "Warning: fopen() expects parameter 1 to be string, array given in /home/speedycm/public_html/speedyautos/carphoto.php on line 47",
"userId": 1045444,
"userName": "Somnath Muluk",
"action": "Close",
"datetime": "2012-07-19 13:17:22Z"
},
"/q/11555244/1045444": {
"postId": 11555244,
"postTitle": "How to config .htaccess to support MVC?",
"userId": 1045444,
"userName": "Somnath Muluk",
"action": "Close",
"datetime": "2012-07-19 13:17:03Z"
},
"/q/11269269/1045444": {
"postId": 11269269,
"postTitle": "Troubleshooting “Warning: mysqli_result::fetch_array() expects parameter 1 to be long, object given”",
"userId": 1045444,
"userName": "Somnath Muluk",
"action": "Close",
"datetime": "2012-07-19 13:16:41Z"
},
"/q/11526316/1045444": {
"postId": 11526316,
"postTitle": "HTML5: validate the form and event.preventDefault",
"userId": 1045444,
"userName": "Somnath Muluk",
"action": "Do Not Close",
"datetime": "2012-07-19 13:16:20Z"
},
"/q/11534204/6898": {
"postId": 11534204,
"postTitle": "C#- Help to query a DB continuously",
"userId": 6898,
"userName": "CJM",
"action": "Do Not Close",
"datetime": "2012-07-19 13:15:01Z"
},
"/q/11538660/263525": {
"postId": 11538660,
"postTitle": "How to get different Centrality indexes of each node from a Neo4j Graph?",
"userId": 263525,
"userName": "dystroy",
"action": "Do Not Close",
"datetime": "2012-07-19 13:14:20Z"
},
"/q/11548274/6898": {
"postId": 11548274,
"postTitle": "Image getting cut off in IE",
"userId": 6898,
"userName": "CJM",
"action": "Close",
"datetime": "2012-07-19 13:14:05Z"
},
"/q/11532993/263525": {
"postId": 11532993,
"postTitle": "How to send address in Android Application to Google Maps",
"userId": 263525,
"userName": "dystroy",
"action": "Do Not Close",
"datetime": "2012-07-19 13:13:37Z"
},
"/q/11550185/6898": {
"postId": 11550185,
"postTitle": "How to position a fixed element [closed]",
"userId": 6898,
"userName": "CJM",
"action": "Close",
"datetime": "2012-07-19 13:13:32Z"
},
"/q/11542970/263525": {
"postId": 11542970,
"postTitle": "Passing an array from javascript to servlet",
"userId": 263525,
"userName": "dystroy",
"action": "Do Not Close",
"datetime": "2012-07-19 13:13:31Z"
},
"/q/11525997/263525": {
"postId": 11525997,
"postTitle": "Chrome CSS Hack and Media Queries",
"userId": 263525,
"userName": "dystroy",
"action": "Do Not Close",
"datetime": "2012-07-19 13:12:58Z"
},
"/q/11552617/263525": {
"postId": 11552617,
"postTitle": "Jquery gallery with changing descriptions",
"userId": 263525,
"userName": "dystroy",
"action": "Close",
"datetime": "2012-07-19 13:12:16Z"
},
"/q/11537515/263525": {
"postId": 11537515,
"postTitle": "Printing Using Java Desktop application",
"userId": 263525,
"userName": "dystroy",
"action": "Close",
"datetime": "2012-07-19 13:12:07Z"
},
"/q/11533702/263525": {
"postId": 11533702,
"postTitle": "Transfer a table from my main website to my mobile website [closed]",
"userId": 263525,
"userName": "dystroy",
"action": "Close",
"datetime": "2012-07-19 13:11:36Z"
},
"/q/11547486/263525": {
"postId": 11547486,
"postTitle": "Easiest way to create a 2d game in Java? [closed]",
"userId": 263525,
"userName": "dystroy",
"action": "Close",
"datetime": "2012-07-19 13:11:16Z"
},
"/q/10960112/263525": {
"postId": 10960112,
"postTitle": "Java OCR algorithm",
"userId": 263525,
"userName": "dystroy",
"action": "Do Not Close",
"datetime": "2012-07-19 13:11:07Z"
},
"/q/9612150/263525": {
"postId": 9612150,
"postTitle": "Ubuntu 11.04: Running MARS simulator",
"userId": 263525,
"userName": "dystroy",
"action": "Do Not Close",
"datetime": "2012-07-19 13:10:29Z"
},
"/q/11539873/263525": {
"postId": 11539873,
"postTitle": "Why my ajax call respon goes w [closed]",
"userId": 263525,
"userName": "dystroy",
"action": "Close",
"datetime": "2012-07-19 13:09:35Z"
},
"/q/11540905/263525": {
"postId": 11540905,
"postTitle": "iscroll 4 not working in blackberry [closed]",
"userId": 263525,
"userName": "dystroy",
"action": "Close",
"datetime": "2012-07-19 13:08:56Z"
},
"/q/11533566/334849": {
"postId": 11533566,
"postTitle": "What is the HTML/CSS for a website header navigation that always stays at the top even when scrolling? [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 13:07:25Z"
},
"/q/268538/334849": {
"postId": 268538,
"postTitle": "Tab versus space indentation in C#",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 13:07:12Z"
},
"/q/11542136/334849": {
"postId": 11542136,
"postTitle": "Converting JDBC to Spring [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 13:06:44Z"
},
"/q/11536135/334849": {
"postId": 11536135,
"postTitle": "Finding Research Topic for GPGPU [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 13:06:26Z"
},
"/q/355446/334849": {
"postId": 355446,
"postTitle": "Project Manager Commission Percentage",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 13:06:12Z"
},
"/q/11547745/334849": {
"postId": 11547745,
"postTitle": "Border color of plot points - R plot [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 13:05:19Z"
},
"/q/11548753/334849": {
"postId": 11548753,
"postTitle": "Encrypted Text Message [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 13:05:10Z"
},
"/q/11522834/334849": {
"postId": 11522834,
"postTitle": "How to prove that a puzzle can be solved completely with a greedy algorithm?",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 13:05:02Z"
},
"/q/11536023/334849": {
"postId": 11536023,
"postTitle": "Understanding awesomeness of Lisp/Clojure [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 13:04:46Z"
},
"/q/11504607/334849": {
"postId": 11504607,
"postTitle": "How can i display Title only in posts and no excerpts at all in wordpress?",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 13:04:18Z"
},
"/q/11525857/334849": {
"postId": 11525857,
"postTitle": "Period of a finite binary sequence",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 13:03:51Z"
},
"/q/11528274/334849": {
"postId": 11528274,
"postTitle": "MVC3 Popup Dialog positioning",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 13:03:42Z"
},
"/q/11449507/334849": {
"postId": 11449507,
"postTitle": "How to Install Cassandra in a Local Ubuntu System",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 13:03:21Z"
},
"/q/11523158/334849": {
"postId": 11523158,
"postTitle": "javascript attach eventhandler in each loop",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 13:03:13Z"
},
"/q/9948629/334849": {
"postId": 9948629,
"postTitle": "convert .htaccess to nginx [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 13:03:00Z"
},
"/q/11517151/334849": {
"postId": 11517151,
"postTitle": "How to manually install .Net 4.0.x and 4.5 on XP",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 13:02:27Z"
},
"/q/11543578/334849": {
"postId": 11543578,
"postTitle": "Copy text from a Windows CMD",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 13:02:12Z"
},
"/q/11558324/334849": {
"postId": 11558324,
"postTitle": "Connect uploaded ASP.NET app with local SQL Server database",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 13:01:56Z"
},
"/q/11546266/334849": {
"postId": 11546266,
"postTitle": "Can i manage employee related data in one table?",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 13:01:48Z"
},
"/q/11535622/334849": {
"postId": 11535622,
"postTitle": "Automated reports from excel",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 13:01:37Z"
},
"/q/11554446/334849": {
"postId": 11554446,
"postTitle": "Regarding MSserver architecture, installation and download",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 13:01:25Z"
},
"/q/2810255/334849": {
"postId": 2810255,
"postTitle": "connecting visual studio 2008 with ms access 2007",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 13:00:45Z"
},
"/q/11540055/334849": {
"postId": 11540055,
"postTitle": "import cookies to Firefox via commands",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 13:00:37Z"
},
"/q/11530394/334849": {
"postId": 11530394,
"postTitle": "Get filename date in command line and then execute command",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 13:00:29Z"
},
"/q/11543538/334849": {
"postId": 11543538,
"postTitle": "Very large amount of data on gridview in asp.net [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 13:00:19Z"
},
"/q/11556409/334849": {
"postId": 11556409,
"postTitle": "Fixed size database - advantage?",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 13:00:03Z"
},
"/q/11555198/334849": {
"postId": 11555198,
"postTitle": "Append 0 to a number of the cell in Excel sheet [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 12:59:37Z"
},
"/q/11555872/334849": {
"postId": 11555872,
"postTitle": "Microsoft Excel Putting a Function in an IF function",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Do Not Close",
"datetime": "2012-07-19 12:59:13Z"
},
"/q/11546574/334849": {
"postId": 11546574,
"postTitle": "Basic graph-database in SQL? [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 12:59:03Z"
},
"/q/11531065/334849": {
"postId": 11531065,
"postTitle": "posting to Facebook Page using classic ASP",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 12:58:57Z"
},
"/q/11558153/334849": {
"postId": 11558153,
"postTitle": "excel vlookup with if functionc",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 12:58:51Z"
},
"/q/11544301/334849": {
"postId": 11544301,
"postTitle": "locking excel formulas",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 12:58:41Z"
},
"/q/11534186/334849": {
"postId": 11534186,
"postTitle": "Draw the following output as a Graph in Excel 2010 [migrated]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 12:58:33Z"
},
"/q/11558524/334849": {
"postId": 11558524,
"postTitle": "How can i fix the connection string for windows forms application in visual studio 2010 with SQL server 2008 [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 12:58:06Z"
},
"/q/6876018/334849": {
"postId": 6876018,
"postTitle": "Microsoft Access form locked",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 12:57:59Z"
},
"/q/11548927/334849": {
"postId": 11548927,
"postTitle": "Watch SQL running queries",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 12:57:53Z"
},
"/q/11544642/334849": {
"postId": 11544642,
"postTitle": "Simplest means to develop relational database for SQL Server",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 12:57:46Z"
},
"/q/11557834/334849": {
"postId": 11557834,
"postTitle": "Connect Linked Server Programatically C# [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 12:57:39Z"
},
"/q/11540626/334849": {
"postId": 11540626,
"postTitle": "dos batch file find missing sequential filenames",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 12:56:18Z"
},
"/q/11558471/334849": {
"postId": 11558471,
"postTitle": "SQL Server database backup file (.bak ) file gets corrupted",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 12:56:00Z"
},
"/q/11548697/334849": {
"postId": 11548697,
"postTitle": "How to List Field's Name in table in Access Using SQL",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 12:55:46Z"
},
"/q/11532284/334849": {
"postId": 11532284,
"postTitle": "SQl query to join different tables [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 12:55:35Z"
},
"/q/11539254/334849": {
"postId": 11539254,
"postTitle": "formatting in excel [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 12:55:26Z"
},
"/q/7801692/334849": {
"postId": 7801692,
"postTitle": "Excel VLOOKUP Function",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 12:55:12Z"
},
"/q/11558913/334849": {
"postId": 11558913,
"postTitle": "SQL Server 2008 vs. 2005 [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 12:55:01Z"
},
"/q/11539903/334849": {
"postId": 11539903,
"postTitle": "Application can't find CrystalReports after deployment [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 12:54:45Z"
},
"/q/11535680/334849": {
"postId": 11535680,
"postTitle": "call to call a batch file from another batch file and pass control to former/",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 12:54:22Z"
},
"/q/11558363/334849": {
"postId": 11558363,
"postTitle": "Insert into two tables in one statement SQL SERVER 2008 [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 12:54:01Z"
},
"/q/11534204/334849": {
"postId": 11534204,
"postTitle": "C#- Help to query a DB continuously",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 12:53:48Z"
},
"/q/11546750/334849": {
"postId": 11546750,
"postTitle": "How to use Recursive in SQL? Thanks [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 12:53:16Z"
},
"/q/11348493/334849": {
"postId": 11348493,
"postTitle": "Resizing a 3D array",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-19 12:53:06Z"
},
"/q/11540589/385478": {
"postId": 11540589,
"postTitle": "open or create files with assembly code [closed]",
"userId": 385478,
"userName": "Graham Borland",
"action": "Close",
"datetime": "2012-07-19 12:47:45Z"
},
"/q/11526582/385478": {
"postId": 11526582,
"postTitle": "Java: Convert bool array into a single int [closed]",
"userId": 385478,
"userName": "Graham Borland",
"action": "Close",
"datetime": "2012-07-19 12:47:33Z"
},
"/q/6015932/95": {
"postId": 6015932,
"postTitle": "live migration using KVM",
"userId": 95,
"userName": "Marek Grzenkowicz",
"action": "Close",
"datetime": "2012-07-19 12:33:31Z"
},
"/q/11557497/95": {
"postId": 11557497,
"postTitle": "how to clear all textBoxes in the winform with c++ ? [closed]",
"userId": 95,
"userName": "Marek Grzenkowicz",
"action": "Close",
"datetime": "2012-07-19 12:32:57Z"
},
"/q/4538732/95": {
"postId": 4538732,
"postTitle": "what's mean by Collation",
"userId": 95,
"userName": "Marek Grzenkowicz",
"action": "Close",
"datetime": "2012-07-19 12:32:15Z"
},
"/q/9913516/502381": {
"postId": 9913516,
"postTitle": "Refresh Google Search Results for My Site",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-19 12:03:16Z"
},
"/q/11521398/502381": {
"postId": 11521398,
"postTitle": "No access to Database File",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-19 11:54:00Z"
},
"/q/1524542/502381": {
"postId": 1524542,
"postTitle": "How do I backup a MySQL database?",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-19 11:53:36Z"
},
"/q/10331908/502381": {
"postId": 10331908,
"postTitle": "jQuery: How to determine the index of <li> element in an unordered list when clicked?",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-19 11:53:27Z"
},
"/q/11548476/502381": {
"postId": 11548476,
"postTitle": "VIM: Easy visualisation of manuals within the source code?",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-19 11:52:29Z"
},
"/q/11553992/502381": {
"postId": 11553992,
"postTitle": "Creating a table with result from SQL DB query. What's the best practice form mixing PHP & HTML?",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-19 11:52:10Z"
},
"/q/2637930/502381": {
"postId": 2637930,
"postTitle": "Any good, visual HTML5 Editor or IDE?",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-19 11:47:05Z"
},
"/q/2446373/1268895": {
"postId": 2446373,
"postTitle": "Android title bar removal [closed]",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-19 11:41:05Z"
},
"/q/11542797/1268895": {
"postId": 11542797,
"postTitle": "Dont want soft keyboard to automatically show on launch - Android",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-19 11:40:00Z"
},
"/q/11524375/1268895": {
"postId": 11524375,
"postTitle": "Slow Java Program",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-19 11:39:08Z"
},
"/q/11539214/1268895": {
"postId": 11539214,
"postTitle": "Is it possible to pop up print dialogue while printing a document from java?",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Do Not Close",
"datetime": "2012-07-19 11:38:27Z"
},
"/q/9065019/1268895": {
"postId": 9065019,
"postTitle": "Android Spinner Custom Dialog with Searchbox [closed]",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-19 11:38:10Z"
},
"/q/11535218/1268895": {
"postId": 11535218,
"postTitle": "How to request a server continuously without being bloacked?",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-19 11:37:32Z"
},
"/q/11542847/1268895": {
"postId": 11542847,
"postTitle": "Android Augmented Reality Bug",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-19 11:37:05Z"
},
"/q/11549896/1268895": {
"postId": 11549896,
"postTitle": ".JAR files using the command line [closed]",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-19 11:36:26Z"
},
"/q/11555576/1268895": {
"postId": 11555576,
"postTitle": "How to create a database then will store a few places i like and display it on my google map in android",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-19 11:36:02Z"
},
"/q/11533437/1268895": {
"postId": 11533437,
"postTitle": "Android Application crash with Application has Stopped",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-19 11:35:35Z"
},
"/q/11547241/1268895": {
"postId": 11547241,
"postTitle": "tableChange() executing when the JTable is refreshed",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Do Not Close",
"datetime": "2012-07-19 11:35:09Z"
},
"/q/11538577/1268895": {
"postId": 11538577,
"postTitle": "How to record device audio in android, not from microphone?",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-19 11:34:48Z"
},
"/q/11555382/365188": {
"postId": 11555382,
"postTitle": "What is email scrapper? [closed]",
"userId": 365188,
"userName": "Ozair Kafray",
"action": "Close",
"datetime": "2012-07-19 11:34:34Z"
},
"/q/11557724/1268895": {
"postId": 11557724,
"postTitle": "Behaviour of pre/post increment operators in Multiplication scenarios",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-19 11:34:28Z"
},
"/q/11547843/1268895": {
"postId": 11547843,
"postTitle": "Which list implementation is optimal for removing and inserting from the front and back?",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Do Not Close",
"datetime": "2012-07-19 11:33:48Z"
},
"/q/11553276/1268895": {
"postId": 11553276,
"postTitle": "In java, is there anyway to go from a array of objects that got returned to the number of objects in the array? [closed]",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-19 11:33:39Z"
},
"/q/10549625/1268895": {
"postId": 10549625,
"postTitle": "How can I create application that Support both mobile & tablet?",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Do Not Close",
"datetime": "2012-07-19 11:33:13Z"
},
"/q/11541617/1268895": {
"postId": 11541617,
"postTitle": "what are the static and native methods of thread class",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Do Not Close",
"datetime": "2012-07-19 11:32:56Z"
},
"/q/11558908/1268895": {
"postId": 11558908,
"postTitle": "How to Keep XMPP connection alive throughout application? [closed]",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-19 11:32:13Z"
},
"/q/11542113/1268895": {
"postId": 11542113,
"postTitle": "java asterisk right triangle",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Do Not Close",
"datetime": "2012-07-19 11:31:46Z"
},
"/q/11529801/1268895": {
"postId": 11529801,
"postTitle": "Java: Is copying a ByteBuffer to a byte[] array a performance no-no?",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Do Not Close",
"datetime": "2012-07-19 11:31:32Z"
},
"/q/11537488/1268895": {
"postId": 11537488,
"postTitle": "compile c project with Cygwin [closed]",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-19 11:31:20Z"
},
"/q/11556876/1268895": {
"postId": 11556876,
"postTitle": "Android new technology instead of the socket [closed]",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-19 11:30:44Z"
},
"/q/11554935/1268895": {
"postId": 11554935,
"postTitle": "Not sure about default initialization of variables in Java [closed]",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-19 11:30:31Z"
},
"/q/11548040/1268895": {
"postId": 11548040,
"postTitle": "Android GPS not working anymore",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-19 11:29:29Z"
},
"/q/11527978/1268895": {
"postId": 11527978,
"postTitle": "Android App crashes when unpluged from usb",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Do Not Close",
"datetime": "2012-07-19 11:28:52Z"
},
"/q/4457677/1268895": {
"postId": 4457677,
"postTitle": "How to create OCR on android [closed]",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-19 11:28:37Z"
},
"/q/11518668/533552": {
"postId": 11518668,
"postTitle": "menu in action bar",
"userId": 533552,
"userName": "Dalmas",
"action": "Close",
"datetime": "2012-07-19 11:28:20Z"
},
"/q/11546866/1268895": {
"postId": 11546866,
"postTitle": "Making users tap on ads on Android - legal or not?",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-19 11:28:12Z"
},
"/q/11536728/1268895": {
"postId": 11536728,
"postTitle": "In Android I m trying to call 2 xml layout in single Activity for different orientation",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Do Not Close",
"datetime": "2012-07-19 11:27:55Z"
},
"/q/10549625/533552": {
"postId": 10549625,
"postTitle": "How can I create application that Support both mobile & tablet?",
"userId": 533552,
"userName": "Dalmas",
"action": "Close",
"datetime": "2012-07-19 11:27:39Z"
},
"/q/11534522/1268895": {
"postId": 11534522,
"postTitle": "Java array: 2D array dysfunction in terminal ASCII terminal game during attempt to swap elements",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Do Not Close",
"datetime": "2012-07-19 11:27:34Z"
},
"/q/11555034/533552": {
"postId": 11555034,
"postTitle": "Is it true? Adobe AIR based Android development has no future [closed]",
"userId": 533552,
"userName": "Dalmas",
"action": "Close",
"datetime": "2012-07-19 11:27:23Z"
},
"/q/11545891/1268895": {
"postId": 11545891,
"postTitle": "java.util.ConcurrentModificationException, how to avoid [closed]",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-19 11:27:10Z"
},
"/q/11533643/533552": {
"postId": 11533643,
"postTitle": "Android Python: Estimate whether this is possible",
"userId": 533552,
"userName": "Dalmas",
"action": "Close",
"datetime": "2012-07-19 11:26:58Z"
},
"/q/11557254/1268895": {
"postId": 11557254,
"postTitle": "titanium: show a popup window relative to a button [closed]",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Do Not Close",
"datetime": "2012-07-19 11:26:44Z"
},
"/q/11537381/533552": {
"postId": 11537381,
"postTitle": "Design for android",
"userId": 533552,
"userName": "Dalmas",
"action": "Close",
"datetime": "2012-07-19 11:26:40Z"
},
"/q/11541618/533552": {
"postId": 11541618,
"postTitle": "Is there any way to lock my android app by using IMEI number [closed]",
"userId": 533552,
"userName": "Dalmas",
"action": "Close",
"datetime": "2012-07-19 11:26:10Z"
},
"/q/8819822/533552": {
"postId": 8819822,
"postTitle": "Async Task Error Handling",
"userId": 533552,
"userName": "Dalmas",
"action": "Close",
"datetime": "2012-07-19 11:25:46Z"
},
"/q/11554326/533552": {
"postId": 11554326,
"postTitle": "Android Frameworks/Technologies to improve development [closed]",
"userId": 533552,
"userName": "Dalmas",
"action": "Close",
"datetime": "2012-07-19 11:24:27Z"
},
"/q/11538577/533552": {
"postId": 11538577,
"postTitle": "How to record device audio in android, not from microphone?",
"userId": 533552,
"userName": "Dalmas",
"action": "Close",
"datetime": "2012-07-19 11:24:16Z"
},
"/q/11542847/533552": {
"postId": 11542847,
"postTitle": "Android Augmented Reality Bug",
"userId": 533552,
"userName": "Dalmas",
"action": "Close",
"datetime": "2012-07-19 11:15:50Z"
},
"/q/257476/644450": {
"postId": 257476,
"postTitle": "Your college CS experience",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 11:13:51Z"
},
"/q/9043532/90527": {
"postId": 9043532,
"postTitle": "Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-19 11:13:45Z"
},
"/q/11547192/644450": {
"postId": 11547192,
"postTitle": "Android swype softkeyboard when shrinked does not resize the background layout [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 11:13:22Z"
},
"/q/11554985/644450": {
"postId": 11554985,
"postTitle": "Seekbar progress Level upto a limit between 0 and max [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 11:13:00Z"
},
"/q/8350390/644450": {
"postId": 8350390,
"postTitle": "How to make a plugin over Kademlia network protocol to extend its functionality?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 11:12:37Z"
},
"/q/2866364/644450": {
"postId": 2866364,
"postTitle": "Mylyn tasks - assigning tasks using TODO in the code?",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-19 11:12:22Z"
},
"/q/11559380/644450": {
"postId": 11559380,
"postTitle": "Java: Conversion of Words to Numbers [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 11:12:15Z"
},
"/q/11559187/644450": {
"postId": 11559187,
"postTitle": "assigning same values to objects in java",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 11:11:57Z"
},
"/q/11536934/90527": {
"postId": 11536934,
"postTitle": "How to get an alphanumeric String from any string in Java? [closed]",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-19 11:09:04Z"
},
"/q/11554108/90527": {
"postId": 11554108,
"postTitle": "install posix on windows 7 32bit is it posible?",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-19 11:03:32Z"
},
"/q/4894180/90527": {
"postId": 4894180,
"postTitle": "Dns configuration to route subdomains to naked domains",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-19 11:03:11Z"
},
"/q/11557207/90527": {
"postId": 11557207,
"postTitle": "I am developing callcenter website",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-19 11:01:57Z"
},
"/q/11512612/90527": {
"postId": 11512612,
"postTitle": "How to change constants in line 13 from this text file in Matlab?",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-19 10:58:46Z"
},
"/q/11555576/90527": {
"postId": 11555576,
"postTitle": "How to create a database then will store a few places i like and display it on my google map in android",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-19 10:55:13Z"
},
"/q/11546289/16487": {
"postId": 11546289,
"postTitle": "print pages to multiple printer at same time using c# [closed]",
"userId": 16487,
"userName": "C. Ross",
"action": "Close",
"datetime": "2012-07-19 10:49:42Z"
},
"/q/11547777/16487": {
"postId": 11547777,
"postTitle": "Is this code valid under any C standard?",
"userId": 16487,
"userName": "C. Ross",
"action": "Close",
"datetime": "2012-07-19 10:48:23Z"
},
"/q/1186080/16487": {
"postId": 1186080,
"postTitle": "How can I step into Microsoft's .NET framework source code?",
"userId": 16487,
"userName": "C. Ross",
"action": "Close",
"datetime": "2012-07-19 10:48:04Z"
},
"/q/11555638/16487": {
"postId": 11555638,
"postTitle": "Arabic barcode font [closed]",
"userId": 16487,
"userName": "C. Ross",
"action": "Close",
"datetime": "2012-07-19 10:47:46Z"
},
"/q/11542960/16487": {
"postId": 11542960,
"postTitle": "Main Difference Between 3-tire & n-tire Architecture in .NET?",
"userId": 16487,
"userName": "C. Ross",
"action": "Close",
"datetime": "2012-07-19 10:47:26Z"
},
"/q/729067/16487": {
"postId": 729067,
"postTitle": "OCR .NET Recommended",
"userId": 16487,
"userName": "C. Ross",
"action": "Close",
"datetime": "2012-07-19 10:47:00Z"
},
"/q/11549193/16487": {
"postId": 11549193,
"postTitle": "Proper C preprocessor macro no-op",
"userId": 16487,
"userName": "C. Ross",
"action": "Do Not Close",
"datetime": "2012-07-19 10:46:32Z"
},
"/q/11558097/644450": {
"postId": 11558097,
"postTitle": "Estimate a mean of a set. (bias estimator)",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 10:29:41Z"
},
"/q/11538475/644450": {
"postId": 11538475,
"postTitle": "combining 2x2 puzzle",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 10:29:28Z"
},
"/q/11539817/644450": {
"postId": 11539817,
"postTitle": "Display source of PHP of files",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-19 10:29:17Z"
},
"/q/11554077/644450": {
"postId": 11554077,
"postTitle": "“find” command weird behavior, return different result on same command [migrated]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 10:21:16Z"
},
"/q/11537874/644450": {
"postId": 11537874,
"postTitle": "Is JQuery a good choice for writing cross-platform mobile apps even though the application does not communicate with a server",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 10:21:00Z"
},
"/q/11527853/644450": {
"postId": 11527853,
"postTitle": "Bottom up or top down dynamic programming?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 10:16:14Z"
},
"/q/11548724/644450": {
"postId": 11548724,
"postTitle": "Pygame program will not work [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 10:15:59Z"
},
"/q/11541576/644450": {
"postId": 11541576,
"postTitle": "How to delete duplicate values in a list? [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 10:15:45Z"
},
"/q/11378775/644450": {
"postId": 11378775,
"postTitle": "Wordpress custom post type's categories just stopped working",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 10:15:19Z"
},
"/q/11558128/644450": {
"postId": 11558128,
"postTitle": "Condition Checking of Buttons in Android",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 10:14:48Z"
},
"/q/11547241/644450": {
"postId": 11547241,
"postTitle": "tableChange() executing when the JTable is refreshed",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 10:14:11Z"
},
"/q/11542113/644450": {
"postId": 11542113,
"postTitle": "java asterisk right triangle",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 10:13:34Z"
},
"/q/11537550/644450": {
"postId": 11537550,
"postTitle": "Anybody knows of an example with extjs and a message broker (JMS or something similar)?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 10:12:54Z"
},
"/q/10609220/644450": {
"postId": 10609220,
"postTitle": "iText table is not getting rendered",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 10:12:44Z"
},
"/q/11550238/644450": {
"postId": 11550238,
"postTitle": "Why Only the frame appears while the other works properly? [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 10:12:25Z"
},
"/q/11541617/644450": {
"postId": 11541617,
"postTitle": "what are the static and native methods of thread class",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 10:12:06Z"
},
"/q/11553526/644450": {
"postId": 11553526,
"postTitle": "kinect code for the software “processing”, to control a puppet using face recognition",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 10:11:55Z"
},
"/q/11528182/90527": {
"postId": 11528182,
"postTitle": "Vertica/vSQL \" select 10 rows per day with order and on certain group",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-19 10:07:47Z"
},
"/q/11553008/90527": {
"postId": 11553008,
"postTitle": "How can I get a Dribbble invite code?",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-19 10:05:27Z"
},
"/q/11547486/644450": {
"postId": 11547486,
"postTitle": "Easiest way to create a 2d game in Java? [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 09:44:54Z"
},
"/q/11547914/644450": {
"postId": 11547914,
"postTitle": "Why runtime exception is unchecked exception?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 09:44:48Z"
},
"/q/10960112/644450": {
"postId": 10960112,
"postTitle": "Java OCR algorithm",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 09:43:46Z"
},
"/q/11549896/644450": {
"postId": 11549896,
"postTitle": ".JAR files using the command line [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 09:43:15Z"
},
"/q/11557724/644450": {
"postId": 11557724,
"postTitle": "Behaviour of pre/post increment operators in Multiplication scenarios",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 09:42:52Z"
},
"/q/11544568/644450": {
"postId": 11544568,
"postTitle": "Decoding a Base64 string in Java",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 09:41:48Z"
},
"/q/11542998/644450": {
"postId": 11542998,
"postTitle": "How to get the object class in Java?",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-19 09:40:42Z"
},
"/q/11555913/644450": {
"postId": 11555913,
"postTitle": "Things to use in android game dev [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 09:40:11Z"
},
"/q/2175037/644450": {
"postId": 2175037,
"postTitle": "How to connect OpenBase DB using HSQL in JAVA",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 09:39:58Z"
},
"/q/11515827/644450": {
"postId": 11515827,
"postTitle": "finding the relation between the words [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 09:39:50Z"
},
"/q/4457677/644450": {
"postId": 4457677,
"postTitle": "How to create OCR on android [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 09:39:38Z"
},
"/q/11543538/6399": {
"postId": 11543538,
"postTitle": "Very large amount of data on gridview in asp.net [closed]",
"userId": 6399,
"userName": "edosoft",
"action": "Close",
"datetime": "2012-07-19 09:39:12Z"
},
"/q/11551226/644450": {
"postId": 11551226,
"postTitle": "How can I reduce the waiting time for ssl handshake?",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-19 09:39:02Z"
},
"/q/11550266/6399": {
"postId": 11550266,
"postTitle": "inner joins producing erroneous results for no clear reason",
"userId": 6399,
"userName": "edosoft",
"action": "Do Not Close",
"datetime": "2012-07-19 09:38:48Z"
},
"/q/11547843/644450": {
"postId": 11547843,
"postTitle": "Which list implementation is optimal for removing and inserting from the front and back?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 09:38:18Z"
},
"/q/11554935/644450": {
"postId": 11554935,
"postTitle": "Not sure about default initialization of variables in Java [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 09:37:31Z"
},
"/q/11540038/649687": {
"postId": 11540038,
"postTitle": "How to access a database on a server in android?",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 09:22:28Z"
},
"/q/11553903/649687": {
"postId": 11553903,
"postTitle": "What is a DHTML? [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 09:22:18Z"
},
"/q/11550238/649687": {
"postId": 11550238,
"postTitle": "Why Only the frame appears while the other works properly? [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 09:22:10Z"
},
"/q/11531615/649687": {
"postId": 11531615,
"postTitle": "Platform suggestions for a catalogue site, similar to an eCommerce site, but no Checkout or Shipping components",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 09:21:49Z"
},
"/q/11527571/649687": {
"postId": 11527571,
"postTitle": "In DataTables jedit, Cant get the row id?",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 09:21:27Z"
},
"/q/11555023/649687": {
"postId": 11555023,
"postTitle": "Asp.Net MVC 3 : Client IP addres Using Javascript [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 09:20:03Z"
},
"/q/11527479/649687": {
"postId": 11527479,
"postTitle": "Get event click link in a webview Android [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 09:19:53Z"
},
"/q/11555639/649687": {
"postId": 11555639,
"postTitle": "PHP how to calculate the loan amount instead of the monthly installment? [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 09:19:43Z"
},
"/q/11541618/649687": {
"postId": 11541618,
"postTitle": "Is there any way to lock my android app by using IMEI number [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 09:19:26Z"
},
"/q/11540408/649687": {
"postId": 11540408,
"postTitle": "How get exact number of online users in php chat system?",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 09:19:16Z"
},
"/q/11548714/649687": {
"postId": 11548714,
"postTitle": "How to create an array with the same key?",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 09:19:03Z"
},
"/q/11547816/649687": {
"postId": 11547816,
"postTitle": "Using OnClickListener with multiple ImageButtons?",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 09:18:53Z"
},
"/q/11555913/649687": {
"postId": 11555913,
"postTitle": "Things to use in android game dev [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 09:18:39Z"
},
"/q/1827482/649687": {
"postId": 1827482,
"postTitle": "Jquery find next/prev elements of a certain class but not necessarily siblings",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 09:18:19Z"
},
"/q/11536934/649687": {
"postId": 11536934,
"postTitle": "How to get an alphanumeric String from any string in Java? [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 09:18:09Z"
},
"/q/11546489/649687": {
"postId": 11546489,
"postTitle": "Android Programming and Java syntax",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 09:17:29Z"
},
"/q/11544256/649687": {
"postId": 11544256,
"postTitle": "HttpURLConnection conn.getRequestProperty return null",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-19 09:16:32Z"
},
"/q/3766443/649687": {
"postId": 3766443,
"postTitle": "Warning: mysql_num_rows() expects parameter 1 to be resource",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 09:16:12Z"
},
"/q/11555936/649687": {
"postId": 11555936,
"postTitle": "Downloading a source from a git repository using eclipse?",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 09:15:59Z"
},
"/q/11515695/649687": {
"postId": 11515695,
"postTitle": "How to squish pixels on android 2.2 (and above)",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 09:15:15Z"
},
"/q/11550612/649687": {
"postId": 11550612,
"postTitle": "Properties not being defined by constructor",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 09:15:06Z"
},
"/q/11555897/649687": {
"postId": 11555897,
"postTitle": "Why can't I just declare all methods static? [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-19 09:14:51Z"
},
"/q/11500217/649687": {
"postId": 11500217,
"postTitle": "In a spherical condition, given 3 points and their respective distances to a 4th point, how do a find its geolocation? [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 09:13:04Z"
},
"/q/11416915/649687": {
"postId": 11416915,
"postTitle": "Installing sun-java6-jre gives error",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 09:12:20Z"
},
"/q/11554074/644450": {
"postId": 11554074,
"postTitle": "war file generation, deployment [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 09:00:16Z"
},
"/q/11545891/644450": {
"postId": 11545891,
"postTitle": "java.util.ConcurrentModificationException, how to avoid [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 08:59:25Z"
},
"/q/10522760/1065190": {
"postId": 10522760,
"postTitle": "Does C++ have an API Specification? [closed]",
"userId": 1065190,
"userName": "Sergey K.",
"action": "Close",
"datetime": "2012-07-19 08:59:04Z"
},
"/q/11543789/1065190": {
"postId": 11543789,
"postTitle": "Git: how to ignore hidden files / dot files / files with empty file names via .gitignore?",
"userId": 1065190,
"userName": "Sergey K.",
"action": "Do Not Close",
"datetime": "2012-07-19 08:58:53Z"
},
"/q/11541618/413127": {
"postId": 11541618,
"postTitle": "Is there any way to lock my android app by using IMEI number [closed]",
"userId": 413127,
"userName": "Blundell",
"action": "Close",
"datetime": "2012-07-19 08:58:40Z"
},
"/q/11527479/413127": {
"postId": 11527479,
"postTitle": "Get event click link in a webview Android [closed]",
"userId": 413127,
"userName": "Blundell",
"action": "Close",
"datetime": "2012-07-19 08:58:17Z"
},
"/q/11537488/1065190": {
"postId": 11537488,
"postTitle": "compile c project with Cygwin [closed]",
"userId": 1065190,
"userName": "Sergey K.",
"action": "Close",
"datetime": "2012-07-19 08:58:06Z"
},
"/q/11524558/413127": {
"postId": 11524558,
"postTitle": "page on ICS WebView different from a browser display [closed]",
"userId": 413127,
"userName": "Blundell",
"action": "Close",
"datetime": "2012-07-19 08:57:50Z"
},
"/q/11545148/1065190": {
"postId": 11545148,
"postTitle": "C++ - selecting a set of features [closed]",
"userId": 1065190,
"userName": "Sergey K.",
"action": "Do Not Close",
"datetime": "2012-07-19 08:57:48Z"
},
"/q/11549774/644450": {
"postId": 11549774,
"postTitle": "4d to 2d projection matrix",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 08:57:45Z"
},
"/q/11533820/644450": {
"postId": 11533820,
"postTitle": "Java Animation Player Walking",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 08:57:33Z"
},
"/q/11554326/644450": {
"postId": 11554326,
"postTitle": "Android Frameworks/Technologies to improve development [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 08:56:52Z"
},
"/q/11540498/644450": {
"postId": 11540498,
"postTitle": "Fast making copy of an hash map [closed]",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-19 08:56:20Z"
},
"/q/3633254/644450": {
"postId": 3633254,
"postTitle": "what happened in inheritance of same class name holded classes in different packages [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 08:55:33Z"
},
"/q/11527713/644450": {
"postId": 11527713,
"postTitle": "LWJGL input with PS3 controller?",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-18 07:43:51Z"
},
"/q/3151241/644450": {
"postId": 3151241,
"postTitle": "how to get method parameters name from java class? [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 08:54:51Z"
},
"/q/11541097/644450": {
"postId": 11541097,
"postTitle": "Keystore's password management",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-19 08:54:42Z"
},
"/q/11547458/644450": {
"postId": 11547458,
"postTitle": "What is differences between JVM, JDK, JRE & OpenJDK?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 08:54:03Z"
},
"/q/11524391/644450": {
"postId": 11524391,
"postTitle": "QUnit on a web application?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 08:53:52Z"
},
"/q/11532196/74439": {
"postId": 11532196,
"postTitle": "Tips on coding this layout with Twitter Bootstrap",
"userId": 74439,
"userName": "Richard Berg",
"action": "Do Not Close",
"datetime": "2012-07-19 08:53:00Z"
},
"/q/11553523/644450": {
"postId": 11553523,
"postTitle": "How can I add entire directory to jar using ant?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 08:52:51Z"
},
"/q/11547192/74439": {
"postId": 11547192,
"postTitle": "Android swype softkeyboard when shrinked does not resize the background layout [closed]",
"userId": 74439,
"userName": "Richard Berg",
"action": "Close",
"datetime": "2012-07-19 08:52:31Z"
},
"/q/11549383/644450": {
"postId": 11549383,
"postTitle": "Thread calling non-synchronized instance method when a synchronized method is called",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-19 08:52:28Z"
},
"/q/11542045/74439": {
"postId": 11542045,
"postTitle": "Start application just one time C#",
"userId": 74439,
"userName": "Richard Berg",
"action": "Close",
"datetime": "2012-07-19 08:52:04Z"
},
"/q/11541085/644450": {
"postId": 11541085,
"postTitle": "How to load and play youtube videos in our own android application?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-19 08:51:21Z"
},
"/q/11533873/74439": {
"postId": 11533873,
"postTitle": "List of running java application?",
"userId": 74439,
"userName": "Richard Berg",
"action": "Do Not Close",
"datetime": "2012-07-19 08:50:54Z"
},
"/q/7927641/19624": {
"postId": 7927641,
"postTitle": "ErrorException [ Warning ]: mysql_num_rows() expects parameter 1 to be resource, array given [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Do Not Close",
"datetime": "2012-07-19 08:46:54Z"
},
"/q/1542236/19624": {
"postId": 1542236,
"postTitle": "Class not registered Exception - Microsoft Office 2003 OCR with MODI-C# Windows Application [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 08:46:20Z"
},
"/q/11555095/19624": {
"postId": 11555095,
"postTitle": "WPF- Binding Visibility of the progressbar [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 08:42:17Z"
},
"/q/11501532/286116": {
"postId": 11501532,
"postTitle": "Attaching sqlite to xcode mail",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-19 08:23:43Z"
},
"/q/11546934/286116": {
"postId": 11546934,
"postTitle": "alternating look and feel in a table view cell",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-19 08:23:36Z"
},
"/q/11543343/286116": {
"postId": 11543343,
"postTitle": "How to Create an iOS search similar to Path's?",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-19 08:23:19Z"
},
"/q/11501186/286116": {
"postId": 11501186,
"postTitle": "NSTimer scheduledTimerWithTimeInterval:target:selector:userInfo:repeats doesn't invoke the method",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-19 08:22:48Z"
},
"/q/11528401/286116": {
"postId": 11528401,
"postTitle": "Core Data Consuming Lots of Memory when used with Dynamic Tableview Height For Row",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-19 08:22:28Z"
},
"/q/11553396/286116": {
"postId": 11553396,
"postTitle": "how to add an action on UITextField return key?",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-19 08:22:15Z"
},
"/q/11552604/286116": {
"postId": 11552604,
"postTitle": "Objective-C upload plist file to an FTP server",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-19 08:22:06Z"
},
"/q/11549743/286116": {
"postId": 11549743,
"postTitle": "UIScrollView scrollToTop not getting called for iPhone",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-19 08:21:37Z"
},
"/q/11551064/286116": {
"postId": 11551064,
"postTitle": "How to play FLV in iPhone app?",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-19 08:21:27Z"
},
"/q/11555254/286116": {
"postId": 11555254,
"postTitle": "Is it possible to deploy Iphone enterprise application without Itunes?",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-19 08:21:09Z"
},
"/q/11554975/286116": {
"postId": 11554975,
"postTitle": "Does push notification work on a jailbroken device?",
"userId": 286116,
"userName": "Vin",
"action": "Close",
"datetime": "2012-07-19 08:21:03Z"
},
"/q/11552465/286116": {
"postId": 11552465,
"postTitle": "Full featured example application written in Cocoa (Mac desktop) [closed]",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-19 08:20:41Z"
},
"/q/11515376/286116": {
"postId": 11515376,
"postTitle": "How to add an object by tapping the screen Xcode",
"userId": 286116,
"userName": "Vin",
"action": "Close",
"datetime": "2012-07-19 08:20:25Z"
},
"/q/11546720/286116": {
"postId": 11546720,
"postTitle": "objective-c what graphics to use for simple 2d game",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-19 08:20:03Z"
},
"/q/11482449/286116": {
"postId": 11482449,
"postTitle": "Please suggest me possible correction in code (Iphone app development)",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-19 08:19:45Z"
},
"/q/11534660/286116": {
"postId": 11534660,
"postTitle": "xcode can't find carboncore framework in coreservice",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-19 08:19:34Z"
},
"/q/11548438/286116": {
"postId": 11548438,
"postTitle": "UITableView Cell background like in 'Music' app [closed]",
"userId": 286116,
"userName": "Vin",
"action": "Close",
"datetime": "2012-07-19 08:19:26Z"
},
"/q/11536441/286116": {
"postId": 11536441,
"postTitle": "I am trying to access one iPhone using VNC from three computers (2 MAC PC and 1 Windows PC), Can i create multiple sessions for each users?",
"userId": 286116,
"userName": "Vin",
"action": "Close",
"datetime": "2012-07-19 08:18:59Z"
},
"/q/11545772/286116": {
"postId": 11545772,
"postTitle": "Has anyone compiled iGraph, graph layout library, for iOS?",
"userId": 286116,
"userName": "Vin",
"action": "Close",
"datetime": "2012-07-19 08:18:34Z"
},
"/q/11543410/286116": {
"postId": 11543410,
"postTitle": "NSMutableArray EXEC_BAD_ACCESS on initWithObjects",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-19 08:18:03Z"
},
"/q/11542195/286116": {
"postId": 11542195,
"postTitle": "How to call SOAP service from Phonegap (iPhone app)",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-19 08:17:51Z"
},
"/q/11543333/286116": {
"postId": 11543333,
"postTitle": "Displaying developer all IOS apps on button clicked [closed]",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-19 08:17:20Z"
},
"/q/11524423/649687": {
"postId": 11524423,
"postTitle": "Possibility of inserting many rows in to table with single database hit",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 08:00:27Z"
},
"/q/11521432/649687": {
"postId": 11521432,
"postTitle": "Internal Vulnerability Scan Report",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-19 07:59:54Z"
},
"/q/11533566/218454": {
"postId": 11533566,
"postTitle": "What is the HTML/CSS for a website header navigation that always stays at the top even when scrolling? [closed]",
"userId": 218454,
"userName": "nfechner",
"action": "Close",
"datetime": "2012-07-19 07:49:23Z"
},
"/q/11545093/218454": {
"postId": 11545093,
"postTitle": "CSS image hover [closed]",
"userId": 218454,
"userName": "nfechner",
"action": "Close",
"datetime": "2012-07-19 07:48:53Z"
},
"/q/11533447/218454": {
"postId": 11533447,
"postTitle": "Major IE8 issue",
"userId": 218454,
"userName": "nfechner",
"action": "Close",
"datetime": "2012-07-19 07:48:31Z"
},
"/q/11531740/569101": {
"postId": 11531740,
"postTitle": "How can I see the images displayed on the pywapi library for google using windows 7 64 bit",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:28:47Z"
},
"/q/11553884/569101": {
"postId": 11553884,
"postTitle": "Geo location - how does it work? [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Do Not Close",
"datetime": "2012-07-19 07:28:37Z"
},
"/q/11543680/569101": {
"postId": 11543680,
"postTitle": "How to check, after publishing, the Visual studio license and version",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:28:17Z"
},
"/q/11547997/569101": {
"postId": 11547997,
"postTitle": "Hello world code for Mountain Lion OSX 10.8 showing notification like iChat [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:28:07Z"
},
"/q/11539728/569101": {
"postId": 11539728,
"postTitle": "Export from mysql for large tables [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:28:03Z"
},
"/q/11552341/569101": {
"postId": 11552341,
"postTitle": "Unable to line up 2 objects in the same line [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:27:17Z"
},
"/q/11534813/569101": {
"postId": 11534813,
"postTitle": "How to maintain logged user status in winforms reopen the application same application using add-in? [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:27:11Z"
},
"/q/11554781/569101": {
"postId": 11554781,
"postTitle": "html Intro page for a website",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:27:04Z"
},
"/q/11503298/569101": {
"postId": 11503298,
"postTitle": "Openfire Hardening [migrated]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:26:53Z"
},
"/q/11506821/569101": {
"postId": 11506821,
"postTitle": "How to call a function with parameters and user console input in C++?",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:26:49Z"
},
"/q/10376632/569101": {
"postId": 10376632,
"postTitle": "How to multiply to (n) number of funcations using for loop? [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:26:45Z"
},
"/q/2755848/569101": {
"postId": 2755848,
"postTitle": "How do you get subversion diff summary to ignore mergeinfo properties?",
"userId": 569101,
"userName": "j0k",
"action": "Do Not Close",
"datetime": "2012-07-19 07:26:37Z"
},
"/q/11519384/569101": {
"postId": 11519384,
"postTitle": "Escape an xml string while creating xml file",
"userId": 569101,
"userName": "j0k",
"action": "Edit",
"datetime": "2012-07-19 07:26:34Z"
},
"/q/11501532/569101": {
"postId": 11501532,
"postTitle": "Attaching sqlite to xcode mail",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:26:07Z"
},
"/q/11540589/569101": {
"postId": 11540589,
"postTitle": "open or create files with assembly code [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:26:01Z"
},
"/q/11545448/569101": {
"postId": 11545448,
"postTitle": "Picking a code pattern to implement in my GIS win application?",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:25:54Z"
},
"/q/706799/569101": {
"postId": 706799,
"postTitle": "Meaning of MIT license",
"userId": 569101,
"userName": "j0k",
"action": "Do Not Close",
"datetime": "2012-07-19 07:25:51Z"
},
"/q/11515788/569101": {
"postId": 11515788,
"postTitle": "login shell and interactive shell?",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:25:34Z"
},
"/q/8505275/569101": {
"postId": 8505275,
"postTitle": "Erlang - How to find the name of current function at runtime?",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:25:22Z"
},
"/q/11544195/569101": {
"postId": 11544195,
"postTitle": "triggering a checkbox when checked [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:25:17Z"
},
"/q/11526582/569101": {
"postId": 11526582,
"postTitle": "Java: Convert bool array into a single int [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:25:08Z"
},
"/q/11546750/569101": {
"postId": 11546750,
"postTitle": "How to use Recursive in SQL? Thanks [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:25:05Z"
},
"/q/11527479/569101": {
"postId": 11527479,
"postTitle": "Get event click link in a webview Android [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:24:59Z"
},
"/q/9809853/569101": {
"postId": 9809853,
"postTitle": "About junit test suite [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:21:31Z"
},
"/q/11521497/569101": {
"postId": 11521497,
"postTitle": "Chrome: any way to sync extensions?",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:21:26Z"
},
"/q/11541097/569101": {
"postId": 11541097,
"postTitle": "Keystore's password management",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:21:22Z"
},
"/q/11533016/569101": {
"postId": 11533016,
"postTitle": "How would I redirect a VPS site hosted in one site as a subdomain hosted at another site?",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:21:19Z"
},
"/q/11544544/569101": {
"postId": 11544544,
"postTitle": "How to build a multi level javascript drop down nav with auto positioning [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:21:14Z"
},
"/q/11464452/569101": {
"postId": 11464452,
"postTitle": "How to give the runtime input in selenium IDE?",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:21:01Z"
},
"/q/11540458/569101": {
"postId": 11540458,
"postTitle": "Threads in a Java Web Application",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:20:53Z"
},
"/q/11526030/569101": {
"postId": 11526030,
"postTitle": "How to traverse a linear equation",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:20:47Z"
},
"/q/7717851/569101": {
"postId": 7717851,
"postTitle": "Save file Javascript with file name",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:20:34Z"
},
"/q/11534186/569101": {
"postId": 11534186,
"postTitle": "Draw the following output as a Graph in Excel 2010 [migrated]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:20:24Z"
},
"/q/8164124/569101": {
"postId": 8164124,
"postTitle": "Python py2exe 32bits and 64bits",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:20:20Z"
},
"/q/11524471/569101": {
"postId": 11524471,
"postTitle": "Working with Dates in Java",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:20:10Z"
},
"/q/11519497/569101": {
"postId": 11519497,
"postTitle": "How to get a synchronous HTTP response",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:20:02Z"
},
"/q/11553660/569101": {
"postId": 11553660,
"postTitle": "Creating a Stop Watch in PHP [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:19:53Z"
},
"/q/11548724/569101": {
"postId": 11548724,
"postTitle": "Pygame program will not work [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:19:50Z"
},
"/q/11541990/569101": {
"postId": 11541990,
"postTitle": "Prevent user from entering a non number in a textbox using jQuery [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:19:26Z"
},
"/q/11532403/569101": {
"postId": 11532403,
"postTitle": "How to find the number of VMs running in my Linux PC?",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:19:08Z"
},
"/q/11533547/569101": {
"postId": 11533547,
"postTitle": "Operator Precedence with Scala Parser Combinators",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:19:04Z"
},
"/q/11529424/569101": {
"postId": 11529424,
"postTitle": "Implementing idf with nltk",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:18:58Z"
},
"/q/11540849/569101": {
"postId": 11540849,
"postTitle": "PInvoke works with Windows 7 but fails in Windows XP",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-19 07:18:55Z"
},
"/q/11539166/569101": {
"postId": 11539166,
"postTitle": "NatTypeDetection can't be used on ios [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Do Not Close",
"datetime": "2012-07-19 07:18:49Z"
},
"/q/11524433/19624": {
"postId": 11524433,
"postTitle": "Developing Closed-Source Applications in C#",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Do Not Close",
"datetime": "2012-07-19 07:18:03Z"
},
"/q/11545448/19624": {
"postId": 11545448,
"postTitle": "Picking a code pattern to implement in my GIS win application?",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 07:16:58Z"
},
"/q/11539307/19624": {
"postId": 11539307,
"postTitle": "Which option to select to use sql in C++ [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 07:16:38Z"
},
"/q/11548697/19624": {
"postId": 11548697,
"postTitle": "How to List Field's Name in table in Access Using SQL",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 07:15:28Z"
},
"/q/11540310/19624": {
"postId": 11540310,
"postTitle": "internal error 500 with htaccess file",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 07:15:16Z"
},
"/q/11546289/19624": {
"postId": 11546289,
"postTitle": "print pages to multiple printer at same time using c# [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 07:14:29Z"
},
"/q/11524395/19624": {
"postId": 11524395,
"postTitle": "Why const mytype _var = new mytype() doesn't work?",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Do Not Close",
"datetime": "2012-07-19 07:14:19Z"
},
"/q/11539599/19624": {
"postId": 11539599,
"postTitle": "Recommendations on Some Open Source C# [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 07:13:50Z"
},
"/q/11544415/19624": {
"postId": 11544415,
"postTitle": "Got garbage while char * puting to cout",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Do Not Close",
"datetime": "2012-07-19 07:13:30Z"
},
"/q/11542060/19624": {
"postId": 11542060,
"postTitle": "Nlog does not work [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 07:13:03Z"
},
"/q/11505018/19624": {
"postId": 11505018,
"postTitle": "EventHandler<TEventArgs> thread safety in C#?",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Do Not Close",
"datetime": "2012-07-19 07:12:55Z"
},
"/q/11513076/19624": {
"postId": 11513076,
"postTitle": "Sending email via PHP [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 07:12:34Z"
},
"/q/11543952/19624": {
"postId": 11543952,
"postTitle": "MYSQL Unable to start the service",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 07:12:14Z"
},
"/q/11544073/19624": {
"postId": 11544073,
"postTitle": "How do I deal with the `max` macro in windows.h colliding with `max` in `std`?",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Do Not Close",
"datetime": "2012-07-19 07:11:56Z"
},
"/q/11546238/19624": {
"postId": 11546238,
"postTitle": "How to make child page for each story of parent webpage.? [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 07:10:30Z"
},
"/q/11537244/19624": {
"postId": 11537244,
"postTitle": "How to upload a WordPress website from localhost to a actual website URL using FTP? [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 07:10:14Z"
},
"/q/11536786/19624": {
"postId": 11536786,
"postTitle": "How do I solve this warning on session_start()?",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 07:09:25Z"
},
"/q/11546748/19624": {
"postId": 11546748,
"postTitle": "craigslist cronjob [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 07:09:06Z"
},
"/q/11544453/19624": {
"postId": 11544453,
"postTitle": "Google Map multiple pointer",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 07:08:36Z"
},
"/q/11538770/19624": {
"postId": 11538770,
"postTitle": "what are the benifits of using Prism in WPF+MVVM application",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 07:08:15Z"
},
"/q/11518222/19624": {
"postId": 11518222,
"postTitle": "LINQ & SQL Injection [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 07:07:35Z"
},
"/q/11552101/19624": {
"postId": 11552101,
"postTitle": "FIXED: How to debug why backend is sick on Varnish? [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 07:07:15Z"
},
"/q/11539728/19624": {
"postId": 11539728,
"postTitle": "Export from mysql for large tables [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 07:06:19Z"
},
"/q/11546574/19624": {
"postId": 11546574,
"postTitle": "Basic graph-database in SQL? [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 07:05:43Z"
},
"/q/11528835/19624": {
"postId": 11528835,
"postTitle": "How to get started with SOAP?",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 07:05:07Z"
},
"/q/11541720/646382": {
"postId": 11541720,
"postTitle": "VB.NET Reference/point to a variable",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-19 07:02:49Z"
},
"/q/11541855/646382": {
"postId": 11541855,
"postTitle": "How can I let my customers have their own domains redirect to my server and identify them?",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-19 07:02:22Z"
},
"/q/11539753/19624": {
"postId": 11539753,
"postTitle": "Convert timer interval to float",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 07:02:21Z"
},
"/q/11534032/646382": {
"postId": 11534032,
"postTitle": "VS 11 Remove Shortcut Bar Below Design Screen",
"userId": 646382,
"userName": "jonsca",
"action": "Do Not Close",
"datetime": "2012-07-19 07:01:53Z"
},
"/q/11545148/646382": {
"postId": 11545148,
"postTitle": "C++ - selecting a set of features [closed]",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-19 07:01:34Z"
},
"/q/11446983/19624": {
"postId": 11446983,
"postTitle": "How to send app request to user all friends using facebook request dialogue?",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 07:01:06Z"
},
"/q/11542821/19624": {
"postId": 11542821,
"postTitle": "Gmail API in PHP [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 07:00:58Z"
},
"/q/11544472/646382": {
"postId": 11544472,
"postTitle": "Setup File for c++/cli console application",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-19 07:00:49Z"
},
"/q/11547973/19624": {
"postId": 11547973,
"postTitle": "How to set custom PHP.ini",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 07:00:40Z"
},
"/q/11550193/19624": {
"postId": 11550193,
"postTitle": "How to get the full path to php interpreter / binary without shell access",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 07:00:23Z"
},
"/q/11534198/19624": {
"postId": 11534198,
"postTitle": "Spreadsheet Excel Writer php [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 07:00:07Z"
},
"/q/11542060/646382": {
"postId": 11542060,
"postTitle": "Nlog does not work [closed]",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-19 07:00:01Z"
},
"/q/11550947/646382": {
"postId": 11550947,
"postTitle": "In the contoller, how do i obtain data from an http post? [closed]",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-19 06:59:44Z"
},
"/q/11536140/19624": {
"postId": 11536140,
"postTitle": "Convert completed project to dll",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 06:59:26Z"
},
"/q/11524433/646382": {
"postId": 11524433,
"postTitle": "Developing Closed-Source Applications in C#",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-19 06:59:15Z"
},
"/q/11554831/646382": {
"postId": 11554831,
"postTitle": "C# Oracle data provider (Oracle DataAccess.Dll) Connection request timed out",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-19 06:59:07Z"
},
"/q/11534186/646382": {
"postId": 11534186,
"postTitle": "Draw the following output as a Graph in Excel 2010 [migrated]",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-19 06:59:00Z"
},
"/q/11554294/19624": {
"postId": 11554294,
"postTitle": "MySQL is running but PHPMyAdmin unable to connect to it [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 06:58:54Z"
},
"/q/11548884/19624": {
"postId": 11548884,
"postTitle": "Write a packet to a socket, preferably using socket_write() [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 06:58:44Z"
},
"/q/11533547/646382": {
"postId": 11533547,
"postTitle": "Operator Precedence with Scala Parser Combinators",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-19 06:58:37Z"
},
"/q/11526949/649687": {
"postId": 11526949,
"postTitle": "How to display the correct page number?",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-19 06:58:36Z"
},
"/q/11543785/646382": {
"postId": 11543785,
"postTitle": "Hosting openGL widget in QML",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-19 06:58:17Z"
},
"/q/11555198/646382": {
"postId": 11555198,
"postTitle": "Append 0 to a number of the cell in Excel sheet [closed]",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-19 06:58:05Z"
},
"/q/11528816/19624": {
"postId": 11528816,
"postTitle": "Wordpress Form Processing Issue",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 06:58:03Z"
},
"/q/11549821/649687": {
"postId": 11549821,
"postTitle": "I am having trouble with a few OO-related errors [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 06:57:51Z"
},
"/q/11554167/646382": {
"postId": 11554167,
"postTitle": "ipv6 router advertisement issue [closed]",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-19 06:57:41Z"
},
"/q/11530790/649687": {
"postId": 11530790,
"postTitle": "Force date to US format regardless of locale settings",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-19 06:57:12Z"
},
"/q/11545661/19624": {
"postId": 11545661,
"postTitle": "PHP force download json [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 06:57:05Z"
},
"/q/11545569/646382": {
"postId": 11545569,
"postTitle": "How do I get the last write or build time of my app? [closed]",
"userId": 646382,
"userName": "jonsca",
"action": "Do Not Close",
"datetime": "2012-07-19 06:57:01Z"
},
"/q/11555265/646382": {
"postId": 11555265,
"postTitle": "Combine multiple textbox text into a string in C# [closed]",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-19 06:56:41Z"
},
"/q/11518588/19624": {
"postId": 11518588,
"postTitle": "My solution doesn't work. It creates something like report that in the gridview column shows the value of report for instance 20",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 06:56:39Z"
},
"/q/11544388/646382": {
"postId": 11544388,
"postTitle": "custom installer with auto update feature",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-19 06:56:27Z"
},
"/q/11551050/19624": {
"postId": 11551050,
"postTitle": "magento on ipage: magento database exists in control panel but not visible [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 06:56:13Z"
},
"/q/11523737/649687": {
"postId": 11523737,
"postTitle": "jquery - save image as specified filename [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 06:55:57Z"
},
"/q/11513892/649687": {
"postId": 11513892,
"postTitle": "jQuery Accordion header with independent image and hyperlink",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 06:55:48Z"
},
"/q/11522443/649687": {
"postId": 11522443,
"postTitle": "Connecting to a Remote Oracle Database using Python",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 06:55:16Z"
},
"/q/11543386/19624": {
"postId": 11543386,
"postTitle": "Why can't I call BuildSessionFactory since the update from NHibernate 2 to 3.3.1?",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 06:55:13Z"
},
"/q/11539011/649687": {
"postId": 11539011,
"postTitle": "CSS transform: rotate bug in safari [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 06:55:08Z"
},
"/q/11551235/19624": {
"postId": 11551235,
"postTitle": "Why would a CheckBox in a GroupBox header not properly respond to hit tests?",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-19 06:54:52Z"
},
"/q/11541603/649687": {
"postId": 11541603,
"postTitle": "how to display hide and show select box?",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-19 06:52:01Z"
},
"/q/11516145/649687": {
"postId": 11516145,
"postTitle": "Compare dates to display only future events: PHP",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 06:51:18Z"
},
"/q/11544711/649687": {
"postId": 11544711,
"postTitle": "Match using directives",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-19 06:51:08Z"
},
"/q/11515827/124259": {
"postId": 11515827,
"postTitle": "finding the relation between the words [closed]",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-19 06:51:04Z"
},
"/q/11528620/649687": {
"postId": 11528620,
"postTitle": "PHP: How to access the first element of an array returned by a static function",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 06:50:56Z"
},
"/q/11536983/124259": {
"postId": 11536983,
"postTitle": "How to find every entry in a given list values that does not exist in a mysql table?",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-19 06:50:53Z"
},
"/q/11521962/649687": {
"postId": 11521962,
"postTitle": "File renaming using php",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-19 06:50:38Z"
},
"/q/11547561/124259": {
"postId": 11547561,
"postTitle": "Flex Application Just giving blank page [closed]",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-19 06:50:09Z"
},
"/q/11526316/649687": {
"postId": 11526316,
"postTitle": "HTML5: validate the form and event.preventDefault",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 06:49:36Z"
},
"/q/649743/124259": {
"postId": 649743,
"postTitle": "Do you use a project diary or experience database?",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-19 06:49:28Z"
},
"/q/11518223/649687": {
"postId": 11518223,
"postTitle": "Android phone performance",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 06:49:22Z"
},
"/q/11540882/649687": {
"postId": 11540882,
"postTitle": "somthing Wrong in json coding in android",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 06:49:09Z"
},
"/q/11526316/219118": {
"postId": 11526316,
"postTitle": "HTML5: validate the form and event.preventDefault",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:44:01Z"
},
"/q/11550032/219118": {
"postId": 11550032,
"postTitle": "Send emails from localhost with php [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:43:42Z"
},
"/q/11554818/219118": {
"postId": 11554818,
"postTitle": "Common pin it button for all images on page",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:43:34Z"
},
"/q/11554902/219118": {
"postId": 11554902,
"postTitle": "Converting one .php page to another [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:43:25Z"
},
"/q/11552101/219118": {
"postId": 11552101,
"postTitle": "FIXED: How to debug why backend is sick on Varnish? [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:43:20Z"
},
"/q/11513147/219118": {
"postId": 11513147,
"postTitle": "How can I set Chrome to search in my language when I go abroad",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:43:09Z"
},
"/q/11547835/219118": {
"postId": 11547835,
"postTitle": "Code for dropdown menu selection to preview image - for online store? [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:42:53Z"
},
"/q/11514059/219118": {
"postId": 11514059,
"postTitle": "Brainstorm: Disable Vendor Web Application Functionality on Public PC",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:42:42Z"
},
"/q/11534384/219118": {
"postId": 11534384,
"postTitle": "THREE.js additive blend effect on scene [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:42:35Z"
},
"/q/11516145/219118": {
"postId": 11516145,
"postTitle": "Compare dates to display only future events: PHP",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:42:27Z"
},
"/q/11527539/219118": {
"postId": 11527539,
"postTitle": "JQuery: Show mouseover of subelement when parent element is mouseovered",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-19 06:42:17Z"
},
"/q/11517622/219118": {
"postId": 11517622,
"postTitle": "How to remove all javascript in joomla ?",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-19 06:42:12Z"
},
"/q/11544714/219118": {
"postId": 11544714,
"postTitle": "Why does PHP send it all at once? [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:42:01Z"
},
"/q/11534422/219118": {
"postId": 11534422,
"postTitle": "Custom CSS input box causing page to refresh on ENTER key [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:41:54Z"
},
"/q/11419596/219118": {
"postId": 11419596,
"postTitle": "website content to appear in header but load last",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:41:47Z"
},
"/q/11538698/219118": {
"postId": 11538698,
"postTitle": "Address not showing properly in joomla 2.5 website [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:41:24Z"
},
"/q/5455426/219118": {
"postId": 5455426,
"postTitle": "Is it possible to close a browser window using javascript?",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:41:05Z"
},
"/q/11544799/219118": {
"postId": 11544799,
"postTitle": "jQuery return $.post callback through parent function [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:40:57Z"
},
"/q/11549553/219118": {
"postId": 11549553,
"postTitle": "Seeking advice / reassurance implementing my Zend Application's Data Architecture (DDD)",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:40:49Z"
},
"/q/11526949/219118": {
"postId": 11526949,
"postTitle": "How to display the correct page number?",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:40:41Z"
},
"/q/11544544/219118": {
"postId": 11544544,
"postTitle": "How to build a multi level javascript drop down nav with auto positioning [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:40:29Z"
},
"/q/11534668/219118": {
"postId": 11534668,
"postTitle": "How can i add Pagination bing php Search engine",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:40:24Z"
},
"/q/11549215/219118": {
"postId": 11549215,
"postTitle": "Is there a way to download files from share sites using php/zend? [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:40:07Z"
},
"/q/11553300/219118": {
"postId": 11553300,
"postTitle": "Why am I getting this mysql error?",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-19 06:39:53Z"
},
"/q/11545649/219118": {
"postId": 11545649,
"postTitle": "Background link (on ALL the background!)",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:39:44Z"
},
"/q/11525997/649687": {
"postId": 11525997,
"postTitle": "Chrome CSS Hack and Media Queries",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 06:39:27Z"
},
"/q/11550978/219118": {
"postId": 11550978,
"postTitle": "Internet Explorer compatibility disaster",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:39:25Z"
},
"/q/11551088/219118": {
"postId": 11551088,
"postTitle": "Why does my jsfiddle work but not my web site? [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:38:57Z"
},
"/q/11539817/649687": {
"postId": 11539817,
"postTitle": "Display source of PHP of files",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 06:38:54Z"
},
"/q/11539525/219118": {
"postId": 11539525,
"postTitle": "Add hidden values inside an <select> tag",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:38:51Z"
},
"/q/11513076/219118": {
"postId": 11513076,
"postTitle": "Sending email via PHP [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:38:42Z"
},
"/q/11526634/649687": {
"postId": 11526634,
"postTitle": "Set up git to push to another user's Github repo?",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-19 06:38:35Z"
},
"/q/11540760/219118": {
"postId": 11540760,
"postTitle": "how can i send form values to MYSQL database using php [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:38:20Z"
},
"/q/11528901/649687": {
"postId": 11528901,
"postTitle": "Slow web page (Jquery + bootstrap) [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 06:37:57Z"
},
"/q/2715004/649687": {
"postId": 2715004,
"postTitle": "how to use JComboBox using Enum in Dialog Box",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 06:37:41Z"
},
"/q/11517628/649687": {
"postId": 11517628,
"postTitle": "Replacing one character with another in a string",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-19 06:37:27Z"
},
"/q/11525997/219118": {
"postId": 11525997,
"postTitle": "Chrome CSS Hack and Media Queries",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:37:15Z"
},
"/q/11536026/219118": {
"postId": 11536026,
"postTitle": "Multi Language Site Google Sitemap [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:37:05Z"
},
"/q/8707355/219118": {
"postId": 8707355,
"postTitle": "Strtolower vs strtoupper [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:37:00Z"
},
"/q/11531978/219118": {
"postId": 11531978,
"postTitle": "PHP preg_replace: Modify text within div of specific class",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:36:55Z"
},
"/q/11524408/649687": {
"postId": 11524408,
"postTitle": "Excel vba macro copy rows multiple times based on a cell integer value",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-19 06:36:50Z"
},
"/q/11542821/219118": {
"postId": 11542821,
"postTitle": "Gmail API in PHP [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:36:43Z"
},
"/q/1896765/219118": {
"postId": 1896765,
"postTitle": "How can I use a class made in PHP?",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:36:32Z"
},
"/q/11537949/219118": {
"postId": 11537949,
"postTitle": "Can I globally set $_SERVER['REDIRECT_URL'] before script execution? [migrated]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:36:19Z"
},
"/q/11550442/649687": {
"postId": 11550442,
"postTitle": "Printing complex strings in javascript without + symbol [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 06:36:09Z"
},
"/q/11486441/649687": {
"postId": 11486441,
"postTitle": "Google App Engine suddenly will not run ANY local apps Python-Windows",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 06:35:44Z"
},
"/q/11521497/219118": {
"postId": 11521497,
"postTitle": "Chrome: any way to sync extensions?",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:35:38Z"
},
"/q/11553903/219118": {
"postId": 11553903,
"postTitle": "What is a DHTML? [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:35:27Z"
},
"/q/5152369/649687": {
"postId": 5152369,
"postTitle": "how to retrieve data from a db in jsp page",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 06:35:25Z"
},
"/q/11550701/649687": {
"postId": 11550701,
"postTitle": "Java style: Multiple variable assignment",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-19 06:35:09Z"
},
"/q/11547973/219118": {
"postId": 11547973,
"postTitle": "How to set custom PHP.ini",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:34:50Z"
},
"/q/11531992/649687": {
"postId": 11531992,
"postTitle": "Rand function yields uneven results",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-19 06:34:48Z"
},
"/q/11536900/219118": {
"postId": 11536900,
"postTitle": "Is there an existing plugin for jQuery that counts down to a specific time, then counts back up?",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:34:39Z"
},
"/q/11555023/219118": {
"postId": 11555023,
"postTitle": "Asp.Net MVC 3 : Client IP addres Using Javascript [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:34:31Z"
},
"/q/5455426/649687": {
"postId": 5455426,
"postTitle": "Is it possible to close a browser window using javascript?",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 06:34:09Z"
},
"/q/11550442/219118": {
"postId": 11550442,
"postTitle": "Printing complex strings in javascript without + symbol [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:33:51Z"
},
"/q/11554541/649687": {
"postId": 11554541,
"postTitle": "huge decision to make! should i port an almost fully functional site to a framework if I'm concerned about security? [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 06:33:43Z"
},
"/q/11553992/219118": {
"postId": 11553992,
"postTitle": "Creating a table with result from SQL DB query. What's the best practice form mixing PHP & HTML?",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:33:41Z"
},
"/q/11532993/649687": {
"postId": 11532993,
"postTitle": "How to send address in Android Application to Google Maps",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 06:33:30Z"
},
"/q/11539343/219118": {
"postId": 11539343,
"postTitle": "how to deal with null value in array",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-19 06:33:20Z"
},
"/q/11541990/219118": {
"postId": 11541990,
"postTitle": "Prevent user from entering a non number in a textbox using jQuery [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:33:08Z"
},
"/q/11549170/219118": {
"postId": 11549170,
"postTitle": "How hook into the end of an ecommerce transaction on a foreign domain [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:33:01Z"
},
"/q/11543399/219118": {
"postId": 11543399,
"postTitle": "Site layout without writing-mode",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-19 06:32:53Z"
},
"/q/11528816/219118": {
"postId": 11528816,
"postTitle": "Wordpress Form Processing Issue",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:32:26Z"
},
"/q/11537888/649687": {
"postId": 11537888,
"postTitle": "Lighttpd 403 Forbidden for PHP files",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 06:32:18Z"
},
"/q/11528810/219118": {
"postId": 11528810,
"postTitle": "one form inside a content page is not accessible to css stylesheet but other form is doing well, why? [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:32:09Z"
},
"/q/11500217/219118": {
"postId": 11500217,
"postTitle": "In a spherical condition, given 3 points and their respective distances to a 4th point, how do a find its geolocation? [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:31:36Z"
},
"/q/11547296/219118": {
"postId": 11547296,
"postTitle": "add a new row in a table using jQuery [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:31:25Z"
},
"/q/11541952/219118": {
"postId": 11541952,
"postTitle": "PHP - check SSL certificate of the request",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-19 06:31:17Z"
},
"/q/1039738/219118": {
"postId": 1039738,
"postTitle": "Problem with Strpos In PHP",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-19 06:31:08Z"
},
"/q/11535596/219118": {
"postId": 11535596,
"postTitle": "Which JavaScript framework is better for Company Portal development?",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:29:59Z"
},
"/q/11537244/219118": {
"postId": 11537244,
"postTitle": "How to upload a WordPress website from localhost to a actual website URL using FTP? [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-19 06:29:54Z"
},
"/q/11551088/649687": {
"postId": 11551088,
"postTitle": "Why does my jsfiddle work but not my web site? [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 06:27:55Z"
},
"/q/11544714/649687": {
"postId": 11544714,
"postTitle": "Why does PHP send it all at once? [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 06:27:37Z"
},
"/q/11542491/649687": {
"postId": 11542491,
"postTitle": "compiling problems with latex and embedded python code [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 06:26:49Z"
},
"/q/11536698/649687": {
"postId": 11536698,
"postTitle": "How to use Facebook PHP SDK with Heroku? [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 06:26:26Z"
},
"/q/7200488/649687": {
"postId": 7200488,
"postTitle": "Nullpointerexception in dialog box display: android",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-19 06:26:05Z"
},
"/q/11532131/649687": {
"postId": 11532131,
"postTitle": "Python Not Running Code [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 06:25:47Z"
},
"/q/11515827/649687": {
"postId": 11515827,
"postTitle": "finding the relation between the words [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-19 06:24:38Z"
},
"/q/11545630/777186": {
"postId": 11545630,
"postTitle": "export class rule",
"userId": 777186,
"userName": "jogojapan",
"action": "Do Not Close",
"datetime": "2012-07-19 05:47:53Z"
},
"/q/11544415/777186": {
"postId": 11544415,
"postTitle": "Got garbage while char * puting to cout",
"userId": 777186,
"userName": "jogojapan",
"action": "Close",
"datetime": "2012-07-19 05:45:35Z"
},
"/q/6161665/777186": {
"postId": 6161665,
"postTitle": "Proper usage - accessors/getters vs normal methods",
"userId": 777186,
"userName": "jogojapan",
"action": "Do Not Close",
"datetime": "2012-07-19 05:40:58Z"
},
"/q/11538550/777186": {
"postId": 11538550,
"postTitle": "Retrieving outlook Contacts via python",
"userId": 777186,
"userName": "jogojapan",
"action": "Do Not Close",
"datetime": "2012-07-19 05:39:07Z"
},
"/q/11549153/1114": {
"postId": 11549153,
"postTitle": "the start position on the text field is not correct in internet explorer [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 05:19:04Z"
},
"/q/11550012/1114": {
"postId": 11550012,
"postTitle": "How to size an inner div to make an area take up 100% of the screen",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Do Not Close",
"datetime": "2012-07-19 05:17:52Z"
},
"/q/11535596/1114": {
"postId": 11535596,
"postTitle": "Which JavaScript framework is better for Company Portal development?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 05:16:58Z"
},
"/q/11531740/1114": {
"postId": 11531740,
"postTitle": "How can I see the images displayed on the pywapi library for google using windows 7 64 bit",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 05:16:39Z"
},
"/q/11550681/1114": {
"postId": 11550681,
"postTitle": "What does !1 and !0 mean in Javascript? [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 05:16:28Z"
},
"/q/11550509/1114": {
"postId": 11550509,
"postTitle": "jQuery syntax: # symbol [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 05:15:41Z"
},
"/q/11550442/1114": {
"postId": 11550442,
"postTitle": "Printing complex strings in javascript without + symbol [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 05:13:57Z"
},
"/q/11545093/1114": {
"postId": 11545093,
"postTitle": "CSS image hover [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 05:13:33Z"
},
"/q/11536023/1114": {
"postId": 11536023,
"postTitle": "Understanding awesomeness of Lisp/Clojure [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 05:12:34Z"
},
"/q/11534960/1114": {
"postId": 11534960,
"postTitle": "how to setp up GNUKhata in eclips?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 05:12:13Z"
},
"/q/11543060/1114": {
"postId": 11543060,
"postTitle": "Creating a web interface with python (cgi) [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 05:11:31Z"
},
"/q/11525842/1114": {
"postId": 11525842,
"postTitle": "Can't I use two different condition at “on” in a join?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 05:11:20Z"
},
"/q/11517419/1114": {
"postId": 11517419,
"postTitle": "Slider Issues in IE",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 05:10:49Z"
},
"/q/11545649/1114": {
"postId": 11545649,
"postTitle": "Background link (on ALL the background!)",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 05:10:44Z"
},
"/q/11550369/1114": {
"postId": 11550369,
"postTitle": "Save cookies with javascript how to specify domain?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 05:08:40Z"
},
"/q/11549719/1114": {
"postId": 11549719,
"postTitle": "Pulling out GET data from URL using JS/Jquery",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 05:08:14Z"
},
"/q/11550626/1114": {
"postId": 11550626,
"postTitle": "External JavaScript - body or head? [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 05:07:22Z"
},
"/q/11533524/1114": {
"postId": 11533524,
"postTitle": "What's the difference between 2to3-2.7 and 2to3-3.1?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Do Not Close",
"datetime": "2012-07-19 05:06:42Z"
},
"/q/7717851/1114": {
"postId": 7717851,
"postTitle": "Save file Javascript with file name",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 05:06:13Z"
},
"/q/11517885/1114": {
"postId": 11517885,
"postTitle": "Javascript at target position",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 05:05:28Z"
},
"/q/11528810/1114": {
"postId": 11528810,
"postTitle": "one form inside a content page is not accessible to css stylesheet but other form is doing well, why? [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-19 05:05:02Z"
},
"/q/11513250/18157": {
"postId": 11513250,
"postTitle": "How to stop a GIF from animating after a certain amount of time (on a web page)? [closed]",
"userId": 18157,
"userName": "Jim Garrison",
"action": "Close",
"datetime": "2012-07-19 04:57:43Z"
},
"/q/11550701/18157": {
"postId": 11550701,
"postTitle": "Java style: Multiple variable assignment",
"userId": 18157,
"userName": "Jim Garrison",
"action": "Close",
"datetime": "2012-07-19 04:56:59Z"
},
"/q/4516932/18157": {
"postId": 4516932,
"postTitle": "difference between slf4j and log4j",
"userId": 18157,
"userName": "Jim Garrison",
"action": "Do Not Close",
"datetime": "2012-07-19 04:55:34Z"
},
"/q/11527713/18157": {
"postId": 11527713,
"postTitle": "LWJGL input with PS3 controller?",
"userId": 18157,
"userName": "Jim Garrison",
"action": "Close",
"datetime": "2012-07-19 04:54:55Z"
},
"/q/11516990/18157": {
"postId": 11516990,
"postTitle": "A way to determine whether or not a website validates",
"userId": 18157,
"userName": "Jim Garrison",
"action": "Close",
"datetime": "2012-07-19 04:54:33Z"
},
"/q/11515827/18157": {
"postId": 11515827,
"postTitle": "finding the relation between the words [closed]",
"userId": 18157,
"userName": "Jim Garrison",
"action": "Close",
"datetime": "2012-07-19 04:52:55Z"
},
"/q/11519610/424459": {
"postId": 11519610,
"postTitle": "Proximity-Based Automatic Garage Door Opener",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 04:43:44Z"
},
"/q/11511187/424459": {
"postId": 11511187,
"postTitle": "Comparison code For Webbrowser vs Gecko",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 04:43:27Z"
},
"/q/11510356/424459": {
"postId": 11510356,
"postTitle": "Is there anything “incorrect” about running multiple database platforms at once?",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 04:41:58Z"
},
"/q/11518058/424459": {
"postId": 11518058,
"postTitle": "Cannot install MVC 4",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 04:41:52Z"
},
"/q/11535723/424459": {
"postId": 11535723,
"postTitle": "link between the two dropdown lists in jsp",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 04:41:37Z"
},
"/q/11547637/424459": {
"postId": 11547637,
"postTitle": "What is the most scaleable and efficient way of managing profile pics",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 04:41:08Z"
},
"/q/11514935/424459": {
"postId": 11514935,
"postTitle": "“Thread safety” of appending to single file from multiple processes?",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 04:39:33Z"
},
"/q/11533890/424459": {
"postId": 11533890,
"postTitle": "Run a C/C++ application in Eclipse Runtime Workbench [closed]",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 04:37:38Z"
},
"/q/11518838/424459": {
"postId": 11518838,
"postTitle": "Good materials / resources to start on Windows Azure [closed]",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 04:36:47Z"
},
"/q/11550242/424459": {
"postId": 11550242,
"postTitle": "Open source or written PCI Image software similar to QUARTZ PCI?",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 04:36:08Z"
},
"/q/11530970/424459": {
"postId": 11530970,
"postTitle": "Converting datatypes in mysql",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 04:35:53Z"
},
"/q/11550029/424459": {
"postId": 11550029,
"postTitle": "How to install git on Linux [closed]",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 04:35:33Z"
},
"/q/770977/424459": {
"postId": 770977,
"postTitle": "Does anyone use their Sony PSP for improving productivity?",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 04:35:20Z"
},
"/q/9809853/424459": {
"postId": 9809853,
"postTitle": "About junit test suite [closed]",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 04:35:08Z"
},
"/q/258469/424459": {
"postId": 258469,
"postTitle": "What is the difference between attribute and property?",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 04:34:37Z"
},
"/q/10079075/424459": {
"postId": 10079075,
"postTitle": "CCNet how to display assemblyinfo.cs to the dashboard? [closed]",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 04:33:14Z"
},
"/q/11529478/424459": {
"postId": 11529478,
"postTitle": "FourSquare: Where should I store my client secret?",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 04:32:30Z"
},
"/q/11516680/424459": {
"postId": 11516680,
"postTitle": "css opacity not working in IE",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 04:32:00Z"
},
"/q/8292273/424459": {
"postId": 8292273,
"postTitle": "which control should I Use for display like this format",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 04:31:00Z"
},
"/q/11535777/424459": {
"postId": 11535777,
"postTitle": "What does cross domain mean and where does JSONP stand in this context?",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 04:30:45Z"
},
"/q/6324614/424459": {
"postId": 6324614,
"postTitle": "PHP, why do you escape my quotes?",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 04:30:33Z"
},
"/q/11546504/424459": {
"postId": 11546504,
"postTitle": "how does if condition evaluates its value in javascript",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 04:29:42Z"
},
"/q/11545769/424459": {
"postId": 11545769,
"postTitle": "What to use instead of Google Transliterate API",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 04:29:16Z"
},
"/q/11522541/424459": {
"postId": 11522541,
"postTitle": "Can some give me link for pymedia to support Python 2.7 [closed]",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 04:25:19Z"
},
"/q/2882240/424459": {
"postId": 2882240,
"postTitle": "Amazon EC2 pricing question",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 04:24:57Z"
},
"/q/11535020/424459": {
"postId": 11535020,
"postTitle": "How to measure broadcast on my network [closed]",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 04:24:07Z"
},
"/q/11516258/424459": {
"postId": 11516258,
"postTitle": "What is the equivalent of unbuffer program on Windows?",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 04:22:58Z"
},
"/q/11552174/424459": {
"postId": 11552174,
"postTitle": "jQuery binding click event best practices",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 04:22:48Z"
},
"/q/11536150/424459": {
"postId": 11536150,
"postTitle": "Free running /side scrolling type game in cocos2d",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 04:22:37Z"
},
"/q/11507879/424459": {
"postId": 11507879,
"postTitle": "Declarative creation dojox.form.CheckedMultiSelect and attribute “title” (Dojo 1.4)",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 04:22:27Z"
},
"/q/11292256/424459": {
"postId": 11292256,
"postTitle": "TypeError: Error #1009:",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 04:21:49Z"
},
"/q/11534357/424459": {
"postId": 11534357,
"postTitle": "is hiding the fan count consistent with Facebook T&C",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 04:09:16Z"
},
"/q/11522084/424459": {
"postId": 11522084,
"postTitle": "Google Analytics has not been enabled by the administrator of the domain",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 04:08:59Z"
},
"/q/11533027/424459": {
"postId": 11533027,
"postTitle": "Sort array according to value of key",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 04:08:36Z"
},
"/q/1021115/424459": {
"postId": 1021115,
"postTitle": "Need Database",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 04:08:12Z"
},
"/q/11518486/424459": {
"postId": 11518486,
"postTitle": "ctime, mtime, holding directory, windows, linux",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 04:07:33Z"
},
"/q/11535965/424459": {
"postId": 11535965,
"postTitle": "How to create vb.net dll to manipulate vba strings [closed]",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 03:53:05Z"
},
"/q/11548143/424459": {
"postId": 11548143,
"postTitle": "Use of Pointers in Objective-C [closed]",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 03:52:51Z"
},
"/q/11547717/424459": {
"postId": 11547717,
"postTitle": "An Array of objects in php",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 03:52:34Z"
},
"/q/11548438/424459": {
"postId": 11548438,
"postTitle": "UITableView Cell background like in 'Music' app [closed]",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 03:52:21Z"
},
"/q/11541042/424459": {
"postId": 11541042,
"postTitle": "LF without CR on windows",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 03:50:57Z"
},
"/q/11534360/424459": {
"postId": 11534360,
"postTitle": "can't edit PHP files on server; getting HTML output instead",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 03:50:29Z"
},
"/q/11543509/424459": {
"postId": 11543509,
"postTitle": "What is the Best Integration tool for Oracle => Vertica (data load)? [closed]",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 03:50:17Z"
},
"/q/11534436/424459": {
"postId": 11534436,
"postTitle": "Setting up an admin grid in django [closed]",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 03:49:29Z"
},
"/q/11545110/424459": {
"postId": 11545110,
"postTitle": "Any way to shrink JVM heap running Coldfusion 9 once allocated?",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 03:49:05Z"
},
"/q/11544014/424459": {
"postId": 11544014,
"postTitle": "Extending TabLayoutPanel in GWT",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 03:48:49Z"
},
"/q/4894180/424459": {
"postId": 4894180,
"postTitle": "Dns configuration to route subdomains to naked domains",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 03:47:50Z"
},
"/q/8266925/424459": {
"postId": 8266925,
"postTitle": "Apply Themes dynamically for UserControl in Silverlight 4.0",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 03:47:34Z"
},
"/q/11530455/424459": {
"postId": 11530455,
"postTitle": "Change network route without affecting connection",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 03:47:14Z"
},
"/q/11520675/424459": {
"postId": 11520675,
"postTitle": "php shell scripting for FFmpeg video conversion",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 03:46:55Z"
},
"/q/5802879/424459": {
"postId": 5802879,
"postTitle": "difference between pipelining and redirection in linux",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 03:46:45Z"
},
"/q/11526819/424459": {
"postId": 11526819,
"postTitle": "Step through a release version in Android",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 03:46:16Z"
},
"/q/11538861/424459": {
"postId": 11538861,
"postTitle": "How to access Form components from cpp file",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 03:42:43Z"
},
"/q/11546429/424459": {
"postId": 11546429,
"postTitle": "linked list multiply [closed]",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 03:41:50Z"
},
"/q/11540610/424459": {
"postId": 11540610,
"postTitle": "LSP source example [closed]",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 03:41:12Z"
},
"/q/11519669/424459": {
"postId": 11519669,
"postTitle": "How to delete “debug” and “release” folders of each project in Visual Studio",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 03:40:56Z"
},
"/q/11544364/424459": {
"postId": 11544364,
"postTitle": "Strange srand behaviour inside for loop; c++",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 03:40:21Z"
},
"/q/11536823/424459": {
"postId": 11536823,
"postTitle": "String as function argument: how to work with the memory?",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 03:39:34Z"
},
"/q/11551521/424459": {
"postId": 11551521,
"postTitle": "Unmanaged C++ - need strong name to be referenced by C++/CLI dll with strong name?",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 03:38:51Z"
},
"/q/11549368/424459": {
"postId": 11549368,
"postTitle": "Ensure unique input is entered and stored in an array",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 03:38:22Z"
},
"/q/11535621/937870": {
"postId": 11535621,
"postTitle": "How we get x and y from the transfrom matrix? [closed]",
"userId": 937870,
"userName": "David Alber",
"action": "Close",
"datetime": "2012-07-19 03:15:54Z"
},
"/q/11422797/937870": {
"postId": 11422797,
"postTitle": "Facebook get users that like our business page",
"userId": 937870,
"userName": "David Alber",
"action": "Close",
"datetime": "2012-07-19 03:14:57Z"
},
"/q/11516440/937870": {
"postId": 11516440,
"postTitle": "Lib not found error in tesseract [closed]",
"userId": 937870,
"userName": "David Alber",
"action": "Do Not Close",
"datetime": "2012-07-19 03:10:11Z"
},
"/q/11540354/612429": {
"postId": 11540354,
"postTitle": "Getting all tangled up in json_encode/json_parse and escaping",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 03:06:04Z"
},
"/q/11543673/612429": {
"postId": 11543673,
"postTitle": "Good real-world examples for coding common ajax/javascript web pages [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 03:05:54Z"
},
"/q/11545769/612429": {
"postId": 11545769,
"postTitle": "What to use instead of Google Transliterate API",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 03:05:42Z"
},
"/q/11553314/612429": {
"postId": 11553314,
"postTitle": "what does javascript someValue || {} mean? [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 03:05:32Z"
},
"/q/11549281/612429": {
"postId": 11549281,
"postTitle": "jQuery each() breaking on null",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 03:05:22Z"
},
"/q/11546429/612429": {
"postId": 11546429,
"postTitle": "linked list multiply [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 03:04:48Z"
},
"/q/11552341/612429": {
"postId": 11552341,
"postTitle": "Unable to line up 2 objects in the same line [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 03:04:26Z"
},
"/q/11552787/612429": {
"postId": 11552787,
"postTitle": "Does vector in ARGV mean one-dimensional array? [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-19 03:04:17Z"
},
"/q/11550026/612429": {
"postId": 11550026,
"postTitle": "Utility for communicating with a database over an ODBC driver in Linux shell",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-19 03:04:00Z"
},
"/q/11538266/612429": {
"postId": 11538266,
"postTitle": "Function call with a variable number of parameters? [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 03:03:43Z"
},
"/q/11527386/612429": {
"postId": 11527386,
"postTitle": "How do I remove the blank line from element generated via XML?",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-19 03:02:56Z"
},
"/q/11505532/612429": {
"postId": 11505532,
"postTitle": "Installing Python imaging libary (PIL) on Ubuntu",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-19 03:02:36Z"
},
"/q/11549719/612429": {
"postId": 11549719,
"postTitle": "Pulling out GET data from URL using JS/Jquery",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 03:02:29Z"
},
"/q/11545649/612429": {
"postId": 11545649,
"postTitle": "Background link (on ALL the background!)",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 03:01:59Z"
},
"/q/11547755/612429": {
"postId": 11547755,
"postTitle": "revealing module pattern and timeout",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-19 03:01:22Z"
},
"/q/4601446/612429": {
"postId": 4601446,
"postTitle": "Write a program to enter a string and count number of character and number of word [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 03:01:06Z"
},
"/q/11535777/612429": {
"postId": 11535777,
"postTitle": "What does cross domain mean and where does JSONP stand in this context?",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 03:00:52Z"
},
"/q/11547835/612429": {
"postId": 11547835,
"postTitle": "Code for dropdown menu selection to preview image - for online store? [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 03:00:35Z"
},
"/q/11530826/612429": {
"postId": 11530826,
"postTitle": "HTML Content Width [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 03:00:16Z"
},
"/q/11538379/612429": {
"postId": 11538379,
"postTitle": "Breadcrumb active link css",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 03:00:03Z"
},
"/q/11526412/612429": {
"postId": 11526412,
"postTitle": "If user is browsing with Chrome, open a separate page or automatically close the window",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-19 02:59:47Z"
},
"/q/11534273/612429": {
"postId": 11534273,
"postTitle": "Python: Using sum() on a list of ints",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-19 02:59:36Z"
},
"/q/11550242/612429": {
"postId": 11550242,
"postTitle": "Open source or written PCI Image software similar to QUARTZ PCI?",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:59:20Z"
},
"/q/10331908/612429": {
"postId": 10331908,
"postTitle": "jQuery: How to determine the index of <li> element in an unordered list when clicked?",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:58:56Z"
},
"/q/11550369/612429": {
"postId": 11550369,
"postTitle": "Save cookies with javascript how to specify domain?",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:58:38Z"
},
"/q/11545563/612429": {
"postId": 11545563,
"postTitle": "Program that saves user information to an ecrypted file",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-19 02:58:13Z"
},
"/q/11546457/612429": {
"postId": 11546457,
"postTitle": "How to draw image in javascript over the dynamic image",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-19 02:58:01Z"
},
"/q/11544799/612429": {
"postId": 11544799,
"postTitle": "jQuery return $.post callback through parent function [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:57:54Z"
},
"/q/11540378/612429": {
"postId": 11540378,
"postTitle": "CSS rounded borders in Firefox",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:57:33Z"
},
"/q/11544424/612429": {
"postId": 11544424,
"postTitle": "Fancybox into area shape",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:57:16Z"
},
"/q/11534096/612429": {
"postId": 11534096,
"postTitle": "calculating end date from start date in jquery",
"userId": 612429,
"userName": "Kay",
"action": "Edit",
"datetime": "2012-07-19 02:56:46Z"
},
"/q/11539525/612429": {
"postId": 11539525,
"postTitle": "Add hidden values inside an <select> tag",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:56:20Z"
},
"/q/11551088/612429": {
"postId": 11551088,
"postTitle": "Why does my jsfiddle work but not my web site? [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:56:00Z"
},
"/q/11533318/612429": {
"postId": 11533318,
"postTitle": "Save a vector in txt file [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-19 02:55:52Z"
},
"/q/11538550/612429": {
"postId": 11538550,
"postTitle": "Retrieving outlook Contacts via python",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:55:36Z"
},
"/q/11537322/612429": {
"postId": 11537322,
"postTitle": "Tools for generating reports on cross browser compatiblity",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:55:08Z"
},
"/q/11535547/612429": {
"postId": 11535547,
"postTitle": "Need reference links for “[1:]” notation [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:54:56Z"
},
"/q/11446467/612429": {
"postId": 11446467,
"postTitle": "What are best tools for creating web layout? [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:54:33Z"
},
"/q/11483723/612429": {
"postId": 11483723,
"postTitle": "Segfault calling virtual method on initialized object",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:54:14Z"
},
"/q/11534968/612429": {
"postId": 11534968,
"postTitle": "How to access javascript function html page arguments?",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:54:06Z"
},
"/q/11548972/1400768": {
"postId": 11548972,
"postTitle": "Is there a tool to parse C++ that enforces documentation",
"userId": 1400768,
"userName": "nhahtdh",
"action": "Do Not Close",
"datetime": "2012-07-19 02:53:41Z"
},
"/q/11550994/612429": {
"postId": 11550994,
"postTitle": "Convert time to unix time [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:53:39Z"
},
"/q/11550790/612429": {
"postId": 11550790,
"postTitle": "remove hostname and port from url using regular expression",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-19 02:53:22Z"
},
"/q/11022118/612429": {
"postId": 11022118,
"postTitle": "Event handler method of object",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-19 02:53:09Z"
},
"/q/11532131/612429": {
"postId": 11532131,
"postTitle": "Python Not Running Code [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:52:59Z"
},
"/q/11547699/612429": {
"postId": 11547699,
"postTitle": "How to make calculations with javascript or jQuery, grabbing values from various different elements?",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:52:37Z"
},
"/q/11548724/612429": {
"postId": 11548724,
"postTitle": "Pygame program will not work [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:52:23Z"
},
"/q/11522227/612429": {
"postId": 11522227,
"postTitle": "How to get the image width and height using Javascript?",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-19 02:52:08Z"
},
"/q/11548778/612429": {
"postId": 11548778,
"postTitle": "C++ How are pure-virtual methods called for base-class-casted objects? [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-19 02:52:01Z"
},
"/q/11541576/612429": {
"postId": 11541576,
"postTitle": "How to delete duplicate values in a list? [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:51:38Z"
},
"/q/11547305/612429": {
"postId": 11547305,
"postTitle": "Qt/C++ Give pointer to another constructor",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-19 02:51:25Z"
},
"/q/11539307/612429": {
"postId": 11539307,
"postTitle": "Which option to select to use sql in C++ [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:51:01Z"
},
"/q/11537740/612429": {
"postId": 11537740,
"postTitle": "Printing more HTML pages (different URLs) by one click [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:50:45Z"
},
"/q/11524336/612429": {
"postId": 11524336,
"postTitle": "Regex for the following string I'd like to split: 1.5 cc or 1.5cc",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-19 02:50:29Z"
},
"/q/11517319/612429": {
"postId": 11517319,
"postTitle": "Call DLL methods from Javascript",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-19 02:49:59Z"
},
"/q/11544714/612429": {
"postId": 11544714,
"postTitle": "Why does PHP send it all at once? [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:49:31Z"
},
"/q/11552852/612429": {
"postId": 11552852,
"postTitle": "regex to disallow ._ or .- (email validation / javascript)",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-19 02:49:16Z"
},
"/q/11540610/612429": {
"postId": 11540610,
"postTitle": "LSP source example [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:48:39Z"
},
"/q/11535388/612429": {
"postId": 11535388,
"postTitle": "Understanding 'most vexing parse' - why allow ambiguous syntax?",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-19 02:48:27Z"
},
"/q/11530792/612429": {
"postId": 11530792,
"postTitle": "wrong indentation of multi-line python statement in emacs",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-19 02:48:09Z"
},
"/q/11534422/612429": {
"postId": 11534422,
"postTitle": "Custom CSS input box causing page to refresh on ENTER key [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:48:01Z"
},
"/q/11552100/612429": {
"postId": 11552100,
"postTitle": "why do I need glut.h, glut32.lib, glut32.dll ALL to compile an openGL program?",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-19 02:47:41Z"
},
"/q/11548274/612429": {
"postId": 11548274,
"postTitle": "Image getting cut off in IE",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:47:02Z"
},
"/q/11528807/612429": {
"postId": 11528807,
"postTitle": "Implementing CSS variables in HTML page",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-19 02:46:54Z"
},
"/q/11546814/612429": {
"postId": 11546814,
"postTitle": "In C++ how can I calculate all possible Bezier handle points in order to make the curve to a given length?",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-19 02:46:38Z"
},
"/q/11534258/612429": {
"postId": 11534258,
"postTitle": "Need Sample Code to display more than one widget(widget size is equal to frame) in Fixed Size Frame using Scroll Bar in QT",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:46:22Z"
},
"/q/11534384/612429": {
"postId": 11534384,
"postTitle": "THREE.js additive blend effect on scene [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:46:07Z"
},
"/q/11548136/612429": {
"postId": 11548136,
"postTitle": "Two tabs and a common menu bar [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:45:57Z"
},
"/q/11537028/612429": {
"postId": 11537028,
"postTitle": "Any good alternatives to jsFiddle site? [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:45:49Z"
},
"/q/11550207/612429": {
"postId": 11550207,
"postTitle": "Is decremental for loop more efficient than incremental? [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:45:19Z"
},
"/q/11547296/612429": {
"postId": 11547296,
"postTitle": "add a new row in a table using jQuery [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:45:05Z"
},
"/q/11550509/612429": {
"postId": 11550509,
"postTitle": "jQuery syntax: # symbol [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:44:52Z"
},
"/q/11539971/612429": {
"postId": 11539971,
"postTitle": "Overwrite import, show names of modules importing a module [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:44:24Z"
},
"/q/11545960/612429": {
"postId": 11545960,
"postTitle": "Sort Elements of javascript [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:42:40Z"
},
"/q/11544134/612429": {
"postId": 11544134,
"postTitle": "Is the Regex right against what am I trying to do?",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-19 02:42:12Z"
},
"/q/11537163/612429": {
"postId": 11537163,
"postTitle": "Redirect when video finished [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-19 02:41:56Z"
},
"/q/11542742/798448": {
"postId": 11542742,
"postTitle": "JavaScript Library for opening Excel Files on the Web [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 02:09:23Z"
},
"/q/11520504/798448": {
"postId": 11520504,
"postTitle": "query different in java that in mysql [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 02:09:02Z"
},
"/q/11541454/424459": {
"postId": 11541454,
"postTitle": "Issues with Python thread pool",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 02:08:41Z"
},
"/q/11543273/424459": {
"postId": 11543273,
"postTitle": "Dispatch maps-DISP_PROPERTY_EX(theClass, pszName, memberGet, memberSet, vtPropType ); make memberGet return? [closed]",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 02:08:23Z"
},
"/q/11530273/798448": {
"postId": 11530273,
"postTitle": "Learning NodeJS [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 02:08:23Z"
},
"/q/11519805/798448": {
"postId": 11519805,
"postTitle": "How to run command [migrated]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 02:08:09Z"
},
"/q/11535468/424459": {
"postId": 11535468,
"postTitle": "Undefined reference to 'vtable for B'",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 02:07:48Z"
},
"/q/11534236/798448": {
"postId": 11534236,
"postTitle": "how to add random bg color in same div name but different bg color each div with jquery? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 02:07:27Z"
},
"/q/11523380/424459": {
"postId": 11523380,
"postTitle": "Where is a PHP function located in? (as in which file) [closed]",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 02:06:54Z"
},
"/q/11519617/798448": {
"postId": 11519617,
"postTitle": "UnsupportedClassVersionError in upgrading from jdk6 to 7 [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 02:06:20Z"
},
"/q/11546265/424459": {
"postId": 11546265,
"postTitle": "Visual Designer for native Win32 Apps",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 02:06:14Z"
},
"/q/11544073/424459": {
"postId": 11544073,
"postTitle": "How do I deal with the `max` macro in windows.h colliding with `max` in `std`?",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 02:05:47Z"
},
"/q/11532950/798448": {
"postId": 11532950,
"postTitle": "Retrieving elements with a made-up CSS attribute [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 02:05:41Z"
},
"/q/11516188/798448": {
"postId": 11516188,
"postTitle": "How to customize php built-in web server [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 02:05:31Z"
},
"/q/11526170/424459": {
"postId": 11526170,
"postTitle": "Windows Forms designer doesn't load due to error in code it generated: Do I 'Ignore and Continue' or edit the code marked 'Do not modify'?",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 02:05:28Z"
},
"/q/3421499/798448": {
"postId": 3421499,
"postTitle": "STRING palindrome [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 02:04:55Z"
},
"/q/10522760/424459": {
"postId": 10522760,
"postTitle": "Does C++ have an API Specification? [closed]",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 02:04:51Z"
},
"/q/11510456/798448": {
"postId": 11510456,
"postTitle": "Examples of Sinatra + Postgres + Activerecord apps [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 02:04:48Z"
},
"/q/11508682/798448": {
"postId": 11508682,
"postTitle": "mapping Google Apps to Appengine error 1000 [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 02:04:24Z"
},
"/q/11536384/424459": {
"postId": 11536384,
"postTitle": "how to check memory permission from core dump",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 02:04:05Z"
},
"/q/10064190/798448": {
"postId": 10064190,
"postTitle": "Making a pattern finger GUI in android [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 02:03:59Z"
},
"/q/11533232/424459": {
"postId": 11533232,
"postTitle": "How to work simultaneously with 2-3 users on the same project?",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 02:03:47Z"
},
"/q/11500681/798448": {
"postId": 11500681,
"postTitle": "How to create another controller instance in view.Yii Framework [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 02:03:13Z"
},
"/q/11527088/424459": {
"postId": 11527088,
"postTitle": "Use .def or __declspec(dllexport) to export shared library symbols for cross-platform code?",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 02:02:31Z"
},
"/q/10496736/424459": {
"postId": 10496736,
"postTitle": ".xap installer for windows xp system",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 02:01:46Z"
},
"/q/11516918/798448": {
"postId": 11516918,
"postTitle": "Casting C# delegates [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 02:01:45Z"
},
"/q/11522376/798448": {
"postId": 11522376,
"postTitle": "Masonry.js issue with the container [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 02:00:23Z"
},
"/q/27779/424459": {
"postId": 27779,
"postTitle": "MFC resources / links",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 02:00:23Z"
},
"/q/11537812/798448": {
"postId": 11537812,
"postTitle": "Download and Install PHP and Configure Apache for PHP support [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 02:00:04Z"
},
"/q/6161665/424459": {
"postId": 6161665,
"postTitle": "Proper usage - accessors/getters vs normal methods",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 01:59:58Z"
},
"/q/11522244/798448": {
"postId": 11522244,
"postTitle": "Having an overloaded operator<< compiler cannot find it [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 01:59:48Z"
},
"/q/11498493/798448": {
"postId": 11498493,
"postTitle": "HTML file showing an image [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 01:59:34Z"
},
"/q/11544415/424459": {
"postId": 11544415,
"postTitle": "Got garbage while char * puting to cout",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 01:59:08Z"
},
"/q/11491733/798448": {
"postId": 11491733,
"postTitle": "Argument list too long awk - Due to huge data stored [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 01:58:54Z"
},
"/q/11540290/798448": {
"postId": 11540290,
"postTitle": "How can I stop the automatic string to number conversion in perl? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 01:58:37Z"
},
"/q/11496965/798448": {
"postId": 11496965,
"postTitle": "what happens to database data after you change a domain class in groovy [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 01:58:01Z"
},
"/q/450285/798448": {
"postId": 450285,
"postTitle": "Executing command line programs from within python [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 01:57:13Z"
},
"/q/11542171/798448": {
"postId": 11542171,
"postTitle": "CA2000 : Microsoft.Reliability [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 01:54:08Z"
},
"/q/11551813/798448": {
"postId": 11551813,
"postTitle": "Procedural Programming and data exposure",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Do Not Close",
"datetime": "2012-07-19 01:53:44Z"
},
"/q/11544934/203570": {
"postId": 11544934,
"postTitle": "C# string to var data type [closed]",
"userId": 203570,
"userName": "Matthew Ferreira",
"action": "Close",
"datetime": "2012-07-19 01:53:44Z"
},
"/q/11524052/203570": {
"postId": 11524052,
"postTitle": "Auto Map reference not found C# [closed]",
"userId": 203570,
"userName": "Matthew Ferreira",
"action": "Close",
"datetime": "2012-07-19 01:53:02Z"
},
"/q/11527386/203570": {
"postId": 11527386,
"postTitle": "How do I remove the blank line from element generated via XML?",
"userId": 203570,
"userName": "Matthew Ferreira",
"action": "Close",
"datetime": "2012-07-19 01:52:41Z"
},
"/q/11546576/798448": {
"postId": 11546576,
"postTitle": "Regular Expressions for different languages [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 01:52:27Z"
},
"/q/11526772/798448": {
"postId": 11526772,
"postTitle": "Android build process [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 01:52:04Z"
},
"/q/11493042/798448": {
"postId": 11493042,
"postTitle": "nautilus not working [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 01:51:34Z"
},
"/q/11549615/798448": {
"postId": 11549615,
"postTitle": "Should Propel be the “model” part of MVC? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 01:49:38Z"
},
"/q/11535559/798448": {
"postId": 11535559,
"postTitle": "How to convert Joomla 2.5 plugins to 1.5 [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 01:49:03Z"
},
"/q/11528660/798448": {
"postId": 11528660,
"postTitle": "value of private static final changes [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 01:48:47Z"
},
"/q/11548999/798448": {
"postId": 11548999,
"postTitle": "Can ultrabook with intel i processors run OS X Mountain Lion in Virtual Machine [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 01:48:02Z"
},
"/q/11517667/798448": {
"postId": 11517667,
"postTitle": "Date validator in Asp.net [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 01:47:54Z"
},
"/q/11526263/424459": {
"postId": 11526263,
"postTitle": "Strange optimization of initialization",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 01:34:27Z"
},
"/q/10816600/424459": {
"postId": 10816600,
"postTitle": "C++: namespaces: how to use in header and source files correctly?",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 01:34:02Z"
},
"/q/11535579/424459": {
"postId": 11535579,
"postTitle": "Loading a Directory into a Tree Control",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 01:33:44Z"
},
"/q/11545563/424459": {
"postId": 11545563,
"postTitle": "Program that saves user information to an ecrypted file",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 01:33:18Z"
},
"/q/11529351/424459": {
"postId": 11529351,
"postTitle": "Which is the best way to check a bit array in Cuda?",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 01:32:04Z"
},
"/q/11549727/424459": {
"postId": 11549727,
"postTitle": "Array Pointer in C++",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 01:31:52Z"
},
"/q/11512705/798448": {
"postId": 11512705,
"postTitle": "Print false in php [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 01:30:00Z"
},
"/q/11518908/798448": {
"postId": 11518908,
"postTitle": "How to show if a user's friend already using a portal using facebook PHP SDK [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 01:26:33Z"
},
"/q/11528684/798448": {
"postId": 11528684,
"postTitle": "C++ pthread member function [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 01:23:57Z"
},
"/q/11548792/1241690": {
"postId": 11548792,
"postTitle": "Does simple windows forms work on windows 8 and windows 8 tablets?",
"userId": 1241690,
"userName": "Halley",
"action": "Do Not Close",
"datetime": "2012-07-19 01:23:26Z"
},
"/q/11524539/798448": {
"postId": 11524539,
"postTitle": "Target :after whilst using $(this) [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 01:22:53Z"
},
"/q/11531887/1241690": {
"postId": 11531887,
"postTitle": "How to open new form with progress bar and OK button?",
"userId": 1241690,
"userName": "Halley",
"action": "Do Not Close",
"datetime": "2012-07-19 01:22:19Z"
},
"/q/11549358/1241690": {
"postId": 11549358,
"postTitle": "Implement a Google Map using APIv3 [closed]",
"userId": 1241690,
"userName": "Halley",
"action": "Close",
"datetime": "2012-07-19 01:20:51Z"
},
"/q/10376632/1241690": {
"postId": 10376632,
"postTitle": "How to multiply to (n) number of funcations using for loop? [closed]",
"userId": 1241690,
"userName": "Halley",
"action": "Close",
"datetime": "2012-07-19 01:20:24Z"
},
"/q/11552436/1241690": {
"postId": 11552436,
"postTitle": "Where is NSUserDefaults saved during development?",
"userId": 1241690,
"userName": "Halley",
"action": "Do Not Close",
"datetime": "2012-07-19 01:19:46Z"
},
"/q/11523641/1241690": {
"postId": 11523641,
"postTitle": "embed a DLL into a console application [closed]",
"userId": 1241690,
"userName": "Halley",
"action": "Close",
"datetime": "2012-07-19 01:18:51Z"
},
"/q/11521343/798448": {
"postId": 11521343,
"postTitle": "How to get twitter like url appended string i.e. twitter inc? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 01:18:15Z"
},
"/q/11544812/798448": {
"postId": 11544812,
"postTitle": "VarToDateAsString return unexpected result [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 01:17:04Z"
},
"/q/11549290/798448": {
"postId": 11549290,
"postTitle": "Simply traversing through an array [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 01:13:36Z"
},
"/q/11534992/798448": {
"postId": 11534992,
"postTitle": "Anchor tag is not working properly [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 01:13:12Z"
},
"/q/11517226/798448": {
"postId": 11517226,
"postTitle": "handsontable: inserting data using ajax [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 01:11:00Z"
},
"/q/11528684/424459": {
"postId": 11528684,
"postTitle": "C++ pthread member function [closed]",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 01:09:45Z"
},
"/q/11551527/798448": {
"postId": 11551527,
"postTitle": "Can I install git on a shared hosting server? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 01:09:34Z"
},
"/q/11546776/424459": {
"postId": 11546776,
"postTitle": "How can I make eclipse CDT ignore errors?",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-19 01:09:08Z"
},
"/q/11542192/798448": {
"postId": 11542192,
"postTitle": "Override function in JavaScript [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 01:09:00Z"
},
"/q/11542106/798448": {
"postId": 11542106,
"postTitle": "<!— in a <style> declaration - What are it's different uses and meanings? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 01:08:51Z"
},
"/q/11550207/424459": {
"postId": 11550207,
"postTitle": "Is decremental for loop more efficient than incremental? [closed]",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 01:07:14Z"
},
"/q/11534258/424459": {
"postId": 11534258,
"postTitle": "Need Sample Code to display more than one widget(widget size is equal to frame) in Fixed Size Frame using Scroll Bar in QT",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-19 01:06:37Z"
},
"/q/11530095/798448": {
"postId": 11530095,
"postTitle": "How I run flash video on android? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 01:06:24Z"
},
"/q/11548143/798448": {
"postId": 11548143,
"postTitle": "Use of Pointers in Objective-C [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 01:03:25Z"
},
"/q/11546649/90527": {
"postId": 11546649,
"postTitle": "Using doubleclick to catch x,y coordinates outside of a form C#",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-19 00:57:48Z"
},
"/q/11552149/798448": {
"postId": 11552149,
"postTitle": "Can I load my #define into an NSString? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 00:57:37Z"
},
"/q/11526872/90527": {
"postId": 11526872,
"postTitle": "How to check if the iPhone is connected to the internet? (for Dropbox use)",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-19 00:57:28Z"
},
"/q/11535669/798448": {
"postId": 11535669,
"postTitle": "trouble in making the if stament work with the math [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 00:57:15Z"
},
"/q/11546257/798448": {
"postId": 11546257,
"postTitle": "where to store “global” objects in iOS [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-19 00:57:00Z"
},
"/q/4601446/90527": {
"postId": 4601446,
"postTitle": "Write a program to enter a string and count number of character and number of word [closed]",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-19 00:56:59Z"
},
"/q/11550666/90527": {
"postId": 11550666,
"postTitle": "How to save image to hard disk without opening in new window",
"userId": 90527,
"userName": "outis",
"action": "Edit",
"datetime": "2012-07-19 00:56:31Z"
},
"/q/11546534/119527": {
"postId": 11546534,
"postTitle": "ASP.NET MVC: Best C# method of building a Json ActionResult",
"userId": 119527,
"userName": "Jonathon Reinhart",
"action": "Do Not Close",
"datetime": "2012-07-19 00:48:45Z"
},
"/q/11536698/119527": {
"postId": 11536698,
"postTitle": "How to use Facebook PHP SDK with Heroku? [closed]",
"userId": 119527,
"userName": "Jonathon Reinhart",
"action": "Close",
"datetime": "2012-07-19 00:48:25Z"
},
"/q/11551509/119527": {
"postId": 11551509,
"postTitle": "Quick benchmark from the command line",
"userId": 119527,
"userName": "Jonathon Reinhart",
"action": "Do Not Close",
"datetime": "2012-07-19 00:48:19Z"
},
"/q/11540760/119527": {
"postId": 11540760,
"postTitle": "how can i send form values to MYSQL database using php [closed]",
"userId": 119527,
"userName": "Jonathon Reinhart",
"action": "Close",
"datetime": "2012-07-19 00:46:56Z"
},
"/q/8913998/119527": {
"postId": 8913998,
"postTitle": "Reading a C# byte array in Java",
"userId": 119527,
"userName": "Jonathon Reinhart",
"action": "Do Not Close",
"datetime": "2012-07-19 00:46:40Z"
},
"/q/11529478/90527": {
"postId": 11529478,
"postTitle": "FourSquare: Where should I store my client secret?",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-19 00:44:49Z"
},
"/q/11533204/90527": {
"postId": 11533204,
"postTitle": "iOS Search Results Order",
"userId": 90527,
"userName": "outis",
"action": "Do Not Close",
"datetime": "2012-07-19 00:44:37Z"
},
"/q/5376559/90527": {
"postId": 5376559,
"postTitle": "Is Perl a compiled or an interpreted programming language?",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-19 00:43:01Z"
},
"/q/11522443/90527": {
"postId": 11522443,
"postTitle": "Connecting to a Remote Oracle Database using Python",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-19 00:42:40Z"
},
"/q/11539025/90527": {
"postId": 11539025,
"postTitle": "How to get cisco each ethernet port's arp flow use snmp?",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-19 00:42:25Z"
},
"/q/11536268/90527": {
"postId": 11536268,
"postTitle": "Rails bundle install error",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-19 00:42:04Z"
},
"/q/11532468/90527": {
"postId": 11532468,
"postTitle": "HackerGuardian - Comodo [closed]",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-19 00:41:01Z"
},
"/q/4744439/646382": {
"postId": 4744439,
"postTitle": "How to play video using phonon [closed]",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-19 00:25:34Z"
},
"/q/11542960/646382": {
"postId": 11542960,
"postTitle": "Main Difference Between 3-tire & n-tire Architecture in .NET?",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-19 00:25:22Z"
},
"/q/11523844/646382": {
"postId": 11523844,
"postTitle": "802.11 FCS (CRC32) [closed]",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-19 00:24:58Z"
},
"/q/11548373/646382": {
"postId": 11548373,
"postTitle": "What can I do in C# 5 with .Net 4.5 that I couldn't do in C# 4 with .Net 4? [closed]",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-19 00:24:36Z"
},
"/q/11530930/646382": {
"postId": 11530930,
"postTitle": "How to copy a file on linux from a c program exactly",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-19 00:24:25Z"
},
"/q/5337558/646382": {
"postId": 5337558,
"postTitle": "Office 2010 Add-in deployment",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-19 00:24:09Z"
},
"/q/11478763/646382": {
"postId": 11478763,
"postTitle": "Face recognition in offline videos",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-19 00:23:52Z"
},
"/q/127009/646382": {
"postId": 127009,
"postTitle": "Returning an 'any kind of input iterator' instead of a vector::iterator or a list::iterator",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-19 00:23:38Z"
},
"/q/11526314/646382": {
"postId": 11526314,
"postTitle": "How to do simplify and normalize logic expression using clojure.core.logic?",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-19 00:23:05Z"
},
"/q/11538811/646382": {
"postId": 11538811,
"postTitle": "How can I avoid running into false part in IIF?",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-19 00:22:46Z"
},
"/q/10816600/646382": {
"postId": 10816600,
"postTitle": "C++: namespaces: how to use in header and source files correctly?",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-19 00:22:29Z"
},
"/q/11542171/646382": {
"postId": 11542171,
"postTitle": "CA2000 : Microsoft.Reliability [closed]",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-19 00:21:47Z"
},
"/q/11542302/646382": {
"postId": 11542302,
"postTitle": "built a soap client for this web services in C#",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-19 00:21:14Z"
},
"/q/11534992/646382": {
"postId": 11534992,
"postTitle": "Anchor tag is not working properly [closed]",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-19 00:20:51Z"
},
"/q/11529712/1114": {
"postId": 11529712,
"postTitle": "Prevent browsers from auto-filling form fields",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Do Not Close",
"datetime": "2012-07-19 00:11:12Z"
},
"/q/11535621/16800": {
"postId": 11535621,
"postTitle": "How we get x and y from the transfrom matrix? [closed]",
"userId": 16800,
"userName": "Guvante",
"action": "Close",
"datetime": "2012-07-19 00:01:16Z"
},
"/q/11544630/16800": {
"postId": 11544630,
"postTitle": "Refreshing listview automatically when a new process enters",
"userId": 16800,
"userName": "Guvante",
"action": "Do Not Close",
"datetime": "2012-07-19 00:00:00Z"
},
"/q/11542171/16800": {
"postId": 11542171,
"postTitle": "CA2000 : Microsoft.Reliability [closed]",
"userId": 16800,
"userName": "Guvante",
"action": "Close",
"datetime": "2012-07-18 23:59:21Z"
},
"/q/11544656/167586": {
"postId": 11544656,
"postTitle": "Arm cortex m3 [lm3s2965]",
"userId": 167586,
"userName": "Matt S.",
"action": "Close",
"datetime": "2012-07-18 23:57:46Z"
},
"/q/7801692/167586": {
"postId": 7801692,
"postTitle": "Excel VLOOKUP Function",
"userId": 167586,
"userName": "Matt S.",
"action": "Close",
"datetime": "2012-07-18 23:57:32Z"
},
"/q/11528810/165839": {
"postId": 11528810,
"postTitle": "one form inside a content page is not accessible to css stylesheet but other form is doing well, why? [closed]",
"userId": 165839,
"userName": "Daveo",
"action": "Close",
"datetime": "2012-07-18 23:51:16Z"
},
"/q/11548724/1114": {
"postId": 11548724,
"postTitle": "Pygame program will not work [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 23:11:20Z"
},
"/q/11550861/1114": {
"postId": 11550861,
"postTitle": "CSS: I need some basic layouting tips [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 23:10:17Z"
},
"/q/11549428/1114": {
"postId": 11549428,
"postTitle": "Div transition triggered by a tags",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 23:10:08Z"
},
"/q/11542814/1114": {
"postId": 11542814,
"postTitle": "JavaScript variable with global scope [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 23:08:07Z"
},
"/q/11543673/1114": {
"postId": 11543673,
"postTitle": "Good real-world examples for coding common ajax/javascript web pages [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 23:07:07Z"
},
"/q/11541454/1114": {
"postId": 11541454,
"postTitle": "Issues with Python thread pool",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 23:06:33Z"
},
"/q/11551073/1114": {
"postId": 11551073,
"postTitle": "can someone suggest a similar service to parse [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 23:05:59Z"
},
"/q/11550242/1114": {
"postId": 11550242,
"postTitle": "Open source or written PCI Image software similar to QUARTZ PCI?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 23:05:47Z"
},
"/q/11534957/1114": {
"postId": 11534957,
"postTitle": "IE Restrict JavaScript third party domain access other than *.currentwebsite.com",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 23:05:29Z"
},
"/q/11537810/1114": {
"postId": 11537810,
"postTitle": "checking if internet is active using jquery",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 23:05:09Z"
},
"/q/11539971/1114": {
"postId": 11539971,
"postTitle": "Overwrite import, show names of modules importing a module [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 23:04:01Z"
},
"/q/11520655/1114": {
"postId": 11520655,
"postTitle": "Is there any javascript or js framework which can be used to convert column to rows and rows to columns in html table or div grids?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Do Not Close",
"datetime": "2012-07-18 23:03:05Z"
},
"/q/11534422/1114": {
"postId": 11534422,
"postTitle": "Custom CSS input box causing page to refresh on ENTER key [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 23:01:54Z"
},
"/q/11516581/1114": {
"postId": 11516581,
"postTitle": "how to extract data from log file in perl",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 23:01:15Z"
},
"/q/11542106/1114": {
"postId": 11542106,
"postTitle": "<!— in a <style> declaration - What are it's different uses and meanings? [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 22:59:26Z"
},
"/q/11534555/1114": {
"postId": 11534555,
"postTitle": "How to simplify this javascript [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 22:57:34Z"
},
"/q/11544799/1114": {
"postId": 11544799,
"postTitle": "jQuery return $.post callback through parent function [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 22:57:17Z"
},
"/q/11534236/1114": {
"postId": 11534236,
"postTitle": "how to add random bg color in same div name but different bg color each div with jquery? [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 22:56:35Z"
},
"/q/11544544/1114": {
"postId": 11544544,
"postTitle": "How to build a multi level javascript drop down nav with auto positioning [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 22:55:51Z"
},
"/q/11537914/1114": {
"postId": 11537914,
"postTitle": "jQuery get information from url",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Do Not Close",
"datetime": "2012-07-18 22:55:29Z"
},
"/q/11551478/1114": {
"postId": 11551478,
"postTitle": "Website in IE looks disastrous. [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 22:55:01Z"
},
"/q/11536537/1114": {
"postId": 11536537,
"postTitle": "How can I create alike css classes [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 22:54:57Z"
},
"/q/2054520/1114": {
"postId": 2054520,
"postTitle": "It is recommendable to type the color's name instead of its hex value in CSS?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Do Not Close",
"datetime": "2012-07-18 22:53:43Z"
},
"/q/11537163/1114": {
"postId": 11537163,
"postTitle": "Redirect when video finished [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 22:53:28Z"
},
"/q/11534384/1114": {
"postId": 11534384,
"postTitle": "THREE.js additive blend effect on scene [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 22:52:37Z"
},
"/q/11528443/1114": {
"postId": 11528443,
"postTitle": "Is there any event that fires right before the browser request another resource such as image?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Do Not Close",
"datetime": "2012-07-18 22:52:15Z"
},
"/q/11547734/1114": {
"postId": 11547734,
"postTitle": "Is it possible to see the inherited background color of a div?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Do Not Close",
"datetime": "2012-07-18 22:51:28Z"
},
"/q/11536756/1114": {
"postId": 11536756,
"postTitle": "Facebook backend authentication [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 22:50:46Z"
},
"/q/11542491/1114": {
"postId": 11542491,
"postTitle": "compiling problems with latex and embedded python code [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 22:49:20Z"
},
"/q/11523641/861716": {
"postId": 11523641,
"postTitle": "embed a DLL into a console application [closed]",
"userId": 861716,
"userName": "GertArnold",
"action": "Close",
"datetime": "2012-07-18 22:45:38Z"
},
"/q/11500217/1114": {
"postId": 11500217,
"postTitle": "In a spherical condition, given 3 points and their respective distances to a 4th point, how do a find its geolocation? [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 22:44:29Z"
},
"/q/11524452/1114": {
"postId": 11524452,
"postTitle": "Play a sound with javascript in background [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 22:42:12Z"
},
"/q/11499792/861716": {
"postId": 11499792,
"postTitle": "different names for different providers how to identify it as a common name",
"userId": 861716,
"userName": "GertArnold",
"action": "Close",
"datetime": "2012-07-18 22:35:13Z"
},
"/q/11536119/167586": {
"postId": 11536119,
"postTitle": "Need to Develop Ambigram App [closed]",
"userId": 167586,
"userName": "Matt S.",
"action": "Close",
"datetime": "2012-07-18 22:24:02Z"
},
"/q/11505532/135724": {
"postId": 11505532,
"postTitle": "Installing Python imaging libary (PIL) on Ubuntu",
"userId": 135724,
"userName": "earl",
"action": "Close",
"datetime": "2012-07-18 22:17:39Z"
},
"/q/11545960/124257": {
"postId": 11545960,
"postTitle": "Sort Elements of javascript [closed]",
"userId": 124257,
"userName": "x3ro",
"action": "Close",
"datetime": "2012-07-18 22:17:34Z"
},
"/q/11500217/124257": {
"postId": 11500217,
"postTitle": "In a spherical condition, given 3 points and their respective distances to a 4th point, how do a find its geolocation? [closed]",
"userId": 124257,
"userName": "x3ro",
"action": "Close",
"datetime": "2012-07-18 22:16:01Z"
},
"/q/11548136/124257": {
"postId": 11548136,
"postTitle": "Two tabs and a common menu bar [closed]",
"userId": 124257,
"userName": "x3ro",
"action": "Close",
"datetime": "2012-07-18 22:15:26Z"
},
"/q/11546504/124257": {
"postId": 11546504,
"postTitle": "how does if condition evaluates its value in javascript",
"userId": 124257,
"userName": "x3ro",
"action": "Close",
"datetime": "2012-07-18 22:14:50Z"
},
"/q/11532950/1114": {
"postId": 11532950,
"postTitle": "Retrieving elements with a made-up CSS attribute [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 22:13:52Z"
},
"/q/11530920/124257": {
"postId": 11530920,
"postTitle": "page appears differently without www subdomain in google chrome",
"userId": 124257,
"userName": "x3ro",
"action": "Close",
"datetime": "2012-07-18 22:13:27Z"
},
"/q/11550509/124257": {
"postId": 11550509,
"postTitle": "jQuery syntax: # symbol [closed]",
"userId": 124257,
"userName": "x3ro",
"action": "Close",
"datetime": "2012-07-18 22:12:19Z"
},
"/q/11534204/95": {
"postId": 11534204,
"postTitle": "C#- Help to query a DB continuously",
"userId": 95,
"userName": "Marek Grzenkowicz",
"action": "Close",
"datetime": "2012-07-18 22:08:25Z"
},
"/q/11538760/95": {
"postId": 11538760,
"postTitle": "Need to display latest facebook wall post in my wordpress site, any idea? [closed]",
"userId": 95,
"userName": "Marek Grzenkowicz",
"action": "Close",
"datetime": "2012-07-18 22:08:03Z"
},
"/q/11545347/95": {
"postId": 11545347,
"postTitle": "FreeBSD after upgrade [closed]",
"userId": 95,
"userName": "Marek Grzenkowicz",
"action": "Close",
"datetime": "2012-07-18 22:07:32Z"
},
"/q/11534422/124257": {
"postId": 11534422,
"postTitle": "Custom CSS input box causing page to refresh on ENTER key [closed]",
"userId": 124257,
"userName": "x3ro",
"action": "Close",
"datetime": "2012-07-18 22:07:22Z"
},
"/q/4256294/95": {
"postId": 4256294,
"postTitle": "ocr used to extract text from image by mobile camera?",
"userId": 95,
"userName": "Marek Grzenkowicz",
"action": "Close",
"datetime": "2012-07-18 22:07:00Z"
},
"/q/11543862/95": {
"postId": 11543862,
"postTitle": "Which edition of SQL Server express [migrated]",
"userId": 95,
"userName": "Marek Grzenkowicz",
"action": "Close",
"datetime": "2012-07-18 22:06:21Z"
},
"/q/11524539/124257": {
"postId": 11524539,
"postTitle": "Target :after whilst using $(this) [closed]",
"userId": 124257,
"userName": "x3ro",
"action": "Close",
"datetime": "2012-07-18 22:05:04Z"
},
"/q/11539995/30433": {
"postId": 11539995,
"postTitle": "raise button click at code behind using jquery [closed]",
"userId": 30433,
"userName": "Colin",
"action": "Close",
"datetime": "2012-07-18 21:54:25Z"
},
"/q/11520655/30433": {
"postId": 11520655,
"postTitle": "Is there any javascript or js framework which can be used to convert column to rows and rows to columns in html table or div grids?",
"userId": 30433,
"userName": "Colin",
"action": "Close",
"datetime": "2012-07-18 21:54:05Z"
},
"/q/11537813/1011995": {
"postId": 11537813,
"postTitle": "How do I find a substring in a string?",
"userId": 1011995,
"userName": "Daniel Fischer",
"action": "Close",
"datetime": "2012-07-18 21:50:49Z"
},
"/q/11546893/1011995": {
"postId": 11546893,
"postTitle": "More Efficient Way To Copy Data To Many Servers [closed]",
"userId": 1011995,
"userName": "Daniel Fischer",
"action": "Close",
"datetime": "2012-07-18 21:48:56Z"
},
"/q/11543680/1011995": {
"postId": 11543680,
"postTitle": "How to check, after publishing, the Visual studio license and version",
"userId": 1011995,
"userName": "Daniel Fischer",
"action": "Close",
"datetime": "2012-07-18 21:47:10Z"
},
"/q/3421499/1011995": {
"postId": 3421499,
"postTitle": "STRING palindrome [closed]",
"userId": 1011995,
"userName": "Daniel Fischer",
"action": "Close",
"datetime": "2012-07-18 21:45:13Z"
},
"/q/11533890/1011995": {
"postId": 11533890,
"postTitle": "Run a C/C++ application in Eclipse Runtime Workbench [closed]",
"userId": 1011995,
"userName": "Daniel Fischer",
"action": "Close",
"datetime": "2012-07-18 21:43:56Z"
},
"/q/11547241/1011995": {
"postId": 11547241,
"postTitle": "tableChange() executing when the JTable is refreshed",
"userId": 1011995,
"userName": "Daniel Fischer",
"action": "Close",
"datetime": "2012-07-18 21:43:20Z"
},
"/q/11550701/1011995": {
"postId": 11550701,
"postTitle": "Java style: Multiple variable assignment",
"userId": 1011995,
"userName": "Daniel Fischer",
"action": "Close",
"datetime": "2012-07-18 21:42:20Z"
},
"/q/8707355/541091": {
"postId": 8707355,
"postTitle": "Strtolower vs strtoupper [closed]",
"userId": 541091,
"userName": "Michael",
"action": "Close",
"datetime": "2012-07-18 21:39:04Z"
},
"/q/11550442/541091": {
"postId": 11550442,
"postTitle": "Printing complex strings in javascript without + symbol [closed]",
"userId": 541091,
"userName": "Michael",
"action": "Close",
"datetime": "2012-07-18 21:38:32Z"
},
"/q/11534236/541091": {
"postId": 11534236,
"postTitle": "how to add random bg color in same div name but different bg color each div with jquery? [closed]",
"userId": 541091,
"userName": "Michael",
"action": "Close",
"datetime": "2012-07-18 21:38:07Z"
},
"/q/11525930/541091": {
"postId": 11525930,
"postTitle": "Can you modify an existing mysql trigger after it has been created?",
"userId": 541091,
"userName": "Michael",
"action": "Close",
"datetime": "2012-07-18 21:37:36Z"
},
"/q/11543427/569101": {
"postId": 11543427,
"postTitle": "Create a dynamic select object in Javascript [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 21:21:14Z"
},
"/q/11524112/569101": {
"postId": 11524112,
"postTitle": "Issues with Java RE 1.7.0 on Windows server 2003 (32-bit) Terminal Services?",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 21:21:08Z"
},
"/q/11548038/569101": {
"postId": 11548038,
"postTitle": "Escaping quotation marks php and mysql [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 21:21:02Z"
},
"/q/11534090/569101": {
"postId": 11534090,
"postTitle": "Why do I really need to use a protocol [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 21:20:47Z"
},
"/q/11547686/569101": {
"postId": 11547686,
"postTitle": "How to find the most frequent word in a word stream? [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 21:19:56Z"
},
"/q/11517717/569101": {
"postId": 11517717,
"postTitle": "Where can I find the Asp.net MVC 3 SportsStore database download [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 21:19:46Z"
},
"/q/11524052/569101": {
"postId": 11524052,
"postTitle": "Auto Map reference not found C# [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 21:19:36Z"
},
"/q/11548931/644348": {
"postId": 11548931,
"postTitle": "How to call a method from another method in the same .m file [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 21:08:27Z"
},
"/q/11546257/644348": {
"postId": 11546257,
"postTitle": "where to store “global” objects in iOS [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 21:06:20Z"
},
"/q/11548143/644348": {
"postId": 11548143,
"postTitle": "Use of Pointers in Objective-C [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 21:04:14Z"
},
"/q/11547997/644348": {
"postId": 11547997,
"postTitle": "Hello world code for Mountain Lion OSX 10.8 showing notification like iChat [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 21:03:39Z"
},
"/q/11348493/861716": {
"postId": 11348493,
"postTitle": "Resizing a 3D array",
"userId": 861716,
"userName": "GertArnold",
"action": "Close",
"datetime": "2012-07-18 20:50:58Z"
},
"/q/11525997/681865": {
"postId": 11525997,
"postTitle": "Chrome CSS Hack and Media Queries",
"userId": 681865,
"userName": "talonmies",
"action": "Close",
"datetime": "2012-07-18 20:50:28Z"
},
"/q/11543862/681865": {
"postId": 11543862,
"postTitle": "Which edition of SQL Server express [migrated]",
"userId": 681865,
"userName": "talonmies",
"action": "Close",
"datetime": "2012-07-18 20:49:22Z"
},
"/q/11546912/681865": {
"postId": 11546912,
"postTitle": "pathClass package use [closed]",
"userId": 681865,
"userName": "talonmies",
"action": "Close",
"datetime": "2012-07-18 20:49:07Z"
},
"/q/8601233/681865": {
"postId": 8601233,
"postTitle": "Flex RemoteObject need syntax for that",
"userId": 681865,
"userName": "talonmies",
"action": "Close",
"datetime": "2012-07-18 20:48:39Z"
},
"/q/770977/681865": {
"postId": 770977,
"postTitle": "Does anyone use their Sony PSP for improving productivity?",
"userId": 681865,
"userName": "talonmies",
"action": "Close",
"datetime": "2012-07-18 20:48:23Z"
},
"/q/11522863/681865": {
"postId": 11522863,
"postTitle": "real time com port data plot in c#",
"userId": 681865,
"userName": "talonmies",
"action": "Close",
"datetime": "2012-07-18 20:48:13Z"
},
"/q/11525475/681865": {
"postId": 11525475,
"postTitle": "Change page URLs without losing page ranking [closed]",
"userId": 681865,
"userName": "talonmies",
"action": "Close",
"datetime": "2012-07-18 20:47:48Z"
},
"/q/11541576/681865": {
"postId": 11541576,
"postTitle": "How to delete duplicate values in a list? [closed]",
"userId": 681865,
"userName": "talonmies",
"action": "Close",
"datetime": "2012-07-18 20:47:17Z"
},
"/q/11525842/861716": {
"postId": 11525842,
"postTitle": "Can't I use two different condition at “on” in a join?",
"userId": 861716,
"userName": "GertArnold",
"action": "Close",
"datetime": "2012-07-18 20:46:59Z"
},
"/q/11529044/681865": {
"postId": 11529044,
"postTitle": "Can a GSM Cellular modem be used for transferring a voice file",
"userId": 681865,
"userName": "talonmies",
"action": "Close",
"datetime": "2012-07-18 20:46:39Z"
},
"/q/11521282/861716": {
"postId": 11521282,
"postTitle": "QRCode scanning issue",
"userId": 861716,
"userName": "GertArnold",
"action": "Do Not Close",
"datetime": "2012-07-18 20:46:24Z"
},
"/q/4953527/681865": {
"postId": 4953527,
"postTitle": "Considerations for compiling Fortran code to 64bit?",
"userId": 681865,
"userName": "talonmies",
"action": "Close",
"datetime": "2012-07-18 20:45:50Z"
},
"/q/11548516/644348": {
"postId": 11548516,
"postTitle": "Navigation Controller (and all its views) are portrait only. How can I make them landscape only? [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 20:43:07Z"
},
"/q/11520331/861716": {
"postId": 11520331,
"postTitle": "How to Use GetEnumerator() [closed]",
"userId": 861716,
"userName": "GertArnold",
"action": "Close",
"datetime": "2012-07-18 20:28:24Z"
},
"/q/11518874/861716": {
"postId": 11518874,
"postTitle": "Does't need Collection List tag in xml [closed]",
"userId": 861716,
"userName": "GertArnold",
"action": "Close",
"datetime": "2012-07-18 20:22:31Z"
},
"/q/11515693/861716": {
"postId": 11515693,
"postTitle": "Tools for consuming REST services in .Net",
"userId": 861716,
"userName": "GertArnold",
"action": "Do Not Close",
"datetime": "2012-07-18 20:14:06Z"
},
"/q/11544630/861716": {
"postId": 11544630,
"postTitle": "Refreshing listview automatically when a new process enters",
"userId": 861716,
"userName": "GertArnold",
"action": "Close",
"datetime": "2012-07-18 20:12:45Z"
},
"/q/11516680/1114": {
"postId": 11516680,
"postTitle": "css opacity not working in IE",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 20:09:55Z"
},
"/q/11519725/861716": {
"postId": 11519725,
"postTitle": "How to know if there is an incoming call from GSM modem in c#",
"userId": 861716,
"userName": "GertArnold",
"action": "Do Not Close",
"datetime": "2012-07-18 20:09:33Z"
},
"/q/11540117/861716": {
"postId": 11540117,
"postTitle": "Custom Panel in C#",
"userId": 861716,
"userName": "GertArnold",
"action": "Do Not Close",
"datetime": "2012-07-18 20:08:27Z"
},
"/q/11286337/677667": {
"postId": 11286337,
"postTitle": "What is a python function that will do analysis using different combinations of two types of factors? [closed]",
"userId": 677667,
"userName": "Chris A.",
"action": "Close",
"datetime": "2012-07-18 20:07:45Z"
},
"/q/10376632/677667": {
"postId": 10376632,
"postTitle": "How to multiply to (n) number of funcations using for loop? [closed]",
"userId": 677667,
"userName": "Chris A.",
"action": "Close",
"datetime": "2012-07-18 20:06:15Z"
},
"/q/11539599/265570": {
"postId": 11539599,
"postTitle": "Recommendations on Some Open Source C# [closed]",
"userId": 265570,
"userName": "BK.",
"action": "Close",
"datetime": "2012-07-18 20:00:34Z"
},
"/q/11530168/1114": {
"postId": 11530168,
"postTitle": "regex space validation",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 19:55:22Z"
},
"/q/11446467/1114": {
"postId": 11446467,
"postTitle": "What are best tools for creating web layout? [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 19:54:54Z"
},
"/q/11541237/541091": {
"postId": 11541237,
"postTitle": "Strategies for keeping two mySQL databases (in separate locations) in sync? [closed]",
"userId": 541091,
"userName": "Michael",
"action": "Close",
"datetime": "2012-07-18 19:39:43Z"
},
"/q/11521962/541091": {
"postId": 11521962,
"postTitle": "File renaming using php",
"userId": 541091,
"userName": "Michael",
"action": "Close",
"datetime": "2012-07-18 19:39:09Z"
},
"/q/11522137/649687": {
"postId": 11522137,
"postTitle": "Outlook using VBScript",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-18 19:39:07Z"
},
"/q/11521929/649687": {
"postId": 11521929,
"postTitle": "How to access a variable in a module which is being imported in the main function and which is defined inside main() in python",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-18 19:38:59Z"
},
"/q/11475464/175679": {
"postId": 11475464,
"postTitle": "IIS folder permissions not working",
"userId": 175679,
"userName": "SliverNinja",
"action": "Close",
"datetime": "2012-07-18 19:36:58Z"
},
"/q/11512814/219118": {
"postId": 11512814,
"postTitle": "What would be a JavaScript code library (or maybe just a snippet) that provides a clean UI for “tagging” blog posts or other items? [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 19:36:42Z"
},
"/q/11540070/175679": {
"postId": 11540070,
"postTitle": "Alternate row colour WP7",
"userId": 175679,
"userName": "SliverNinja",
"action": "Do Not Close",
"datetime": "2012-07-18 19:36:22Z"
},
"/q/11522376/219118": {
"postId": 11522376,
"postTitle": "Masonry.js issue with the container [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 19:35:08Z"
},
"/q/11531070/219118": {
"postId": 11531070,
"postTitle": "Nth-of-type alternative for IE8",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 19:34:54Z"
},
"/q/2357685/219118": {
"postId": 2357685,
"postTitle": "How do you rewrite/recode a website to be scalable? [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 19:34:39Z"
},
"/q/11545718/219118": {
"postId": 11545718,
"postTitle": "Image Position Background [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 19:33:51Z"
},
"/q/11533489/219118": {
"postId": 11533489,
"postTitle": "Listing elements inside an array [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 19:33:26Z"
},
"/q/11534178/219118": {
"postId": 11534178,
"postTitle": "PHP find string and print it [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 19:33:09Z"
},
"/q/11536537/219118": {
"postId": 11536537,
"postTitle": "How can I create alike css classes [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 19:32:35Z"
},
"/q/11516188/219118": {
"postId": 11516188,
"postTitle": "How to customize php built-in web server [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 19:31:51Z"
},
"/q/2054520/219118": {
"postId": 2054520,
"postTitle": "It is recommendable to type the color's name instead of its hex value in CSS?",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 19:30:10Z"
},
"/q/11540788/219118": {
"postId": 11540788,
"postTitle": "Suggestions for a large database application [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 19:29:56Z"
},
"/q/11532950/219118": {
"postId": 11532950,
"postTitle": "Retrieving elements with a made-up CSS attribute [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 19:29:51Z"
},
"/q/11534992/219118": {
"postId": 11534992,
"postTitle": "Anchor tag is not working properly [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 19:29:33Z"
},
"/q/1827482/219118": {
"postId": 1827482,
"postTitle": "Jquery find next/prev elements of a certain class but not necessarily siblings",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 19:29:19Z"
},
"/q/11548516/945847": {
"postId": 11548516,
"postTitle": "Navigation Controller (and all its views) are portrait only. How can I make them landscape only? [closed]",
"userId": 945847,
"userName": "CodaFi",
"action": "Close",
"datetime": "2012-07-18 19:28:44Z"
},
"/q/11529712/219118": {
"postId": 11529712,
"postTitle": "Prevent browsers from auto-filling form fields",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 19:28:44Z"
},
"/q/11540753/1258041": {
"postId": 11540753,
"postTitle": "SQL Server 2008 IIF statement does not seem enabled",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Do Not Close",
"datetime": "2012-07-18 19:14:06Z"
},
"/q/11541389/162671": {
"postId": 11541389,
"postTitle": "How to compare two columns from 2 different tables in 2 datasets in ASP.NET C# [closed]",
"userId": 162671,
"userName": "Nacereddine",
"action": "Close",
"datetime": "2012-07-18 19:14:05Z"
},
"/q/11501532/1258041": {
"postId": 11501532,
"postTitle": "Attaching sqlite to xcode mail",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Close",
"datetime": "2012-07-18 19:13:52Z"
},
"/q/11546876/1258041": {
"postId": 11546876,
"postTitle": "How do you process invalid HTML in PHP?",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Do Not Close",
"datetime": "2012-07-18 19:13:17Z"
},
"/q/11519892/1114": {
"postId": 11519892,
"postTitle": "Javascript: Split into multiple variables [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 19:06:44Z"
},
"/q/11533643/1114": {
"postId": 11533643,
"postTitle": "Android Python: Estimate whether this is possible",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 19:06:08Z"
},
"/q/11543399/1114": {
"postId": 11543399,
"postTitle": "Site layout without writing-mode",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 19:05:35Z"
},
"/q/11547755/1114": {
"postId": 11547755,
"postTitle": "revealing module pattern and timeout",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 19:03:47Z"
},
"/q/11519207/1114": {
"postId": 11519207,
"postTitle": "Validation token in both GET and POST parts of Django's view",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 18:51:10Z"
},
"/q/11541603/1114": {
"postId": 11541603,
"postTitle": "how to display hide and show select box?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 18:49:18Z"
},
"/q/11533566/1114": {
"postId": 11533566,
"postTitle": "What is the HTML/CSS for a website header navigation that always stays at the top even when scrolling? [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 18:48:42Z"
},
"/q/11545718/1114": {
"postId": 11545718,
"postTitle": "Image Position Background [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 18:46:32Z"
},
"/q/3506400/1114": {
"postId": 3506400,
"postTitle": "designMode or contentEditable on mobile safari",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 18:46:26Z"
},
"/q/11545216/219118": {
"postId": 11545216,
"postTitle": "960gs (Grid System) and best html/css practice [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 18:41:25Z"
},
"/q/11534555/219118": {
"postId": 11534555,
"postTitle": "How to simplify this javascript [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 18:41:18Z"
},
"/q/11540775/219118": {
"postId": 11540775,
"postTitle": "preg_replace a link",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 18:40:21Z"
},
"/q/11523380/219118": {
"postId": 11523380,
"postTitle": "Where is a PHP function located in? (as in which file) [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 18:39:46Z"
},
"/q/11540310/219118": {
"postId": 11540310,
"postTitle": "internal error 500 with htaccess file",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 18:36:13Z"
},
"/q/11520257/219118": {
"postId": 11520257,
"postTitle": "How can I display this rather unusual schedule is an easy to digest manner via PHP and a web language?",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 18:36:04Z"
},
"/q/11547492/219118": {
"postId": 11547492,
"postTitle": "product counter [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 18:33:03Z"
},
"/q/953766/520162": {
"postId": 953766,
"postTitle": "Disabling GIF animation in HTML",
"userId": 520162,
"userName": "eckes",
"action": "Do Not Close",
"datetime": "2012-07-18 18:32:25Z"
},
"/q/11533890/520162": {
"postId": 11533890,
"postTitle": "Run a C/C++ application in Eclipse Runtime Workbench [closed]",
"userId": 520162,
"userName": "eckes",
"action": "Close",
"datetime": "2012-07-18 18:31:49Z"
},
"/q/11540905/219118": {
"postId": 11540905,
"postTitle": "iscroll 4 not working in blackberry [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 18:31:38Z"
},
"/q/11513166/219118": {
"postId": 11513166,
"postTitle": "Is there a limit on the length of the needle in the PHP strpos function?",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-18 18:31:28Z"
},
"/q/11540283/520162": {
"postId": 11540283,
"postTitle": "enum in struct: dereferencing pointer to incomplete type",
"userId": 520162,
"userName": "eckes",
"action": "Do Not Close",
"datetime": "2012-07-18 18:31:19Z"
},
"/q/3506400/520162": {
"postId": 3506400,
"postTitle": "designMode or contentEditable on mobile safari",
"userId": 520162,
"userName": "eckes",
"action": "Close",
"datetime": "2012-07-18 18:30:03Z"
},
"/q/11534515/520162": {
"postId": 11534515,
"postTitle": "Can i make a number appear on my page then have it increase by x every z seconds",
"userId": 520162,
"userName": "eckes",
"action": "Do Not Close",
"datetime": "2012-07-18 18:29:33Z"
},
"/q/11514947/520162": {
"postId": 11514947,
"postTitle": "Capture the output of Perl system()",
"userId": 520162,
"userName": "eckes",
"action": "Do Not Close",
"datetime": "2012-07-18 18:28:37Z"
},
"/q/11543060/520162": {
"postId": 11543060,
"postTitle": "Creating a web interface with python (cgi) [closed]",
"userId": 520162,
"userName": "eckes",
"action": "Close",
"datetime": "2012-07-18 18:28:18Z"
},
"/q/11541134/1114": {
"postId": 11541134,
"postTitle": "Javascript syntax (0, fn)(args)",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Do Not Close",
"datetime": "2012-07-18 18:27:52Z"
},
"/q/11543673/520162": {
"postId": 11543673,
"postTitle": "Good real-world examples for coding common ajax/javascript web pages [closed]",
"userId": 520162,
"userName": "eckes",
"action": "Close",
"datetime": "2012-07-18 18:27:50Z"
},
"/q/1222821/219118": {
"postId": 1222821,
"postTitle": "PHP: flatten multidimensional array",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 18:24:17Z"
},
"/q/11517419/219118": {
"postId": 11517419,
"postTitle": "Slider Issues in IE",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 18:24:02Z"
},
"/q/11518478/1114": {
"postId": 11518478,
"postTitle": "Use Windows Form or Dialog Form for a config wizard?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 18:23:17Z"
},
"/q/11532904/1114": {
"postId": 11532904,
"postTitle": "How to create an style image gallery like this sample? [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 18:22:33Z"
},
"/q/11518222/1114": {
"postId": 11518222,
"postTitle": "LINQ & SQL Injection [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 18:21:49Z"
},
"/q/11523737/219118": {
"postId": 11523737,
"postTitle": "jquery - save image as specified filename [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 18:19:36Z"
},
"/q/11537163/219118": {
"postId": 11537163,
"postTitle": "Redirect when video finished [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 18:19:22Z"
},
"/q/11544018/219118": {
"postId": 11544018,
"postTitle": "PHP Deploy project at customer [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 18:15:22Z"
},
"/q/11533088/219118": {
"postId": 11533088,
"postTitle": "PHP file encryption [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 18:15:05Z"
},
"/q/11543213/219118": {
"postId": 11543213,
"postTitle": "my google analytics website stats on my website",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-18 18:14:36Z"
},
"/q/11542557/219118": {
"postId": 11542557,
"postTitle": "DOMDocument getElementsByTagName not working",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-18 18:11:06Z"
},
"/q/11546814/19624": {
"postId": 11546814,
"postTitle": "In C++ how can I calculate all possible Bezier handle points in order to make the curve to a given length?",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 18:10:47Z"
},
"/q/10331908/219118": {
"postId": 10331908,
"postTitle": "jQuery: How to determine the index of <li> element in an unordered list when clicked?",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 18:08:06Z"
},
"/q/11536425/219118": {
"postId": 11536425,
"postTitle": "jquery mobile with two navbars",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-18 18:07:55Z"
},
"/q/3506400/219118": {
"postId": 3506400,
"postTitle": "designMode or contentEditable on mobile safari",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 18:07:41Z"
},
"/q/11542819/219118": {
"postId": 11542819,
"postTitle": "How to create a simple encryption algorithm in java? [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-18 18:05:03Z"
},
"/q/11537322/219118": {
"postId": 11537322,
"postTitle": "Tools for generating reports on cross browser compatiblity",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 18:03:25Z"
},
"/q/11537888/219118": {
"postId": 11537888,
"postTitle": "Lighttpd 403 Forbidden for PHP files",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 18:03:18Z"
},
"/q/11500233/219118": {
"postId": 11500233,
"postTitle": "Nested form does not work in IE?",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 18:03:09Z"
},
"/q/4459911/219118": {
"postId": 4459911,
"postTitle": "please explain this code…? [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 18:02:57Z"
},
"/q/11516535/219118": {
"postId": 11516535,
"postTitle": "Csv cant show the corrected number",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-18 18:02:39Z"
},
"/q/11525847/1114": {
"postId": 11525847,
"postTitle": "to draw html inside js file [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 18:02:26Z"
},
"/q/11519892/219118": {
"postId": 11519892,
"postTitle": "Javascript: Split into multiple variables [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 18:01:58Z"
},
"/q/11518645/219118": {
"postId": 11518645,
"postTitle": "php get_headers exception handling",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-18 18:01:36Z"
},
"/q/11545974/219118": {
"postId": 11545974,
"postTitle": "Merge Excel files using php",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-18 18:01:17Z"
},
"/q/11533566/219118": {
"postId": 11533566,
"postTitle": "What is the HTML/CSS for a website header navigation that always stays at the top even when scrolling? [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 18:01:11Z"
},
"/q/10769924/219118": {
"postId": 10769924,
"postTitle": "How can Chrome extensions basically cURL other pages?",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 18:00:59Z"
},
"/q/1963901/219118": {
"postId": 1963901,
"postTitle": "What does this symbol mean in PHP <?=",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 18:00:30Z"
},
"/q/11542190/219118": {
"postId": 11542190,
"postTitle": "Editing a just inserted record",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-18 18:00:19Z"
},
"/q/11533754/219118": {
"postId": 11533754,
"postTitle": "PHP Rapid Development Without Framework: What to Use? [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 17:59:15Z"
},
"/q/11539251/219118": {
"postId": 11539251,
"postTitle": "Javascript Pagination for dynamic content in fixed dimension [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 17:59:04Z"
},
"/q/11543427/219118": {
"postId": 11543427,
"postTitle": "Create a dynamic select object in Javascript [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 17:58:49Z"
},
"/q/11534575/219118": {
"postId": 11534575,
"postTitle": "Cannot call the method save of undefined. Mongojs",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-18 17:58:38Z"
},
"/q/11449177/219118": {
"postId": 11449177,
"postTitle": "How to hide file name, id and session variable in URL using php? [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 17:58:23Z"
},
"/q/11524606/219118": {
"postId": 11524606,
"postTitle": "Extra Quotation mark is coming in HTML output [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 17:57:51Z"
},
"/q/11520150/219118": {
"postId": 11520150,
"postTitle": "How to fade “this.src.replace” when swapping images on hover (jQuery) [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 17:57:28Z"
},
"/q/11546560/219118": {
"postId": 11546560,
"postTitle": "how to send array by ajax and jquery",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-18 17:57:13Z"
},
"/q/11449177/708434": {
"postId": 11449177,
"postTitle": "How to hide file name, id and session variable in URL using php? [closed]",
"userId": 708434,
"userName": "Xaerxess",
"action": "Close",
"datetime": "2012-07-18 17:57:10Z"
},
"/q/11537812/219118": {
"postId": 11537812,
"postTitle": "Download and Install PHP and Configure Apache for PHP support [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 17:56:34Z"
},
"/q/11529477/219118": {
"postId": 11529477,
"postTitle": "jQuery not working fully in Safari",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-18 17:56:22Z"
},
"/q/11544195/708434": {
"postId": 11544195,
"postTitle": "triggering a checkbox when checked [closed]",
"userId": 708434,
"userName": "Xaerxess",
"action": "Close",
"datetime": "2012-07-18 17:55:31Z"
},
"/q/11544195/219118": {
"postId": 11544195,
"postTitle": "triggering a checkbox when checked [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 17:54:15Z"
},
"/q/11523977/219118": {
"postId": 11523977,
"postTitle": "What is wrong with this Javascript? “Internet Explorer Cannot Open the Internet Site- Operation Aborted” Error",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 17:53:53Z"
},
"/q/11526634/46387": {
"postId": 11526634,
"postTitle": "Set up git to push to another user's Github repo?",
"userId": 46387,
"userName": "Ben Blank",
"action": "Close",
"datetime": "2012-07-18 17:51:52Z"
},
"/q/11539396/46387": {
"postId": 11539396,
"postTitle": "Preload all pages with content including images [closed]",
"userId": 46387,
"userName": "Ben Blank",
"action": "Do Not Close",
"datetime": "2012-07-18 17:50:42Z"
},
"/q/11542814/46387": {
"postId": 11542814,
"postTitle": "JavaScript variable with global scope [closed]",
"userId": 46387,
"userName": "Ben Blank",
"action": "Close",
"datetime": "2012-07-18 17:49:51Z"
},
"/q/11546457/46387": {
"postId": 11546457,
"postTitle": "How to draw image in javascript over the dynamic image",
"userId": 46387,
"userName": "Ben Blank",
"action": "Close",
"datetime": "2012-07-18 17:49:06Z"
},
"/q/11539995/46387": {
"postId": 11539995,
"postTitle": "raise button click at code behind using jquery [closed]",
"userId": 46387,
"userName": "Ben Blank",
"action": "Close",
"datetime": "2012-07-18 17:48:20Z"
},
"/q/11533161/46387": {
"postId": 11533161,
"postTitle": "jquery-ui datepicker change z-index",
"userId": 46387,
"userName": "Ben Blank",
"action": "Close",
"datetime": "2012-07-18 17:47:52Z"
},
"/q/11545960/46387": {
"postId": 11545960,
"postTitle": "Sort Elements of javascript [closed]",
"userId": 46387,
"userName": "Ben Blank",
"action": "Close",
"datetime": "2012-07-18 17:46:51Z"
},
"/q/11546534/46387": {
"postId": 11546534,
"postTitle": "ASP.NET MVC: Best C# method of building a Json ActionResult",
"userId": 46387,
"userName": "Ben Blank",
"action": "Close",
"datetime": "2012-07-18 17:46:24Z"
},
"/q/11525741/46387": {
"postId": 11525741,
"postTitle": "preg_replace: how to?",
"userId": 46387,
"userName": "Ben Blank",
"action": "Do Not Close",
"datetime": "2012-07-18 17:45:57Z"
},
"/q/11513250/46387": {
"postId": 11513250,
"postTitle": "How to stop a GIF from animating after a certain amount of time (on a web page)? [closed]",
"userId": 46387,
"userName": "Ben Blank",
"action": "Close",
"datetime": "2012-07-18 17:45:16Z"
},
"/q/11529771/46387": {
"postId": 11529771,
"postTitle": "http $.post from android does not work",
"userId": 46387,
"userName": "Ben Blank",
"action": "Do Not Close",
"datetime": "2012-07-18 17:44:55Z"
},
"/q/11540696/644348": {
"postId": 11540696,
"postTitle": "XCode 4 - IPhone Dev - Good Debug Tutorial",
"userId": 644348,
"userName": "Monolo",
"action": "Do Not Close",
"datetime": "2012-07-18 17:44:44Z"
},
"/q/11438910/649687": {
"postId": 11438910,
"postTitle": "What's the best way to display side-by-side items?",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-18 17:43:41Z"
},
"/q/11513588/46387": {
"postId": 11513588,
"postTitle": "Sending data from MS Access to a html form [closed]",
"userId": 46387,
"userName": "Ben Blank",
"action": "Close",
"datetime": "2012-07-18 17:43:13Z"
},
"/q/11535559/708434": {
"postId": 11535559,
"postTitle": "How to convert Joomla 2.5 plugins to 1.5 [closed]",
"userId": 708434,
"userName": "Xaerxess",
"action": "Close",
"datetime": "2012-07-18 17:42:11Z"
},
"/q/4459911/708434": {
"postId": 4459911,
"postTitle": "please explain this code…? [closed]",
"userId": 708434,
"userName": "Xaerxess",
"action": "Close",
"datetime": "2012-07-18 17:41:39Z"
},
"/q/11516515/649687": {
"postId": 11516515,
"postTitle": "Java Application that recognizes a Java Class [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-18 17:38:56Z"
},
"/q/11546061/649687": {
"postId": 11546061,
"postTitle": "How to have window message stay and not leave the page until user clicks button?",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-18 17:38:37Z"
},
"/q/11545718/649687": {
"postId": 11545718,
"postTitle": "Image Position Background [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-18 17:38:19Z"
},
"/q/11519068/649687": {
"postId": 11519068,
"postTitle": "Cloud Zoom integration [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-18 17:37:41Z"
},
"/q/11518668/649687": {
"postId": 11518668,
"postTitle": "menu in action bar",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-18 17:36:49Z"
},
"/q/11535336/649687": {
"postId": 11535336,
"postTitle": "Best practice for storing emails encrypted in a database when working with Zend",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-18 17:36:34Z"
},
"/q/11537949/649687": {
"postId": 11537949,
"postTitle": "Can I globally set $_SERVER['REDIRECT_URL'] before script execution? [migrated]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-18 17:36:21Z"
},
"/q/11517653/649687": {
"postId": 11517653,
"postTitle": "jQuery: table with grouping and sum in group footer/header?",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-18 17:36:07Z"
},
"/q/11509045/649687": {
"postId": 11509045,
"postTitle": "Create API for coordinates retrieval (X, Y, Z)",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-18 17:35:20Z"
},
"/q/2363103/649687": {
"postId": 2363103,
"postTitle": "Would it be fair to say learning Java would make me a better PHP OOP Developer?",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-18 17:34:48Z"
},
"/q/11526772/649687": {
"postId": 11526772,
"postTitle": "Android build process [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-18 17:34:38Z"
},
"/q/2054520/649687": {
"postId": 2054520,
"postTitle": "It is recommendable to type the color's name instead of its hex value in CSS?",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-18 17:34:27Z"
},
"/q/11536961/649687": {
"postId": 11536961,
"postTitle": "python object atributes and methods",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-18 17:34:00Z"
},
"/q/11517629/649687": {
"postId": 11517629,
"postTitle": "Return False is not working",
"userId": 649687,
"userName": "JMax",
"action": "Do Not Close",
"datetime": "2012-07-18 17:33:33Z"
},
"/q/11533754/649687": {
"postId": 11533754,
"postTitle": "PHP Rapid Development Without Framework: What to Use? [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-18 17:32:55Z"
},
"/q/11517419/649687": {
"postId": 11517419,
"postTitle": "Slider Issues in IE",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-18 17:32:35Z"
},
"/q/11526291/649687": {
"postId": 11526291,
"postTitle": "getting the dropdown in edittext in android application [closed]",
"userId": 649687,
"userName": "JMax",
"action": "Close",
"datetime": "2012-07-18 17:32:12Z"
},
"/q/11529086/453277": {
"postId": 11529086,
"postTitle": "Passing the address of an object causes parent class constructor to be called",
"userId": 453277,
"userName": "Tim Medora",
"action": "Do Not Close",
"datetime": "2012-07-18 17:27:59Z"
},
"/q/11514796/453277": {
"postId": 11514796,
"postTitle": "jQuery: Is there a way to turn 'click' events into double-clicks?",
"userId": 453277,
"userName": "Tim Medora",
"action": "Do Not Close",
"datetime": "2012-07-18 17:27:49Z"
},
"/q/11525604/453277": {
"postId": 11525604,
"postTitle": "Python: calendar module crashed",
"userId": 453277,
"userName": "Tim Medora",
"action": "Do Not Close",
"datetime": "2012-07-18 17:27:28Z"
},
"/q/11541923/453277": {
"postId": 11541923,
"postTitle": "c#: how to stop a thread on .dll unload?",
"userId": 453277,
"userName": "Tim Medora",
"action": "Do Not Close",
"datetime": "2012-07-18 17:27:07Z"
},
"/q/6165116/453277": {
"postId": 6165116,
"postTitle": "how to add Android platform into Netbeans 7.0, after installed android plugin",
"userId": 453277,
"userName": "Tim Medora",
"action": "Do Not Close",
"datetime": "2012-07-18 17:26:48Z"
},
"/q/11510906/453277": {
"postId": 11510906,
"postTitle": "Different between Redis and Amazon S3 [closed]",
"userId": 453277,
"userName": "Tim Medora",
"action": "Close",
"datetime": "2012-07-18 17:26:36Z"
},
"/q/11516892/453277": {
"postId": 11516892,
"postTitle": "drawing pictures for a php project [closed]",
"userId": 453277,
"userName": "Tim Medora",
"action": "Close",
"datetime": "2012-07-18 17:26:03Z"
},
"/q/11524452/1204258": {
"postId": 11524452,
"postTitle": "Play a sound with javascript in background [closed]",
"userId": 1204258,
"userName": "Andrew Leach",
"action": "Close",
"datetime": "2012-07-18 16:50:24Z"
},
"/q/11512814/1204258": {
"postId": 11512814,
"postTitle": "What would be a JavaScript code library (or maybe just a snippet) that provides a clean UI for “tagging” blog posts or other items? [closed]",
"userId": 1204258,
"userName": "Andrew Leach",
"action": "Close",
"datetime": "2012-07-18 16:49:53Z"
},
"/q/11513863/1204258": {
"postId": 11513863,
"postTitle": "How can I loop through rows in Excel and transpose them until a hyperlink is reached? [closed]",
"userId": 1204258,
"userName": "Andrew Leach",
"action": "Close",
"datetime": "2012-07-18 16:49:20Z"
},
"/q/11539599/581771": {
"postId": 11539599,
"postTitle": "Recommendations on Some Open Source C# [closed]",
"userId": 581771,
"userName": "PraVn",
"action": "Close",
"datetime": "2012-07-18 16:27:45Z"
},
"/q/11541389/581771": {
"postId": 11541389,
"postTitle": "How to compare two columns from 2 different tables in 2 datasets in ASP.NET C# [closed]",
"userId": 581771,
"userName": "PraVn",
"action": "Close",
"datetime": "2012-07-18 16:27:10Z"
},
"/q/11534204/861565": {
"postId": 11534204,
"postTitle": "C#- Help to query a DB continuously",
"userId": 861565,
"userName": "jadarnel27",
"action": "Close",
"datetime": "2012-07-18 16:06:35Z"
},
"/q/11517640/861565": {
"postId": 11517640,
"postTitle": "sql query to find Which country has the maximum number of suppliers and customers",
"userId": 861565,
"userName": "jadarnel27",
"action": "Close",
"datetime": "2012-07-18 16:06:24Z"
},
"/q/11544934/861565": {
"postId": 11544934,
"postTitle": "C# string to var data type [closed]",
"userId": 861565,
"userName": "jadarnel27",
"action": "Close",
"datetime": "2012-07-18 16:06:13Z"
},
"/q/11542888/861565": {
"postId": 11542888,
"postTitle": "Pass arguments to a command prompt using c#",
"userId": 861565,
"userName": "jadarnel27",
"action": "Close",
"datetime": "2012-07-18 16:06:01Z"
},
"/q/11542171/861565": {
"postId": 11542171,
"postTitle": "CA2000 : Microsoft.Reliability [closed]",
"userId": 861565,
"userName": "jadarnel27",
"action": "Close",
"datetime": "2012-07-18 16:05:44Z"
},
"/q/11532284/861565": {
"postId": 11532284,
"postTitle": "SQl query to join different tables [closed]",
"userId": 861565,
"userName": "jadarnel27",
"action": "Close",
"datetime": "2012-07-18 16:05:23Z"
},
"/q/11524052/861565": {
"postId": 11524052,
"postTitle": "Auto Map reference not found C# [closed]",
"userId": 861565,
"userName": "jadarnel27",
"action": "Close",
"datetime": "2012-07-18 16:05:15Z"
},
"/q/11536062/861565": {
"postId": 11536062,
"postTitle": "C# downloading .swf file from website [closed]",
"userId": 861565,
"userName": "jadarnel27",
"action": "Close",
"datetime": "2012-07-18 16:04:58Z"
},
"/q/11530970/212940": {
"postId": 11530970,
"postTitle": "Converting datatypes in mysql",
"userId": 212940,
"userName": "vascowhite",
"action": "Close",
"datetime": "2012-07-18 15:43:11Z"
},
"/q/11538760/218196": {
"postId": 11538760,
"postTitle": "Need to display latest facebook wall post in my wordpress site, any idea? [closed]",
"userId": 218196,
"userName": "Felix Kling",
"action": "Close",
"datetime": "2012-07-18 15:42:57Z"
},
"/q/11446467/218196": {
"postId": 11446467,
"postTitle": "What are best tools for creating web layout? [closed]",
"userId": 218196,
"userName": "Felix Kling",
"action": "Close",
"datetime": "2012-07-18 15:42:41Z"
},
"/q/11524606/218196": {
"postId": 11524606,
"postTitle": "Extra Quotation mark is coming in HTML output [closed]",
"userId": 218196,
"userName": "Felix Kling",
"action": "Close",
"datetime": "2012-07-18 15:42:34Z"
},
"/q/11537451/212940": {
"postId": 11537451,
"postTitle": "how to slice and store an image in mysql? [closed]",
"userId": 212940,
"userName": "vascowhite",
"action": "Close",
"datetime": "2012-07-18 15:42:32Z"
},
"/q/11536961/218196": {
"postId": 11536961,
"postTitle": "python object atributes and methods",
"userId": 218196,
"userName": "Felix Kling",
"action": "Close",
"datetime": "2012-07-18 15:42:11Z"
},
"/q/11535350/212940": {
"postId": 11535350,
"postTitle": "Remove ALL or particular Non printable character from column in mysql",
"userId": 212940,
"userName": "vascowhite",
"action": "Close",
"datetime": "2012-07-18 15:42:00Z"
},
"/q/11517522/212940": {
"postId": 11517522,
"postTitle": "XPATH expression parser [closed]",
"userId": 212940,
"userName": "vascowhite",
"action": "Close",
"datetime": "2012-07-18 15:41:36Z"
},
"/q/11541097/212940": {
"postId": 11541097,
"postTitle": "Keystore's password management",
"userId": 212940,
"userName": "vascowhite",
"action": "Close",
"datetime": "2012-07-18 15:39:45Z"
},
"/q/3151241/212940": {
"postId": 3151241,
"postTitle": "how to get method parameters name from java class? [closed]",
"userId": 212940,
"userName": "vascowhite",
"action": "Close",
"datetime": "2012-07-18 15:38:52Z"
},
"/q/11537949/212940": {
"postId": 11537949,
"postTitle": "Can I globally set $_SERVER['REDIRECT_URL'] before script execution? [migrated]",
"userId": 212940,
"userName": "vascowhite",
"action": "Close",
"datetime": "2012-07-18 15:38:38Z"
},
"/q/11532284/569662": {
"postId": 11532284,
"postTitle": "SQl query to join different tables [closed]",
"userId": 569662,
"userName": "hugh",
"action": "Close",
"datetime": "2012-07-18 15:17:08Z"
},
"/q/11524655/569662": {
"postId": 11524655,
"postTitle": "Code for getting certain columns values only as output not working",
"userId": 569662,
"userName": "hugh",
"action": "Do Not Close",
"datetime": "2012-07-18 15:14:23Z"
},
"/q/11531634/569662": {
"postId": 11531634,
"postTitle": "How to delete from select in same table MySQL",
"userId": 569662,
"userName": "hugh",
"action": "Close",
"datetime": "2012-07-18 15:09:35Z"
},
"/q/11518222/569662": {
"postId": 11518222,
"postTitle": "LINQ & SQL Injection [closed]",
"userId": 569662,
"userName": "hugh",
"action": "Close",
"datetime": "2012-07-18 15:08:40Z"
},
"/q/11533321/592182": {
"postId": 11533321,
"postTitle": "iOS: issue submitting app on 2nd attempt",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-18 15:03:52Z"
},
"/q/11534043/592182": {
"postId": 11534043,
"postTitle": "skinning script works in fiddle but not live [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Do Not Close",
"datetime": "2012-07-18 15:01:52Z"
},
"/q/11519065/879199": {
"postId": 11519065,
"postTitle": "The meaning of selectObjId [closed]",
"userId": 879199,
"userName": "RobB",
"action": "Close",
"datetime": "2012-07-18 14:58:13Z"
},
"/q/11507879/879199": {
"postId": 11507879,
"postTitle": "Declarative creation dojox.form.CheckedMultiSelect and attribute “title” (Dojo 1.4)",
"userId": 879199,
"userName": "RobB",
"action": "Close",
"datetime": "2012-07-18 14:57:45Z"
},
"/q/11527571/592182": {
"postId": 11527571,
"postTitle": "In DataTables jedit, Cant get the row id?",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-18 14:57:40Z"
},
"/q/11540905/592182": {
"postId": 11540905,
"postTitle": "iscroll 4 not working in blackberry [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-18 14:57:20Z"
},
"/q/11538760/879199": {
"postId": 11538760,
"postTitle": "Need to display latest facebook wall post in my wordpress site, any idea? [closed]",
"userId": 879199,
"userName": "RobB",
"action": "Close",
"datetime": "2012-07-18 14:57:11Z"
},
"/q/11531782/879199": {
"postId": 11531782,
"postTitle": "Assignment operator overloading valgrind error [closed]",
"userId": 879199,
"userName": "RobB",
"action": "Close",
"datetime": "2012-07-18 14:56:46Z"
},
"/q/11528751/879199": {
"postId": 11528751,
"postTitle": "Quickest way to evaluate the contents of a text box? [closed]",
"userId": 879199,
"userName": "RobB",
"action": "Close",
"datetime": "2012-07-18 14:56:28Z"
},
"/q/11539251/592182": {
"postId": 11539251,
"postTitle": "Javascript Pagination for dynamic content in fixed dimension [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-18 14:56:09Z"
},
"/q/11528298/879199": {
"postId": 11528298,
"postTitle": "Thumbnail pagination by using mysql [closed]",
"userId": 879199,
"userName": "RobB",
"action": "Close",
"datetime": "2012-07-18 14:55:59Z"
},
"/q/11536900/592182": {
"postId": 11536900,
"postTitle": "Is there an existing plugin for jQuery that counts down to a specific time, then counts back up?",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-18 14:55:45Z"
},
"/q/11512705/879199": {
"postId": 11512705,
"postTitle": "Print false in php [closed]",
"userId": 879199,
"userName": "RobB",
"action": "Close",
"datetime": "2012-07-18 14:55:40Z"
},
"/q/11022118/879199": {
"postId": 11022118,
"postTitle": "Event handler method of object",
"userId": 879199,
"userName": "RobB",
"action": "Close",
"datetime": "2012-07-18 14:55:09Z"
},
"/q/11539995/592182": {
"postId": 11539995,
"postTitle": "raise button click at code behind using jquery [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-18 14:54:49Z"
},
"/q/11520504/879199": {
"postId": 11520504,
"postTitle": "query different in java that in mysql [closed]",
"userId": 879199,
"userName": "RobB",
"action": "Close",
"datetime": "2012-07-18 14:53:44Z"
},
"/q/11539892/592182": {
"postId": 11539892,
"postTitle": "Facebook error when like button pressed",
"userId": 592182,
"userName": "forsvarir",
"action": "Do Not Close",
"datetime": "2012-07-18 14:34:29Z"
},
"/q/11542742/592182": {
"postId": 11542742,
"postTitle": "JavaScript Library for opening Excel Files on the Web [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-18 14:33:12Z"
},
"/q/11543343/644348": {
"postId": 11543343,
"postTitle": "How to Create an iOS search similar to Path's?",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 14:19:51Z"
},
"/q/11542477/644348": {
"postId": 11542477,
"postTitle": "Xcode pace calculator for running [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 14:18:47Z"
},
"/q/11543229/644348": {
"postId": 11543229,
"postTitle": "long press UIButton and rearrange it [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 14:18:23Z"
},
"/q/11524539/1114": {
"postId": 11524539,
"postTitle": "Target :after whilst using $(this) [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 14:04:55Z"
},
"/q/11528132/1114": {
"postId": 11528132,
"postTitle": "Determining whether the window has loaded without using any global variables",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Edit",
"datetime": "2012-07-18 13:53:35Z"
},
"/q/11527887/1114": {
"postId": 11527887,
"postTitle": "PostgreSQL table to HTML [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 13:48:23Z"
},
"/q/11535547/1114": {
"postId": 11535547,
"postTitle": "Need reference links for “[1:]” notation [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 13:46:49Z"
},
"/q/11530826/1114": {
"postId": 11530826,
"postTitle": "HTML Content Width [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 13:45:44Z"
},
"/q/11530273/1114": {
"postId": 11530273,
"postTitle": "Learning NodeJS [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 13:45:31Z"
},
"/q/11533447/1114": {
"postId": 11533447,
"postTitle": "Major IE8 issue",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 13:45:05Z"
},
"/q/11537386/1114": {
"postId": 11537386,
"postTitle": "How come an object element show up in the element inspector but not in the source?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-18 13:44:21Z"
},
"/q/11509265/500974": {
"postId": 11509265,
"postTitle": "MVC3 controllers and views",
"userId": 500974,
"userName": "Matt Wilko",
"action": "Close",
"datetime": "2012-07-18 13:37:21Z"
},
"/q/4621478/500974": {
"postId": 4621478,
"postTitle": "What is the best Windows Installer?",
"userId": 500974,
"userName": "Matt Wilko",
"action": "Close",
"datetime": "2012-07-18 13:36:39Z"
},
"/q/11534485/500974": {
"postId": 11534485,
"postTitle": "Automate the process as in video file [closed]",
"userId": 500974,
"userName": "Matt Wilko",
"action": "Close",
"datetime": "2012-07-18 13:36:11Z"
},
"/q/11386796/1060350": {
"postId": 11386796,
"postTitle": "How far can we customize/tweak Yahoo Mail?",
"userId": 1060350,
"userName": "Anony-Mousse",
"action": "Close",
"datetime": "2012-07-18 13:34:12Z"
},
"/q/11510603/1060350": {
"postId": 11510603,
"postTitle": "End of file detected on input — Help please [closed]",
"userId": 1060350,
"userName": "Anony-Mousse",
"action": "Close",
"datetime": "2012-07-18 13:33:57Z"
},
"/q/11537472/1060350": {
"postId": 11537472,
"postTitle": "not getting focus on buttons",
"userId": 1060350,
"userName": "Anony-Mousse",
"action": "Close",
"datetime": "2012-07-18 13:33:07Z"
},
"/q/11518029/64976": {
"postId": 11518029,
"postTitle": "VBA macro to find minimum and maximum peaks of an array [closed]",
"userId": 64976,
"userName": "J. Steen",
"action": "Close",
"datetime": "2012-07-18 13:24:30Z"
},
"/q/11513405/16487": {
"postId": 11513405,
"postTitle": "How to draw a Rectangle around the Window? (When I know its handle)",
"userId": 16487,
"userName": "C. Ross",
"action": "Do Not Close",
"datetime": "2012-07-18 13:24:24Z"
},
"/q/11529079/64976": {
"postId": 11529079,
"postTitle": "mp4 won't play subsequent times on ipod touch [closed]",
"userId": 64976,
"userName": "J. Steen",
"action": "Close",
"datetime": "2012-07-18 13:24:05Z"
},
"/q/11535655/16487": {
"postId": 11535655,
"postTitle": "Cannot create object file for simple C program [closed]",
"userId": 16487,
"userName": "C. Ross",
"action": "Close",
"datetime": "2012-07-18 13:23:36Z"
},
"/q/11534284/64976": {
"postId": 11534284,
"postTitle": "ERROR /bin/sh: stbuild: not found",
"userId": 64976,
"userName": "J. Steen",
"action": "Close",
"datetime": "2012-07-18 13:23:19Z"
},
"/q/11539366/64976": {
"postId": 11539366,
"postTitle": "What happening when typing in the browser URL?",
"userId": 64976,
"userName": "J. Steen",
"action": "Close",
"datetime": "2012-07-18 13:23:01Z"
},
"/q/11505777/16487": {
"postId": 11505777,
"postTitle": "I want to synchronize my local folder with ftp folder via c#.net",
"userId": 16487,
"userName": "C. Ross",
"action": "Close",
"datetime": "2012-07-18 13:22:54Z"
},
"/q/11540429/64976": {
"postId": 11540429,
"postTitle": "How to move my wordpress website from localhost to Server?",
"userId": 64976,
"userName": "J. Steen",
"action": "Close",
"datetime": "2012-07-18 13:22:39Z"
},
"/q/11516759/64976": {
"postId": 11516759,
"postTitle": "Sorting Tree Node and tacking nodes",
"userId": 64976,
"userName": "J. Steen",
"action": "Close",
"datetime": "2012-07-18 13:21:27Z"
},
"/q/11351196/16487": {
"postId": 11351196,
"postTitle": "Determine what day of week the week starts with",
"userId": 16487,
"userName": "C. Ross",
"action": "Close",
"datetime": "2012-07-18 13:21:19Z"
},
"/q/11508079/64976": {
"postId": 11508079,
"postTitle": "PHP downloading large files from web server to local server issue [closed]",
"userId": 64976,
"userName": "J. Steen",
"action": "Close",
"datetime": "2012-07-18 13:20:10Z"
},
"/q/7294006/16487": {
"postId": 7294006,
"postTitle": "UNIX: Static library linked to a static library [closed]",
"userId": 16487,
"userName": "C. Ross",
"action": "Close",
"datetime": "2012-07-18 13:19:37Z"
},
"/q/1686390/64976": {
"postId": 1686390,
"postTitle": "Python-equivalent of short-form “if” in C++ [closed]",
"userId": 64976,
"userName": "J. Steen",
"action": "Close",
"datetime": "2012-07-18 13:19:30Z"
},
"/q/11516400/644348": {
"postId": 11516400,
"postTitle": "log4j: Error occured while converting date",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 13:18:45Z"
},
"/q/11506192/64976": {
"postId": 11506192,
"postTitle": "After active directory settings where will be the registry key created",
"userId": 64976,
"userName": "J. Steen",
"action": "Close",
"datetime": "2012-07-18 13:18:26Z"
},
"/q/11501034/64976": {
"postId": 11501034,
"postTitle": "PHP5 order of function parameters [closed]",
"userId": 64976,
"userName": "J. Steen",
"action": "Close",
"datetime": "2012-07-18 13:15:43Z"
},
"/q/11537068/64976": {
"postId": 11537068,
"postTitle": "FreeSwitch IP PBX server",
"userId": 64976,
"userName": "J. Steen",
"action": "Close",
"datetime": "2012-07-18 13:15:08Z"
},
"/q/11536062/64976": {
"postId": 11536062,
"postTitle": "C# downloading .swf file from website [closed]",
"userId": 64976,
"userName": "J. Steen",
"action": "Close",
"datetime": "2012-07-18 13:14:12Z"
},
"/q/11515227/64976": {
"postId": 11515227,
"postTitle": "how kill mysqld started by mysqld_safe on mac",
"userId": 64976,
"userName": "J. Steen",
"action": "Close",
"datetime": "2012-07-18 13:13:30Z"
},
"/q/11494637/64976": {
"postId": 11494637,
"postTitle": "How do I install an icon with an underscore in it's name with xgd-menu?",
"userId": 64976,
"userName": "J. Steen",
"action": "Close",
"datetime": "2012-07-18 13:13:10Z"
},
"/q/11518355/64976": {
"postId": 11518355,
"postTitle": "get Server and Database Name in Text boxes [closed]",
"userId": 64976,
"userName": "J. Steen",
"action": "Close",
"datetime": "2012-07-18 13:11:53Z"
},
"/q/11536135/64976": {
"postId": 11536135,
"postTitle": "Finding Research Topic for GPGPU [closed]",
"userId": 64976,
"userName": "J. Steen",
"action": "Close",
"datetime": "2012-07-18 13:10:21Z"
},
"/q/11538377/612429": {
"postId": 11538377,
"postTitle": "Change my PC IP programmatically [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 13:09:58Z"
},
"/q/11525243/64976": {
"postId": 11525243,
"postTitle": "Mails sent by redmine from configured gmail id marked as SPAM",
"userId": 64976,
"userName": "J. Steen",
"action": "Close",
"datetime": "2012-07-18 13:09:53Z"
},
"/q/11519533/612429": {
"postId": 11519533,
"postTitle": "How to encapsulate OpenGL functions into C++ classes",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-18 13:09:48Z"
},
"/q/11511228/64976": {
"postId": 11511228,
"postTitle": "JSOn Decode and Map to DB Class?",
"userId": 64976,
"userName": "J. Steen",
"action": "Close",
"datetime": "2012-07-18 13:07:16Z"
},
"/q/11540412/64976": {
"postId": 11540412,
"postTitle": "Printing Bill in ASP.net through thermal print",
"userId": 64976,
"userName": "J. Steen",
"action": "Close",
"datetime": "2012-07-18 13:05:15Z"
},
"/q/11516188/64976": {
"postId": 11516188,
"postTitle": "How to customize php built-in web server [closed]",
"userId": 64976,
"userName": "J. Steen",
"action": "Close",
"datetime": "2012-07-18 13:04:45Z"
},
"/q/11522244/64976": {
"postId": 11522244,
"postTitle": "Having an overloaded operator<< compiler cannot find it [closed]",
"userId": 64976,
"userName": "J. Steen",
"action": "Close",
"datetime": "2012-07-18 13:03:43Z"
},
"/q/1950951/64976": {
"postId": 1950951,
"postTitle": "What technology is behind OneTrueMedia.com?",
"userId": 64976,
"userName": "J. Steen",
"action": "Close",
"datetime": "2012-07-18 13:02:27Z"
},
"/q/11520331/64976": {
"postId": 11520331,
"postTitle": "How to Use GetEnumerator() [closed]",
"userId": 64976,
"userName": "J. Steen",
"action": "Close",
"datetime": "2012-07-18 13:02:08Z"
},
"/q/11521343/64976": {
"postId": 11521343,
"postTitle": "How to get twitter like url appended string i.e. twitter inc? [closed]",
"userId": 64976,
"userName": "J. Steen",
"action": "Close",
"datetime": "2012-07-18 13:01:17Z"
},
"/q/11522084/64976": {
"postId": 11522084,
"postTitle": "Google Analytics has not been enabled by the administrator of the domain",
"userId": 64976,
"userName": "J. Steen",
"action": "Close",
"datetime": "2012-07-18 13:00:01Z"
},
"/q/10522760/644348": {
"postId": 10522760,
"postTitle": "Does C++ have an API Specification? [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 12:59:36Z"
},
"/q/11531862/644348": {
"postId": 11531862,
"postTitle": "Changing the complete shell script program to awk",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 12:58:48Z"
},
"/q/2810255/64976": {
"postId": 2810255,
"postTitle": "connecting visual studio 2008 with ms access 2007",
"userId": 64976,
"userName": "J. Steen",
"action": "Close",
"datetime": "2012-07-18 12:57:50Z"
},
"/q/11540713/644348": {
"postId": 11540713,
"postTitle": "Create tableview like Facebook timeline… iPhone app [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 12:57:46Z"
},
"/q/11536268/64976": {
"postId": 11536268,
"postTitle": "Rails bundle install error",
"userId": 64976,
"userName": "J. Steen",
"action": "Close",
"datetime": "2012-07-18 12:57:29Z"
},
"/q/11540156/644348": {
"postId": 11540156,
"postTitle": "Trouble with CocoaTouch",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 12:57:29Z"
},
"/q/11538288/644348": {
"postId": 11538288,
"postTitle": "iphone app crashing rarely can any one tell me reason for crash with following Log?",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 12:57:02Z"
},
"/q/11462826/95": {
"postId": 11462826,
"postTitle": "Shape vs Opacity?",
"userId": 95,
"userName": "Marek Grzenkowicz",
"action": "Do Not Close",
"datetime": "2012-07-18 12:56:50Z"
},
"/q/11540249/644348": {
"postId": 11540249,
"postTitle": "Integrate Facebook comments with iOS application [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 12:56:17Z"
},
"/q/11509187/64976": {
"postId": 11509187,
"postTitle": "List of Assemblies in a different project within Solution VS2010",
"userId": 64976,
"userName": "J. Steen",
"action": "Close",
"datetime": "2012-07-18 12:55:55Z"
},
"/q/11518657/95": {
"postId": 11518657,
"postTitle": "Which JSON API is good [closed]",
"userId": 95,
"userName": "Marek Grzenkowicz",
"action": "Close",
"datetime": "2012-07-18 12:55:52Z"
},
"/q/11539293/95": {
"postId": 11539293,
"postTitle": "Unsecured MySQL 'root'@'localhost' account accessed remotely? [migrated]",
"userId": 95,
"userName": "Marek Grzenkowicz",
"action": "Close",
"datetime": "2012-07-18 12:55:28Z"
},
"/q/11537812/95": {
"postId": 11537812,
"postTitle": "Download and Install PHP and Configure Apache for PHP support [closed]",
"userId": 95,
"userName": "Marek Grzenkowicz",
"action": "Close",
"datetime": "2012-07-18 12:54:12Z"
},
"/q/11522541/95": {
"postId": 11522541,
"postTitle": "Can some give me link for pymedia to support Python 2.7 [closed]",
"userId": 95,
"userName": "Marek Grzenkowicz",
"action": "Close",
"datetime": "2012-07-18 12:53:34Z"
},
"/q/11530876/95": {
"postId": 11530876,
"postTitle": "SQL smart roundings help needed",
"userId": 95,
"userName": "Marek Grzenkowicz",
"action": "Do Not Close",
"datetime": "2012-07-18 12:52:24Z"
},
"/q/11526819/413127": {
"postId": 11526819,
"postTitle": "Step through a release version in Android",
"userId": 413127,
"userName": "Blundell",
"action": "Close",
"datetime": "2012-07-18 12:33:48Z"
},
"/q/11504635/413127": {
"postId": 11504635,
"postTitle": "layout margin for text view programmatically",
"userId": 413127,
"userName": "Blundell",
"action": "Close",
"datetime": "2012-07-18 12:33:27Z"
},
"/q/11532368/413127": {
"postId": 11532368,
"postTitle": "RelativeLayout with vertical centered at right",
"userId": 413127,
"userName": "Blundell",
"action": "Do Not Close",
"datetime": "2012-07-18 12:33:00Z"
},
"/q/11515695/413127": {
"postId": 11515695,
"postTitle": "How to squish pixels on android 2.2 (and above)",
"userId": 413127,
"userName": "Blundell",
"action": "Close",
"datetime": "2012-07-18 12:32:23Z"
},
"/q/11501418/1268895": {
"postId": 11501418,
"postTitle": "can we able to Create File Object From InputStream",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Do Not Close",
"datetime": "2012-07-18 12:32:13Z"
},
"/q/11533196/1268895": {
"postId": 11533196,
"postTitle": "SQLite and MySQL",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 12:31:57Z"
},
"/q/11510415/1268895": {
"postId": 11510415,
"postTitle": "How to share Java project with other developers?",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Do Not Close",
"datetime": "2012-07-18 12:30:47Z"
},
"/q/11522439/1268895": {
"postId": 11522439,
"postTitle": "what is the difference between tracking profiles in geoloqi?",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Do Not Close",
"datetime": "2012-07-18 12:30:34Z"
},
"/q/11539178/1268895": {
"postId": 11539178,
"postTitle": "How do I implement a serializableBufferedWriter in Java?",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Do Not Close",
"datetime": "2012-07-18 12:30:14Z"
},
"/q/11512157/1268895": {
"postId": 11512157,
"postTitle": "How to measure time between taps up to milliseconds?",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 12:30:03Z"
},
"/q/11541303/1268895": {
"postId": 11541303,
"postTitle": "How to create animation for text view",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Do Not Close",
"datetime": "2012-07-18 12:29:19Z"
},
"/q/11523983/1268895": {
"postId": 11523983,
"postTitle": "WSO2 ESB what if for?",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 12:29:06Z"
},
"/q/11535206/1268895": {
"postId": 11535206,
"postTitle": "How to overload a method with generic parameter in java? [closed]",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Do Not Close",
"datetime": "2012-07-18 12:28:34Z"
},
"/q/11516603/1268895": {
"postId": 11516603,
"postTitle": "android customized view flipper [closed]",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 12:28:09Z"
},
"/q/3421499/1268895": {
"postId": 3421499,
"postTitle": "STRING palindrome [closed]",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 12:27:45Z"
},
"/q/11499882/1268895": {
"postId": 11499882,
"postTitle": "Android in Local Network without internet connection",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 12:27:28Z"
},
"/q/11534226/1268895": {
"postId": 11534226,
"postTitle": "Mimic Peripheral behavior using a programming language [closed]",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Do Not Close",
"datetime": "2012-07-18 12:27:04Z"
},
"/q/10064190/1268895": {
"postId": 10064190,
"postTitle": "Making a pattern finger GUI in android [closed]",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 12:26:42Z"
},
"/q/11518223/1268895": {
"postId": 11518223,
"postTitle": "Android phone performance",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 12:26:30Z"
},
"/q/9059275/1268895": {
"postId": 9059275,
"postTitle": "Is there some way to get the SQL string generated by SQLiteDatabase.query()?",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Do Not Close",
"datetime": "2012-07-18 12:26:09Z"
},
"/q/11517522/1268895": {
"postId": 11517522,
"postTitle": "XPATH expression parser [closed]",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 12:25:51Z"
},
"/q/11498679/1268895": {
"postId": 11498679,
"postTitle": "How o set MAC address in WAR file",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Do Not Close",
"datetime": "2012-07-18 12:25:05Z"
},
"/q/11531658/1268895": {
"postId": 11531658,
"postTitle": "How can I embed aiml parser in java [closed]",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Do Not Close",
"datetime": "2012-07-18 12:24:47Z"
},
"/q/11533630/1268895": {
"postId": 11533630,
"postTitle": "Transfer an image: Client(phone)-Server(laptop running apache) to and fro transfer",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 12:24:39Z"
},
"/q/11502354/1268895": {
"postId": 11502354,
"postTitle": "Language redirect in java",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 12:24:21Z"
},
"/q/11503124/1268895": {
"postId": 11503124,
"postTitle": "How to access to calling and manage call's [closed]",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 12:24:02Z"
},
"/q/11234380/1268895": {
"postId": 11234380,
"postTitle": "One-word naming convention for “send immediately”",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 12:23:47Z"
},
"/q/9775380/1268895": {
"postId": 9775380,
"postTitle": "android odbc connection",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 12:23:32Z"
},
"/q/9816409/1268895": {
"postId": 9816409,
"postTitle": "Retrive values from SQLite database",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Do Not Close",
"datetime": "2012-07-18 12:22:54Z"
},
"/q/11520504/1268895": {
"postId": 11520504,
"postTitle": "query different in java that in mysql [closed]",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 12:22:18Z"
},
"/q/11538734/1268895": {
"postId": 11538734,
"postTitle": "Data Structure in array NullPointerException [closed]",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Do Not Close",
"datetime": "2012-07-18 12:21:29Z"
},
"/q/11532150/1268895": {
"postId": 11532150,
"postTitle": "php sign data with RSA and verify in java",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Do Not Close",
"datetime": "2012-07-18 12:21:04Z"
},
"/q/8819822/1268895": {
"postId": 8819822,
"postTitle": "Async Task Error Handling",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 12:20:49Z"
},
"/q/11520063/1268895": {
"postId": 11520063,
"postTitle": "Android:Determine the GPS signal strength",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Do Not Close",
"datetime": "2012-07-18 12:20:11Z"
},
"/q/11530095/1268895": {
"postId": 11530095,
"postTitle": "How I run flash video on android? [closed]",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 12:19:59Z"
},
"/q/11537515/1268895": {
"postId": 11537515,
"postTitle": "Printing Using Java Desktop application",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 12:19:20Z"
},
"/q/11519478/1268895": {
"postId": 11519478,
"postTitle": "What's the best classification method for capturing packets in heavy traffic",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Do Not Close",
"datetime": "2012-07-18 12:18:40Z"
},
"/q/11511399/1268895": {
"postId": 11511399,
"postTitle": "How to store list of countries in Java",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 12:18:32Z"
},
"/q/11527479/1268895": {
"postId": 11527479,
"postTitle": "Get event click link in a webview Android [closed]",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 12:18:14Z"
},
"/q/11534661/124259": {
"postId": 11534661,
"postTitle": "Fedex Api Rate Webservice [closed]",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-18 11:54:34Z"
},
"/q/11514956/124259": {
"postId": 11514956,
"postTitle": "Why does HTTP Error 500 come up with my appengine app [closed]",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-18 11:54:16Z"
},
"/q/11526814/124259": {
"postId": 11526814,
"postTitle": "What would be the most valuable programming language to know in the next ten years? [closed]",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-18 11:53:28Z"
},
"/q/2357685/124259": {
"postId": 2357685,
"postTitle": "How do you rewrite/recode a website to be scalable? [closed]",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-18 11:53:16Z"
},
"/q/11505847/124259": {
"postId": 11505847,
"postTitle": "MAMP MySQL seems to be running extremely slow",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-18 11:48:51Z"
},
"/q/11535223/124259": {
"postId": 11535223,
"postTitle": "Map application which show a current location",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-18 11:47:49Z"
},
"/q/11508682/124259": {
"postId": 11508682,
"postTitle": "mapping Google Apps to Appengine error 1000 [closed]",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-18 11:47:23Z"
},
"/q/11502794/124259": {
"postId": 11502794,
"postTitle": "Exporting a 3d model as 3d point cloud in blender [closed]",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-18 11:47:02Z"
},
"/q/11530573/124259": {
"postId": 11530573,
"postTitle": "Database Design for file uploading on posts, comments and profile pages",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-18 11:46:40Z"
},
"/q/11498174/124259": {
"postId": 11498174,
"postTitle": "how to coding search filter in java",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-18 11:39:03Z"
},
"/q/11501664/124259": {
"postId": 11501664,
"postTitle": "Qt QML and OpenGL",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-18 11:38:46Z"
},
"/q/9590776/124259": {
"postId": 9590776,
"postTitle": "Themeforest & Primefaces",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-18 11:38:11Z"
},
"/q/11539251/124259": {
"postId": 11539251,
"postTitle": "Javascript Pagination for dynamic content in fixed dimension [closed]",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-18 11:37:48Z"
},
"/q/11234974/644450": {
"postId": 11234974,
"postTitle": "Google Custom Search API another solution for Tumblr Search?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 11:28:09Z"
},
"/q/4744439/644450": {
"postId": 4744439,
"postTitle": "How to play video using phonon [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 11:27:38Z"
},
"/q/4459911/592182": {
"postId": 4459911,
"postTitle": "please explain this code…? [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-18 11:24:32Z"
},
"/q/11533886/592182": {
"postId": 11533886,
"postTitle": "jQuery plug-in data access — performance hit?",
"userId": 592182,
"userName": "forsvarir",
"action": "Do Not Close",
"datetime": "2012-07-18 11:23:56Z"
},
"/q/11529252/592182": {
"postId": 11529252,
"postTitle": "Switching between three states of the hyperlink [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-18 11:22:03Z"
},
"/q/11535524/592182": {
"postId": 11535524,
"postTitle": "Using jQuery in Multiple Places on a Page [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-18 11:18:46Z"
},
"/q/11527887/644450": {
"postId": 11527887,
"postTitle": "PostgreSQL table to HTML [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 11:18:24Z"
},
"/q/11513010/644450": {
"postId": 11513010,
"postTitle": "webpage highlight more info box [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 11:18:11Z"
},
"/q/11528751/1268895": {
"postId": 11528751,
"postTitle": "Quickest way to evaluate the contents of a text box? [closed]",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 11:11:31Z"
},
"/q/11507913/1268895": {
"postId": 11507913,
"postTitle": "Change row Background in JTable Java",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 11:10:55Z"
},
"/q/11520299/1268895": {
"postId": 11520299,
"postTitle": "pass value from one activity to another activity",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Do Not Close",
"datetime": "2012-07-18 11:10:05Z"
},
"/q/11519610/1268895": {
"postId": 11519610,
"postTitle": "Proximity-Based Automatic Garage Door Opener",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 11:09:48Z"
},
"/q/11537472/1268895": {
"postId": 11537472,
"postTitle": "not getting focus on buttons",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 11:09:19Z"
},
"/q/11512957/1268895": {
"postId": 11512957,
"postTitle": "Android Clip Sub View",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 11:08:37Z"
},
"/q/11535223/1268895": {
"postId": 11535223,
"postTitle": "Map application which show a current location",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 11:07:17Z"
},
"/q/11501341/1268895": {
"postId": 11501341,
"postTitle": "Android Checkbox for firefox,Chrome,IE8 [closed]",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 11:06:44Z"
},
"/q/11519947/1268895": {
"postId": 11519947,
"postTitle": "Create app like HTC Sense weather widget",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 11:06:24Z"
},
"/q/11524423/1268895": {
"postId": 11524423,
"postTitle": "Possibility of inserting many rows in to table with single database hit",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 11:05:58Z"
},
"/q/11537005/1268895": {
"postId": 11537005,
"postTitle": "Why chose 31 to do the multiplication in the hashcode() implementation ? [closed]",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 11:05:28Z"
},
"/q/11531845/1268895": {
"postId": 11531845,
"postTitle": "How to going about creating an interactive map in Android",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Do Not Close",
"datetime": "2012-07-18 11:04:58Z"
},
"/q/11533331/1268895": {
"postId": 11533331,
"postTitle": "Set alpha for the Button in a Dialog",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Do Not Close",
"datetime": "2012-07-18 11:04:44Z"
},
"/q/11536401/1268895": {
"postId": 11536401,
"postTitle": "fail to load mp4 stream in activity",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 11:04:30Z"
},
"/q/11532993/1268895": {
"postId": 11532993,
"postTitle": "How to send address in Android Application to Google Maps",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 11:04:03Z"
},
"/q/11531574/1268895": {
"postId": 11531574,
"postTitle": "Loading language at run time - pushed by Server",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Close",
"datetime": "2012-07-18 11:03:35Z"
},
"/q/11523049/1268895": {
"postId": 11523049,
"postTitle": "Heap space problems when using ExecutorService",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Do Not Close",
"datetime": "2012-07-18 11:03:09Z"
},
"/q/11531613/1268895": {
"postId": 11531613,
"postTitle": "Errors with Tesseract in Android",
"userId": 1268895,
"userName": "WATTO Studios",
"action": "Do Not Close",
"datetime": "2012-07-18 11:02:59Z"
},
"/q/11534485/255049": {
"postId": 11534485,
"postTitle": "Automate the process as in video file [closed]",
"userId": 255049,
"userName": "Necrolis",
"action": "Close",
"datetime": "2012-07-18 10:55:32Z"
},
"/q/11534258/255049": {
"postId": 11534258,
"postTitle": "Need Sample Code to display more than one widget(widget size is equal to frame) in Fixed Size Frame using Scroll Bar in QT",
"userId": 255049,
"userName": "Necrolis",
"action": "Close",
"datetime": "2012-07-18 10:55:10Z"
},
"/q/988363/255049": {
"postId": 988363,
"postTitle": "How do you debug your JavaScript code?",
"userId": 255049,
"userName": "Necrolis",
"action": "Do Not Close",
"datetime": "2012-07-18 10:54:46Z"
},
"/q/3857229/255049": {
"postId": 3857229,
"postTitle": "Check if C++ Array is Null",
"userId": 255049,
"userName": "Necrolis",
"action": "Do Not Close",
"datetime": "2012-07-18 10:54:26Z"
},
"/q/11516707/255049": {
"postId": 11516707,
"postTitle": "Check if the number is an even thousand in binary?",
"userId": 255049,
"userName": "Necrolis",
"action": "Do Not Close",
"datetime": "2012-07-18 10:54:07Z"
},
"/q/11519533/255049": {
"postId": 11519533,
"postTitle": "How to encapsulate OpenGL functions into C++ classes",
"userId": 255049,
"userName": "Necrolis",
"action": "Close",
"datetime": "2012-07-18 10:53:55Z"
},
"/q/11538364/255049": {
"postId": 11538364,
"postTitle": "(a/b) mod m when m is not a prime [closed]",
"userId": 255049,
"userName": "Necrolis",
"action": "Do Not Close",
"datetime": "2012-07-18 10:53:36Z"
},
"/q/11528526/255049": {
"postId": 11528526,
"postTitle": "Extracting file from packets on the fly",
"userId": 255049,
"userName": "Necrolis",
"action": "Do Not Close",
"datetime": "2012-07-18 10:53:29Z"
},
"/q/11536823/255049": {
"postId": 11536823,
"postTitle": "String as function argument: how to work with the memory?",
"userId": 255049,
"userName": "Necrolis",
"action": "Close",
"datetime": "2012-07-18 10:52:36Z"
},
"/q/11539179/255049": {
"postId": 11539179,
"postTitle": "Can a .s file be executed directly?",
"userId": 255049,
"userName": "Necrolis",
"action": "Do Not Close",
"datetime": "2012-07-18 10:52:11Z"
},
"/q/11493042/644450": {
"postId": 11493042,
"postTitle": "nautilus not working [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 10:47:42Z"
},
"/q/263094/644450": {
"postId": 263094,
"postTitle": "Is OpenID a flawed concept?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 10:47:33Z"
},
"/q/11533921/644450": {
"postId": 11533921,
"postTitle": "where is org.apache.derby.jdbc.ClientDriver?",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-18 10:47:27Z"
},
"/q/11537005/644450": {
"postId": 11537005,
"postTitle": "Why chose 31 to do the multiplication in the hashcode() implementation ? [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 10:47:06Z"
},
"/q/11539214/644450": {
"postId": 11539214,
"postTitle": "Is it possible to pop up print dialogue while printing a document from java?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 10:46:04Z"
},
"/q/11538377/644450": {
"postId": 11538377,
"postTitle": "Change my PC IP programmatically [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 10:45:20Z"
},
"/q/2715004/644450": {
"postId": 2715004,
"postTitle": "how to use JComboBox using Enum in Dialog Box",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 10:44:55Z"
},
"/q/11510456/360899": {
"postId": 11510456,
"postTitle": "Examples of Sinatra + Postgres + Activerecord apps [closed]",
"userId": 360899,
"userName": "lesmana",
"action": "Close",
"datetime": "2012-07-18 10:26:39Z"
},
"/q/11515668/360899": {
"postId": 11515668,
"postTitle": "multiple ftp servers on debian",
"userId": 360899,
"userName": "lesmana",
"action": "Close",
"datetime": "2012-07-18 10:26:01Z"
},
"/q/11504300/360899": {
"postId": 11504300,
"postTitle": "How to get Id when Name Is Selected",
"userId": 360899,
"userName": "lesmana",
"action": "Close",
"datetime": "2012-07-18 10:25:14Z"
},
"/q/11536195/360899": {
"postId": 11536195,
"postTitle": "When I clean project in android using clean option, R.java is removed from gen file [closed]",
"userId": 360899,
"userName": "lesmana",
"action": "Close",
"datetime": "2012-07-18 10:24:37Z"
},
"/q/257476/360899": {
"postId": 257476,
"postTitle": "Your college CS experience",
"userId": 360899,
"userName": "lesmana",
"action": "Close",
"datetime": "2012-07-18 10:23:08Z"
},
"/q/11530095/360899": {
"postId": 11530095,
"postTitle": "How I run flash video on android? [closed]",
"userId": 360899,
"userName": "lesmana",
"action": "Close",
"datetime": "2012-07-18 10:22:45Z"
},
"/q/11536934/644450": {
"postId": 11536934,
"postTitle": "How to get an alphanumeric String from any string in Java? [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 10:04:19Z"
},
"/q/11538734/644450": {
"postId": 11538734,
"postTitle": "Data Structure in array NullPointerException [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 10:03:48Z"
},
"/q/11500533/644450": {
"postId": 11500533,
"postTitle": "In java code, how to access maven properties defined in pom?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 10:03:33Z"
},
"/q/11532878/644450": {
"postId": 11532878,
"postTitle": "Observer Pattern Example [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 10:02:53Z"
},
"/q/11516883/20984": {
"postId": 11516883,
"postTitle": "How to copy images in one folder to another folder using c#? [closed]",
"userId": 20984,
"userName": "Luc Touraille",
"action": "Close",
"datetime": "2012-07-18 10:01:24Z"
},
"/q/11536596/644450": {
"postId": 11536596,
"postTitle": "how to check and close if an excel file is already open in java [closed]",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-18 10:00:17Z"
},
"/q/11523641/20984": {
"postId": 11523641,
"postTitle": "embed a DLL into a console application [closed]",
"userId": 20984,
"userName": "Luc Touraille",
"action": "Close",
"datetime": "2012-07-18 09:59:59Z"
},
"/q/11518657/713558": {
"postId": 11518657,
"postTitle": "Which JSON API is good [closed]",
"userId": 713558,
"userName": "hypercrypt",
"action": "Close",
"datetime": "2012-07-18 09:59:42Z"
},
"/q/11522504/713558": {
"postId": 11522504,
"postTitle": "The incoming token did not have a signature at the end of the token",
"userId": 713558,
"userName": "hypercrypt",
"action": "Close",
"datetime": "2012-07-18 09:59:30Z"
},
"/q/11515376/713558": {
"postId": 11515376,
"postTitle": "How to add an object by tapping the screen Xcode",
"userId": 713558,
"userName": "hypercrypt",
"action": "Close",
"datetime": "2012-07-18 09:59:16Z"
},
"/q/11537620/713558": {
"postId": 11537620,
"postTitle": "Image SlideShow automatic in iOS [closed]",
"userId": 713558,
"userName": "hypercrypt",
"action": "Close",
"datetime": "2012-07-18 09:59:07Z"
},
"/q/11525919/713558": {
"postId": 11525919,
"postTitle": "How to delete a bad trigger [closed]",
"userId": 713558,
"userName": "hypercrypt",
"action": "Do Not Close",
"datetime": "2012-07-18 09:58:49Z"
},
"/q/11519970/569662": {
"postId": 11519970,
"postTitle": "MongoDB capacity planning",
"userId": 569662,
"userName": "hugh",
"action": "Do Not Close",
"datetime": "2012-07-18 09:41:21Z"
},
"/q/11528102/569662": {
"postId": 11528102,
"postTitle": "Selecting only one result row on an OR condition",
"userId": 569662,
"userName": "hugh",
"action": "Do Not Close",
"datetime": "2012-07-18 09:41:00Z"
},
"/q/11516842/644348": {
"postId": 11516842,
"postTitle": "How did this pinterest pin get a promotional badge?",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 09:38:15Z"
},
"/q/11505685/644348": {
"postId": 11505685,
"postTitle": "Programming Language Syntax Parser (Convert Perl scripts to Lua) [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 09:38:04Z"
},
"/q/3247828/644348": {
"postId": 3247828,
"postTitle": "question about inline assembler [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 09:37:40Z"
},
"/q/11533890/644348": {
"postId": 11533890,
"postTitle": "Run a C/C++ application in Eclipse Runtime Workbench [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 09:37:05Z"
},
"/q/11506821/644348": {
"postId": 11506821,
"postTitle": "How to call a function with parameters and user console input in C++?",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 09:36:39Z"
},
"/q/11449982/644348": {
"postId": 11449982,
"postTitle": "csv file with no comma",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 09:36:27Z"
},
"/q/11503302/644348": {
"postId": 11503302,
"postTitle": "Visual C++ GUI explanation needed",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 09:36:02Z"
},
"/q/11501810/644348": {
"postId": 11501810,
"postTitle": "strcmp char array in C [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 09:08:55Z"
},
"/q/11533321/644348": {
"postId": 11533321,
"postTitle": "iOS: issue submitting app on 2nd attempt",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 09:08:25Z"
},
"/q/11499009/644348": {
"postId": 11499009,
"postTitle": "Fedex Api Rate Calculator",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 09:07:37Z"
},
"/q/11537515/644450": {
"postId": 11537515,
"postTitle": "Printing Using Java Desktop application",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 09:06:52Z"
},
"/q/11535669/644348": {
"postId": 11535669,
"postTitle": "trouble in making the if stament work with the math [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 09:06:48Z"
},
"/q/11523983/644450": {
"postId": 11523983,
"postTitle": "WSO2 ESB what if for?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 09:06:36Z"
},
"/q/11534090/644348": {
"postId": 11534090,
"postTitle": "Why do I really need to use a protocol [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 09:06:32Z"
},
"/q/11534660/644348": {
"postId": 11534660,
"postTitle": "xcode can't find carboncore framework in coreservice",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 09:05:53Z"
},
"/q/11536554/644348": {
"postId": 11536554,
"postTitle": "How to compare time in objc [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 09:04:30Z"
},
"/q/11534401/644348": {
"postId": 11534401,
"postTitle": "How to make 360 degree view of an image on touch or swipe [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 09:04:07Z"
},
"/q/10779586/644348": {
"postId": 10779586,
"postTitle": "Successfully sent the notification but never received on iphone/ipad [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 09:03:43Z"
},
"/q/902332/644348": {
"postId": 902332,
"postTitle": "What are the advantages of objective c over c++? [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 09:03:26Z"
},
"/q/11523049/644450": {
"postId": 11523049,
"postTitle": "Heap space problems when using ExecutorService",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 09:03:14Z"
},
"/q/11534673/644348": {
"postId": 11534673,
"postTitle": "Hi can anyone suggest me How can I call through app automatically and comes back to app after call ends [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 09:03:05Z"
},
"/q/11524423/644450": {
"postId": 11524423,
"postTitle": "Possibility of inserting many rows in to table with single database hit",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 09:03:02Z"
},
"/q/2363103/644450": {
"postId": 2363103,
"postTitle": "Would it be fair to say learning Java would make me a better PHP OOP Developer?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 09:02:36Z"
},
"/q/11537249/644348": {
"postId": 11537249,
"postTitle": "RSS feed iOS Apps with Storyboard?",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 09:02:28Z"
},
"/q/11515608/569662": {
"postId": 11515608,
"postTitle": "most efficient way to write this sql query?",
"userId": 569662,
"userName": "hugh",
"action": "Do Not Close",
"datetime": "2012-07-18 08:31:09Z"
},
"/q/11521566/25111": {
"postId": 11521566,
"postTitle": "Get P2P software information C# [closed]",
"userId": 25111,
"userName": "Jon",
"action": "Close",
"datetime": "2012-07-18 08:25:11Z"
},
"/q/8707355/19624": {
"postId": 8707355,
"postTitle": "Strtolower vs strtoupper [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 08:25:07Z"
},
"/q/3003364/25111": {
"postId": 3003364,
"postTitle": "validating user's input in wizard control [closed]",
"userId": 25111,
"userName": "Jon",
"action": "Close",
"datetime": "2012-07-18 08:24:57Z"
},
"/q/11533404/19624": {
"postId": 11533404,
"postTitle": "Suck a file/dirtree into a given folder [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 08:24:31Z"
},
"/q/11528274/25111": {
"postId": 11528274,
"postTitle": "MVC3 Popup Dialog positioning",
"userId": 25111,
"userName": "Jon",
"action": "Close",
"datetime": "2012-07-18 08:24:12Z"
},
"/q/11519384/25111": {
"postId": 11519384,
"postTitle": "Escape an xml string while creating xml file",
"userId": 25111,
"userName": "Jon",
"action": "Close",
"datetime": "2012-07-18 08:22:32Z"
},
"/q/11530718/19624": {
"postId": 11530718,
"postTitle": "Convert DateTime Without Adjusting for Time Zone",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Do Not Close",
"datetime": "2012-07-18 08:13:27Z"
},
"/q/11492806/19624": {
"postId": 11492806,
"postTitle": "Google plus content sharing [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 08:10:38Z"
},
"/q/11530050/608157": {
"postId": 11530050,
"postTitle": "Perform UI Changes on main thread using dispatch_async or performSelectorOnMainThread? [closed]",
"userId": 608157,
"userName": "David Rönnqvist",
"action": "Close",
"datetime": "2012-07-18 08:03:08Z"
},
"/q/11514930/608157": {
"postId": 11514930,
"postTitle": "How can I add selectable suggestion on textfield",
"userId": 608157,
"userName": "David Rönnqvist",
"action": "Close",
"datetime": "2012-07-18 08:01:54Z"
},
"/q/11493194/19624": {
"postId": 11493194,
"postTitle": "Newbie needs help on random record [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 08:01:14Z"
},
"/q/11533833/19624": {
"postId": 11533833,
"postTitle": "PHP mySQL table JOIN query - most efficient way?",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 08:01:00Z"
},
"/q/11523908/19624": {
"postId": 11523908,
"postTitle": "How to get the particular values in php form using get method [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 08:00:27Z"
},
"/q/11534032/19624": {
"postId": 11534032,
"postTitle": "VS 11 Remove Shortcut Bar Below Design Screen",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 08:00:18Z"
},
"/q/11509023/19624": {
"postId": 11509023,
"postTitle": "Front-end/Client Side Software [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:59:53Z"
},
"/q/11466530/19624": {
"postId": 11466530,
"postTitle": "Mono on debian error CS0234 [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:59:47Z"
},
"/q/11531534/608157": {
"postId": 11531534,
"postTitle": "action movie fx iphone [closed]",
"userId": 608157,
"userName": "David Rönnqvist",
"action": "Close",
"datetime": "2012-07-18 07:58:52Z"
},
"/q/11511228/19624": {
"postId": 11511228,
"postTitle": "JSOn Decode and Map to DB Class?",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:58:38Z"
},
"/q/11517640/19624": {
"postId": 11517640,
"postTitle": "sql query to find Which country has the maximum number of suppliers and customers",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:58:28Z"
},
"/q/3688640/608157": {
"postId": 3688640,
"postTitle": "I want to make iphone apps but do i really need to learn objective c? [closed]",
"userId": 608157,
"userName": "David Rönnqvist",
"action": "Close",
"datetime": "2012-07-18 07:58:25Z"
},
"/q/11509045/19624": {
"postId": 11509045,
"postTitle": "Create API for coordinates retrieval (X, Y, Z)",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:58:09Z"
},
"/q/11520475/19624": {
"postId": 11520475,
"postTitle": "RunWorkerCompleted exception not reported",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:57:46Z"
},
"/q/2818666/608157": {
"postId": 2818666,
"postTitle": "HTML5 frameworks and tools?",
"userId": 608157,
"userName": "David Rönnqvist",
"action": "Close",
"datetime": "2012-07-18 07:56:06Z"
},
"/q/11522158/608157": {
"postId": 11522158,
"postTitle": "iOS App - Submitting to store, validation issue",
"userId": 608157,
"userName": "David Rönnqvist",
"action": "Close",
"datetime": "2012-07-18 07:55:42Z"
},
"/q/11500681/19624": {
"postId": 11500681,
"postTitle": "How to create another controller instance in view.Yii Framework [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:55:16Z"
},
"/q/11501532/608157": {
"postId": 11501532,
"postTitle": "Attaching sqlite to xcode mail",
"userId": 608157,
"userName": "David Rönnqvist",
"action": "Close",
"datetime": "2012-07-18 07:55:12Z"
},
"/q/1963901/19624": {
"postId": 1963901,
"postTitle": "What does this symbol mean in PHP <?=",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:54:55Z"
},
"/q/11508079/19624": {
"postId": 11508079,
"postTitle": "PHP downloading large files from web server to local server issue [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:54:16Z"
},
"/q/11534569/19624": {
"postId": 11534569,
"postTitle": "Is there anything fundamentally wrong with this? [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:54:02Z"
},
"/q/11521864/608157": {
"postId": 11521864,
"postTitle": "YUV frame into a CGContext [closed]",
"userId": 608157,
"userName": "David Rönnqvist",
"action": "Close",
"datetime": "2012-07-18 07:53:48Z"
},
"/q/11529019/19624": {
"postId": 11529019,
"postTitle": "members system for OSClass CMS [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:53:33Z"
},
"/q/11517118/608157": {
"postId": 11517118,
"postTitle": "disable a UIButton",
"userId": 608157,
"userName": "David Rönnqvist",
"action": "Do Not Close",
"datetime": "2012-07-18 07:53:26Z"
},
"/q/11534732/19624": {
"postId": 11534732,
"postTitle": "Anyone install my app he is forced to be added to my friend list [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:53:13Z"
},
"/q/11535468/19624": {
"postId": 11535468,
"postTitle": "Undefined reference to 'vtable for B'",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:52:46Z"
},
"/q/11506015/608157": {
"postId": 11506015,
"postTitle": "Breakpoints not Working in Xcode 3.2.5",
"userId": 608157,
"userName": "David Rönnqvist",
"action": "Close",
"datetime": "2012-07-18 07:52:32Z"
},
"/q/11534602/19624": {
"postId": 11534602,
"postTitle": "How to get vimeo userID based on username(email) & password",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:52:03Z"
},
"/q/11534719/19624": {
"postId": 11534719,
"postTitle": "Printing a table layout panel in a windows form application [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:51:29Z"
},
"/q/11534360/19624": {
"postId": 11534360,
"postTitle": "can't edit PHP files on server; getting HTML output instead",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:51:22Z"
},
"/q/11519617/644450": {
"postId": 11519617,
"postTitle": "UnsupportedClassVersionError in upgrading from jdk6 to 7 [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 07:51:22Z"
},
"/q/11524547/644450": {
"postId": 11524547,
"postTitle": "Floats to rational numbers in Java [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 07:50:53Z"
},
"/q/11526582/644450": {
"postId": 11526582,
"postTitle": "Java: Convert bool array into a single int [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 07:50:27Z"
},
"/q/11533873/644450": {
"postId": 11533873,
"postTitle": "List of running java application?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 07:50:12Z"
},
"/q/11499792/19624": {
"postId": 11499792,
"postTitle": "different names for different providers how to identify it as a common name",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:50:06Z"
},
"/q/11530118/19624": {
"postId": 11530118,
"postTitle": "How to export charts to word in asp.net c# [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:49:47Z"
},
"/q/11519478/644450": {
"postId": 11519478,
"postTitle": "What's the best classification method for capturing packets in heavy traffic",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 07:49:19Z"
},
"/q/11530095/644450": {
"postId": 11530095,
"postTitle": "How I run flash video on android? [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 07:49:13Z"
},
"/q/11535335/19624": {
"postId": 11535335,
"postTitle": "Which code style is preferred? [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:49:11Z"
},
"/q/11530902/19624": {
"postId": 11530902,
"postTitle": "I killed a SOLR update process on an Ubuntu Server and now Tomcat6 is using all of the CPU",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:48:33Z"
},
"/q/5152369/644450": {
"postId": 5152369,
"postTitle": "how to retrieve data from a db in jsp page",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 07:48:31Z"
},
"/q/11524375/644450": {
"postId": 11524375,
"postTitle": "Slow Java Program",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 07:48:07Z"
},
"/q/11534904/592182": {
"postId": 11534904,
"postTitle": "How to zoom a jpeg image programmatically? [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-18 07:48:03Z"
},
"/q/11532993/644450": {
"postId": 11532993,
"postTitle": "How to send address in Android Application to Google Maps",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 07:47:59Z"
},
"/q/11527614/19624": {
"postId": 11527614,
"postTitle": "What do I need to study if I would be creating a program that can generate a statement(in asking form) based on paragraph? [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:47:57Z"
},
"/q/11535206/644450": {
"postId": 11535206,
"postTitle": "How to overload a method with generic parameter in java? [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 07:47:30Z"
},
"/q/11508362/19624": {
"postId": 11508362,
"postTitle": "Symbian Development on windows 7( this is not about J2ME) [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:47:16Z"
},
"/q/11534900/592182": {
"postId": 11534900,
"postTitle": "how to get id from .html() in jquery",
"userId": 592182,
"userName": "forsvarir",
"action": "Do Not Close",
"datetime": "2012-07-18 07:47:14Z"
},
"/q/11529785/644450": {
"postId": 11529785,
"postTitle": "Android TTS with Korean Language",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-18 07:46:59Z"
},
"/q/11525814/592182": {
"postId": 11525814,
"postTitle": "Jquery + CSS animation",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-18 07:46:42Z"
},
"/q/11520504/644450": {
"postId": 11520504,
"postTitle": "query different in java that in mysql [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 07:46:38Z"
},
"/q/11495579/19624": {
"postId": 11495579,
"postTitle": "GPS Dongle need to unplug and replug to update data [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:46:31Z"
},
"/q/9809853/644450": {
"postId": 9809853,
"postTitle": "About junit test suite [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 07:45:50Z"
},
"/q/11528901/592182": {
"postId": 11528901,
"postTitle": "Slow web page (Jquery + bootstrap) [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-18 07:45:13Z"
},
"/q/4516932/644450": {
"postId": 4516932,
"postTitle": "difference between slf4j and log4j",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 07:45:10Z"
},
"/q/11416915/644450": {
"postId": 11416915,
"postTitle": "Installing sun-java6-jre gives error",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 07:45:04Z"
},
"/q/11535218/644450": {
"postId": 11535218,
"postTitle": "How to request a server continuously without being bloacked?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 07:44:57Z"
},
"/q/11535723/19624": {
"postId": 11535723,
"postTitle": "link between the two dropdown lists in jsp",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:44:47Z"
},
"/q/11527512/592182": {
"postId": 11527512,
"postTitle": "No dedicated framework for MVP with ASP.NET [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Do Not Close",
"datetime": "2012-07-18 07:44:43Z"
},
"/q/11533527/644450": {
"postId": 11533527,
"postTitle": "Java Generics cannot infer type of Class<?>",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 07:44:32Z"
},
"/q/11534178/19624": {
"postId": 11534178,
"postTitle": "PHP find string and print it [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:44:22Z"
},
"/q/11535388/19624": {
"postId": 11535388,
"postTitle": "Understanding 'most vexing parse' - why allow ambiguous syntax?",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:44:15Z"
},
"/q/11498932/19624": {
"postId": 11498932,
"postTitle": "PHP - Shuffle displaying the same results?",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:43:33Z"
},
"/q/11531805/592182": {
"postId": 11531805,
"postTitle": "How to modify a CORS request (from IE8 or IE9) at Server side - to enable Spring binding",
"userId": 592182,
"userName": "forsvarir",
"action": "Do Not Close",
"datetime": "2012-07-18 07:43:30Z"
},
"/q/11521432/644450": {
"postId": 11521432,
"postTitle": "Internal Vulnerability Scan Report",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 07:43:30Z"
},
"/q/11531658/644450": {
"postId": 11531658,
"postTitle": "How can I embed aiml parser in java [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 07:43:13Z"
},
"/q/11536062/19624": {
"postId": 11536062,
"postTitle": "C# downloading .swf file from website [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:43:03Z"
},
"/q/11529836/644450": {
"postId": 11529836,
"postTitle": "Days between 2 given dates",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-18 07:42:45Z"
},
"/q/11529477/592182": {
"postId": 11529477,
"postTitle": "jQuery not working fully in Safari",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-18 07:42:43Z"
},
"/q/11526562/592182": {
"postId": 11526562,
"postTitle": "Content Sliding",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-18 07:42:06Z"
},
"/q/11529779/644450": {
"postId": 11529779,
"postTitle": "How can I determine java version installed on a system through java code?",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-18 07:42:03Z"
},
"/q/4731538/19624": {
"postId": 4731538,
"postTitle": "Best language for Video chat (similar to chat roulette) with MySQL [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:41:54Z"
},
"/q/11526923/644450": {
"postId": 11526923,
"postTitle": "Java Software Engineering [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 07:41:45Z"
},
"/q/11449177/19624": {
"postId": 11449177,
"postTitle": "How to hide file name, id and session variable in URL using php? [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:41:43Z"
},
"/q/11505553/19624": {
"postId": 11505553,
"postTitle": "MySQL table type for money",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:41:30Z"
},
"/q/11518012/569101": {
"postId": 11518012,
"postTitle": "Java swing file explorer thumbnail [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:41:16Z"
},
"/q/11524680/569101": {
"postId": 11524680,
"postTitle": "Telerik.OpenAccess.OpenAccessException was unhandled by user code",
"userId": 569101,
"userName": "j0k",
"action": "Edit",
"datetime": "2012-07-18 07:40:58Z"
},
"/q/11525919/19624": {
"postId": 11525919,
"postTitle": "How to delete a bad trigger [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:40:55Z"
},
"/q/11516400/644450": {
"postId": 11516400,
"postTitle": "log4j: Error occured while converting date",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 07:40:45Z"
},
"/q/11516918/19624": {
"postId": 11516918,
"postTitle": "Casting C# delegates [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:40:40Z"
},
"/q/11524566/569101": {
"postId": 11524566,
"postTitle": "Can you detect in Java if the code is being debugged? [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:40:29Z"
},
"/q/11516414/569101": {
"postId": 11516414,
"postTitle": "Can I connect to non-apple-approved Bluetooth device from iPhone [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:40:25Z"
},
"/q/11531634/19624": {
"postId": 11531634,
"postTitle": "How to delete from select in same table MySQL",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:40:22Z"
},
"/q/11522376/569101": {
"postId": 11522376,
"postTitle": "Masonry.js issue with the container [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:40:20Z"
},
"/q/11507288/569101": {
"postId": 11507288,
"postTitle": "Integrating html form with paypal",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:40:16Z"
},
"/q/11528845/592182": {
"postId": 11528845,
"postTitle": "How do I style the alert box with CSS?",
"userId": 592182,
"userName": "forsvarir",
"action": "Do Not Close",
"datetime": "2012-07-18 07:40:01Z"
},
"/q/8552975/569101": {
"postId": 8552975,
"postTitle": "How to run function after view finish render change [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Do Not Close",
"datetime": "2012-07-18 07:39:54Z"
},
"/q/11511118/569101": {
"postId": 11511118,
"postTitle": "How do you attach two forms together in C#? [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:39:51Z"
},
"/q/11531611/569101": {
"postId": 11531611,
"postTitle": "RNCEP with R project [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:39:39Z"
},
"/q/11507243/569101": {
"postId": 11507243,
"postTitle": "How to create report from database by clicking on a CheckBox [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:39:29Z"
},
"/q/11519432/19624": {
"postId": 11519432,
"postTitle": "How to download an attachment from a specific email in outlook in asp.net using C#? [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:39:29Z"
},
"/q/11530931/569101": {
"postId": 11530931,
"postTitle": "Decision trees vs. Neural Networks [migrated]",
"userId": 569101,
"userName": "j0k",
"action": "Do Not Close",
"datetime": "2012-07-18 07:39:25Z"
},
"/q/11429370/569101": {
"postId": 11429370,
"postTitle": "HOW TO READ FROM ANY FILE , not specific file. [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Do Not Close",
"datetime": "2012-07-18 07:39:21Z"
},
"/q/3003364/569101": {
"postId": 3003364,
"postTitle": "validating user's input in wizard control [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:39:19Z"
},
"/q/7294006/569101": {
"postId": 7294006,
"postTitle": "UNIX: Static library linked to a static library [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:39:16Z"
},
"/q/11526105/569101": {
"postId": 11526105,
"postTitle": "Why does IE implement console.log() differently from Safari, Chrome, and Firefox [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:39:08Z"
},
"/q/11529691/569101": {
"postId": 11529691,
"postTitle": "IOS iPod music rendering [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:39:05Z"
},
"/q/11513013/569101": {
"postId": 11513013,
"postTitle": "inserting text cursor in edittext ontouch [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Do Not Close",
"datetime": "2012-07-18 07:39:00Z"
},
"/q/11519805/569101": {
"postId": 11519805,
"postTitle": "How to run command [migrated]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:38:57Z"
},
"/q/3079912/569101": {
"postId": 3079912,
"postTitle": "how to read only selected text from pdf files in vb.net - visual basic language? [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Do Not Close",
"datetime": "2012-07-18 07:38:51Z"
},
"/q/11534904/644450": {
"postId": 11534904,
"postTitle": "How to zoom a jpeg image programmatically? [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 07:38:46Z"
},
"/q/11521864/569101": {
"postId": 11521864,
"postTitle": "YUV frame into a CGContext [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:38:45Z"
},
"/q/11520010/644450": {
"postId": 11520010,
"postTitle": "Is Logback mature enough to replace log4j? [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 07:38:36Z"
},
"/q/11516892/19624": {
"postId": 11516892,
"postTitle": "drawing pictures for a php project [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:38:32Z"
},
"/q/11520896/19624": {
"postId": 11520896,
"postTitle": "c# xaml windows phone 7 [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:38:28Z"
},
"/q/10693868/569101": {
"postId": 10693868,
"postTitle": "Tools to migrate from Mercurial to TFS [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Do Not Close",
"datetime": "2012-07-18 07:38:23Z"
},
"/q/11528660/644450": {
"postId": 11528660,
"postTitle": "value of private static final changes [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 07:38:23Z"
},
"/q/11516535/19624": {
"postId": 11516535,
"postTitle": "Csv cant show the corrected number",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:38:22Z"
},
"/q/11501491/569101": {
"postId": 11501491,
"postTitle": "How to put users in queue using C# and ASP.NET [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:38:17Z"
},
"/q/11522490/569101": {
"postId": 11522490,
"postTitle": "How to change iphone app to ipad app? [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:37:17Z"
},
"/q/11528960/644450": {
"postId": 11528960,
"postTitle": "how to retrieve youtube search results and their video id using java? [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 07:37:10Z"
},
"/q/11501341/569101": {
"postId": 11501341,
"postTitle": "Android Checkbox for firefox,Chrome,IE8 [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:37:01Z"
},
"/q/11532553/286116": {
"postId": 11532553,
"postTitle": "When is a UIView refreshed? Is it possible to force mid-function refresh?",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-18 07:36:59Z"
},
"/q/11520189/644450": {
"postId": 11520189,
"postTitle": "Difference between shutdown and shutdownNow of Executor Service",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-18 07:36:54Z"
},
"/q/11490837/569101": {
"postId": 11490837,
"postTitle": "Flex - ClearToolkit Framework [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:36:49Z"
},
"/q/11526356/569101": {
"postId": 11526356,
"postTitle": "How to Edit first column to the newly added row in NSTableview [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:36:34Z"
},
"/q/11498430/286116": {
"postId": 11498430,
"postTitle": "UIView embedded only in UINavigationController and UITabBarController, why?",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-18 07:36:32Z"
},
"/q/11477190/569101": {
"postId": 11477190,
"postTitle": "How to stop robots crawling pagination using robots.txt?",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:36:26Z"
},
"/q/11532664/19624": {
"postId": 11532664,
"postTitle": "how can I screen scrape in C++ (or VBA)? [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:36:19Z"
},
"/q/11499004/286116": {
"postId": 11499004,
"postTitle": "navigationController setup pop transition style",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-18 07:36:19Z"
},
"/q/11533609/644450": {
"postId": 11533609,
"postTitle": "Is it bad practice to use swing and awt together? [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 07:36:13Z"
},
"/q/11534815/644450": {
"postId": 11534815,
"postTitle": "Why JVM creating lot of class files after compiling? [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 07:36:05Z"
},
"/q/11521691/644450": {
"postId": 11521691,
"postTitle": "How to determine if -server option set on your JVM instance",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 07:35:51Z"
},
"/q/11519814/286116": {
"postId": 11519814,
"postTitle": "Combine two audio files into one in objective c",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-18 07:35:41Z"
},
"/q/11531009/569101": {
"postId": 11531009,
"postTitle": "Why is better spl_autoload_register() than __autoload()? [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:35:41Z"
},
"/q/3421499/644450": {
"postId": 3421499,
"postTitle": "STRING palindrome [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 07:35:36Z"
},
"/q/11533223/569101": {
"postId": 11533223,
"postTitle": "How to run a MySQL Query with single and double quotes",
"userId": 569101,
"userName": "j0k",
"action": "Do Not Close",
"datetime": "2012-07-18 07:35:27Z"
},
"/q/11530796/644450": {
"postId": 11530796,
"postTitle": "creating text file and saving in unix format in java",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-18 07:35:22Z"
},
"/q/11529196/569101": {
"postId": 11529196,
"postTitle": "Checking if a website exists",
"userId": 569101,
"userName": "j0k",
"action": "Do Not Close",
"datetime": "2012-07-18 07:35:20Z"
},
"/q/11500233/19624": {
"postId": 11500233,
"postTitle": "Nested form does not work in IE?",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:35:12Z"
},
"/q/11524761/569101": {
"postId": 11524761,
"postTitle": "Opening jQuery UI Dialog box with dynamic content",
"userId": 569101,
"userName": "j0k",
"action": "Do Not Close",
"datetime": "2012-07-18 07:35:06Z"
},
"/q/11526949/569101": {
"postId": 11526949,
"postTitle": "How to display the correct page number?",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:34:52Z"
},
"/q/11261068/569101": {
"postId": 11261068,
"postTitle": "Check box value doesn't come [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Do Not Close",
"datetime": "2012-07-18 07:34:44Z"
},
"/q/11531566/569101": {
"postId": 11531566,
"postTitle": "Breadcrumbs from MySQL catalog [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:34:23Z"
},
"/q/11525878/569101": {
"postId": 11525878,
"postTitle": "Code optimization with Twig",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:34:13Z"
},
"/q/11513018/19624": {
"postId": 11513018,
"postTitle": "Looking for PHP list and ACID generator [closed]",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:34:13Z"
},
"/q/11518908/569101": {
"postId": 11518908,
"postTitle": "How to show if a user's friend already using a portal using facebook PHP SDK [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:34:09Z"
},
"/q/11534668/569101": {
"postId": 11534668,
"postTitle": "How can i add Pagination bing php Search engine",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:34:05Z"
},
"/q/11530399/569101": {
"postId": 11530399,
"postTitle": "not receiving display data from mysql",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:34:02Z"
},
"/q/11533489/569101": {
"postId": 11533489,
"postTitle": "Listing elements inside an array [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:33:58Z"
},
"/q/8707355/569101": {
"postId": 8707355,
"postTitle": "Strtolower vs strtoupper [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:33:53Z"
},
"/q/4558780/569101": {
"postId": 4558780,
"postTitle": "How Scalable is Codeigniter V Other PHP Frameworks? [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Do Not Close",
"datetime": "2012-07-18 07:33:49Z"
},
"/q/11530959/569101": {
"postId": 11530959,
"postTitle": "Using PHP to Extract Content From Tags [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:33:36Z"
},
"/q/1896765/19624": {
"postId": 1896765,
"postTitle": "How can I use a class made in PHP?",
"userId": 19624,
"userName": "Richard Harrison",
"action": "Close",
"datetime": "2012-07-18 07:33:19Z"
},
"/q/11528620/569101": {
"postId": 11528620,
"postTitle": "PHP: How to access the first element of an array returned by a static function",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:33:17Z"
},
"/q/11528298/569101": {
"postId": 11528298,
"postTitle": "Thumbnail pagination by using mysql [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:33:09Z"
},
"/q/11534732/569101": {
"postId": 11534732,
"postTitle": "Anyone install my app he is forced to be added to my friend list [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:33:06Z"
},
"/q/11525876/569101": {
"postId": 11525876,
"postTitle": "my server run many service named find [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:32:56Z"
},
"/q/11521517/569101": {
"postId": 11521517,
"postTitle": "Remove Url from String by finding by .com [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:32:51Z"
},
"/q/11529019/569101": {
"postId": 11529019,
"postTitle": "members system for OSClass CMS [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:32:42Z"
},
"/q/11534522/644450": {
"postId": 11534522,
"postTitle": "Java array: 2D array dysfunction in terminal ASCII terminal game during attempt to swap elements",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-18 07:32:40Z"
},
"/q/3049090/569101": {
"postId": 3049090,
"postTitle": "Character Sets explained for Dummies! [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Do Not Close",
"datetime": "2012-07-18 07:32:38Z"
},
"/q/11522563/569101": {
"postId": 11522563,
"postTitle": "Prevent hotlinking of Amazon S3 files?",
"userId": 569101,
"userName": "j0k",
"action": "Edit",
"datetime": "2012-07-18 07:32:35Z"
},
"/q/11523908/569101": {
"postId": 11523908,
"postTitle": "How to get the particular values in php form using get method [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-18 07:31:45Z"
},
"/q/3688640/426288": {
"postId": 3688640,
"postTitle": "I want to make iphone apps but do i really need to learn objective c? [closed]",
"userId": 426288,
"userName": "Juraj Blaho",
"action": "Close",
"datetime": "2012-07-18 07:30:50Z"
},
"/q/11005262/286116": {
"postId": 11005262,
"postTitle": "Need my Xcode fixed!! iPhone simulator crashes and other problems",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-18 07:30:07Z"
},
"/q/11522356/286116": {
"postId": 11522356,
"postTitle": "Does passing an object as a parameter for a method increment its retain counter under ARC? [closed]",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-18 07:28:32Z"
},
"/q/11516728/286116": {
"postId": 11516728,
"postTitle": "Free Real-time Currency Conversion Exchange Rate Xml feed url",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-18 07:28:09Z"
},
"/q/11519566/286116": {
"postId": 11519566,
"postTitle": "How can i get UDID from http request sent form an iPhone?",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-18 07:27:49Z"
},
"/q/1182476/644450": {
"postId": 1182476,
"postTitle": "Why does A* path finding sometimes go in straight lines and sometimes diagonals? (Java)",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-18 07:27:31Z"
},
"/q/11502161/286116": {
"postId": 11502161,
"postTitle": "Slice UIImage to fit within a polygon",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-18 07:27:19Z"
},
"/q/4452126/286116": {
"postId": 4452126,
"postTitle": "How is a large, spread out company supposed to work with the iOS Developer Program?",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-18 07:27:04Z"
},
"/q/11535895/286116": {
"postId": 11535895,
"postTitle": "Change the position of character in string",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-18 07:25:36Z"
},
"/q/11532406/286116": {
"postId": 11532406,
"postTitle": "Draw output of Perlin noise function",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-18 07:24:51Z"
},
"/q/11522134/286116": {
"postId": 11522134,
"postTitle": "Leak when using autorelease?",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-18 07:24:17Z"
},
"/q/11511846/286116": {
"postId": 11511846,
"postTitle": "Opening maps with current location and directions in iOS 6",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-18 07:20:52Z"
},
"/q/11509007/286116": {
"postId": 11509007,
"postTitle": "Google TTS in IOS app for Commercial Use",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-18 07:17:11Z"
},
"/q/10668975/286116": {
"postId": 10668975,
"postTitle": "Xcode: Switching between views",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-18 07:16:45Z"
},
"/q/11526412/581771": {
"postId": 11526412,
"postTitle": "If user is browsing with Chrome, open a separate page or automatically close the window",
"userId": 581771,
"userName": "PraVn",
"action": "Close",
"datetime": "2012-07-18 07:03:31Z"
},
"/q/3003364/246246": {
"postId": 3003364,
"postTitle": "validating user's input in wizard control [closed]",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:59:37Z"
},
"/q/11499919/246246": {
"postId": 11499919,
"postTitle": "What is the step for sharing data in Vmware Mac OsX Guest OS in Windows Host",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:59:15Z"
},
"/q/11532390/246246": {
"postId": 11532390,
"postTitle": "Paste bitmap from Windows into VNC client (and thence to Linux app)",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:58:14Z"
},
"/q/11515835/246246": {
"postId": 11515835,
"postTitle": "How to get different between now and time in long in Android",
"userId": 246246,
"userName": "animuson",
"action": "Do Not Close",
"datetime": "2012-07-18 06:57:53Z"
},
"/q/11531324/246246": {
"postId": 11531324,
"postTitle": "snort intrusion detection [migrated]",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:57:28Z"
},
"/q/11508472/246246": {
"postId": 11508472,
"postTitle": "How to change netbeans project explorer background in ubuntu?",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:56:50Z"
},
"/q/6853728/246246": {
"postId": 6853728,
"postTitle": "Specifics, books or open source projects about p2p algorithms?",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:56:34Z"
},
"/q/1617353/246246": {
"postId": 1617353,
"postTitle": "How can we convince the administration of our university that computer science is important enough to retain it as a discipline?",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:56:27Z"
},
"/q/797210/246246": {
"postId": 797210,
"postTitle": "Custom dropdown box using javascript? [closed]",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:56:05Z"
},
"/q/11526664/246246": {
"postId": 11526664,
"postTitle": "Error installing mysql2 gem on Ubuntu Server 11.10: /usr/bin/ld: cannot find -lmysqlclient_r",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:55:58Z"
},
"/q/9059275/246246": {
"postId": 9059275,
"postTitle": "Is there some way to get the SQL string generated by SQLiteDatabase.query()?",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:55:25Z"
},
"/q/11521184/246246": {
"postId": 11521184,
"postTitle": "webgl n number of squares drawing for tree structure",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:55:06Z"
},
"/q/11523356/246246": {
"postId": 11523356,
"postTitle": "can't delete array that is class field",
"userId": 246246,
"userName": "animuson",
"action": "Do Not Close",
"datetime": "2012-07-18 06:54:59Z"
},
"/q/11534067/246246": {
"postId": 11534067,
"postTitle": "Dependecy Injection [closed]",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:50:50Z"
},
"/q/11528225/246246": {
"postId": 11528225,
"postTitle": "Calling an object with static variables",
"userId": 246246,
"userName": "animuson",
"action": "Edit",
"datetime": "2012-07-18 06:47:29Z"
},
"/q/5784802/246246": {
"postId": 5784802,
"postTitle": "How does Pyramid compare against Flask [closed]",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:44:19Z"
},
"/q/11534661/246246": {
"postId": 11534661,
"postTitle": "Fedex Api Rate Webservice [closed]",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:44:10Z"
},
"/q/11526772/246246": {
"postId": 11526772,
"postTitle": "Android build process [closed]",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:44:03Z"
},
"/q/8601233/246246": {
"postId": 8601233,
"postTitle": "Flex RemoteObject need syntax for that",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:43:55Z"
},
"/q/11532016/246246": {
"postId": 11532016,
"postTitle": "Caching tests in ruby",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:43:41Z"
},
"/q/11502904/246246": {
"postId": 11502904,
"postTitle": "Most important documents",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:43:23Z"
},
"/q/11519432/246246": {
"postId": 11519432,
"postTitle": "How to download an attachment from a specific email in outlook in asp.net using C#? [closed]",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:42:30Z"
},
"/q/11510175/246246": {
"postId": 11510175,
"postTitle": "error in wordpress syntax error, unexpected T_STRING in /***/inkthemes-functions.php on line 1 [closed]",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:42:24Z"
},
"/q/11528960/246246": {
"postId": 11528960,
"postTitle": "how to retrieve youtube search results and their video id using java? [closed]",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:42:04Z"
},
"/q/11525403/246246": {
"postId": 11525403,
"postTitle": "Best practices: Ajax and server side scripting with stored procedures [closed]",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:41:54Z"
},
"/q/11521561/246246": {
"postId": 11521561,
"postTitle": "How to add the Dictionary List? [closed]",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:41:29Z"
},
"/q/11531613/246246": {
"postId": 11531613,
"postTitle": "Errors with Tesseract in Android",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:41:21Z"
},
"/q/11519353/11410": {
"postId": 11519353,
"postTitle": "Suddenly found bugs when using git [closed]",
"userId": 11410,
"userName": "Benjol",
"action": "Close",
"datetime": "2012-07-18 06:40:41Z"
},
"/q/11513894/246246": {
"postId": 11513894,
"postTitle": "update table with image src on upload",
"userId": 246246,
"userName": "animuson",
"action": "Do Not Close",
"datetime": "2012-07-18 06:40:34Z"
},
"/q/11516680/246246": {
"postId": 11516680,
"postTitle": "css opacity not working in IE",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:36:58Z"
},
"/q/11502351/246246": {
"postId": 11502351,
"postTitle": "Facebook connect callback method “onlogin” issue",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:36:35Z"
},
"/q/3430461/246246": {
"postId": 3430461,
"postTitle": "can i run my reports developed in using ssrs 2008 on ssrs 2000",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:36:28Z"
},
"/q/11007326/246246": {
"postId": 11007326,
"postTitle": "How to prove that L={w|#a(w)=#b(w)=#c(w)} is not context free using closure",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:35:51Z"
},
"/q/11507243/246246": {
"postId": 11507243,
"postTitle": "How to create report from database by clicking on a CheckBox [closed]",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:35:32Z"
},
"/q/11526706/246246": {
"postId": 11526706,
"postTitle": "Piping Email with Postfix",
"userId": 246246,
"userName": "animuson",
"action": "Do Not Close",
"datetime": "2012-07-18 06:35:18Z"
},
"/q/11523268/246246": {
"postId": 11523268,
"postTitle": "Enable HTTP Webinterface for calling WCF service methods",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:34:46Z"
},
"/q/11515668/246246": {
"postId": 11515668,
"postTitle": "multiple ftp servers on debian",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:34:16Z"
},
"/q/11503124/246246": {
"postId": 11503124,
"postTitle": "How to access to calling and manage call's [closed]",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:34:07Z"
},
"/q/3417016/246246": {
"postId": 3417016,
"postTitle": "how to write setter to assign variable to an another variable [closed]",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:33:36Z"
},
"/q/11524606/246246": {
"postId": 11524606,
"postTitle": "Extra Quotation mark is coming in HTML output [closed]",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:33:31Z"
},
"/q/11519604/1011995": {
"postId": 11519604,
"postTitle": "Important classes xml serialization & its hierarchy in c#? [closed]",
"userId": 1011995,
"userName": "Daniel Fischer",
"action": "Close",
"datetime": "2012-07-18 06:32:55Z"
},
"/q/11529875/246246": {
"postId": 11529875,
"postTitle": "Getting specific HTML from a webpage with PHP [closed]",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:32:54Z"
},
"/q/11503298/246246": {
"postId": 11503298,
"postTitle": "Openfire Hardening [migrated]",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:32:40Z"
},
"/q/11507714/246246": {
"postId": 11507714,
"postTitle": "Identify views accessed more often than others in SQL Server 2008 R2 [closed]",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:32:28Z"
},
"/q/11518012/1011995": {
"postId": 11518012,
"postTitle": "Java swing file explorer thumbnail [closed]",
"userId": 1011995,
"userName": "Daniel Fischer",
"action": "Close",
"datetime": "2012-07-18 06:32:12Z"
},
"/q/11527614/1011995": {
"postId": 11527614,
"postTitle": "What do I need to study if I would be creating a program that can generate a statement(in asking form) based on paragraph? [closed]",
"userId": 1011995,
"userName": "Daniel Fischer",
"action": "Close",
"datetime": "2012-07-18 06:31:32Z"
},
"/q/11419596/246246": {
"postId": 11419596,
"postTitle": "website content to appear in header but load last",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:31:12Z"
},
"/q/1186080/1011995": {
"postId": 1186080,
"postTitle": "How can I step into Microsoft's .NET framework source code?",
"userId": 1011995,
"userName": "Daniel Fischer",
"action": "Close",
"datetime": "2012-07-18 06:31:06Z"
},
"/q/11530573/246246": {
"postId": 11530573,
"postTitle": "Database Design for file uploading on posts, comments and profile pages",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:30:57Z"
},
"/q/11525876/246246": {
"postId": 11525876,
"postTitle": "my server run many service named find [closed]",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:30:15Z"
},
"/q/11518838/246246": {
"postId": 11518838,
"postTitle": "Good materials / resources to start on Windows Azure [closed]",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:29:54Z"
},
"/q/11531782/246246": {
"postId": 11531782,
"postTitle": "Assignment operator overloading valgrind error [closed]",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:29:48Z"
},
"/q/11523977/246246": {
"postId": 11523977,
"postTitle": "What is wrong with this Javascript? “Internet Explorer Cannot Open the Internet Site- Operation Aborted” Error",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:28:57Z"
},
"/q/11507288/246246": {
"postId": 11507288,
"postTitle": "Integrating html form with paypal",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:28:34Z"
},
"/q/11535372/246246": {
"postId": 11535372,
"postTitle": "Redirect multiple dynamic URL to single static URL",
"userId": 246246,
"userName": "animuson",
"action": "Do Not Close",
"datetime": "2012-07-18 06:28:13Z"
},
"/q/11534839/246246": {
"postId": 11534839,
"postTitle": "seo url rewriting",
"userId": 246246,
"userName": "animuson",
"action": "Do Not Close",
"datetime": "2012-07-18 06:25:25Z"
},
"/q/11524597/246246": {
"postId": 11524597,
"postTitle": "email google form result",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:25:19Z"
},
"/q/11530963/246246": {
"postId": 11530963,
"postTitle": "Authorizing access through htaccess with both http and https",
"userId": 246246,
"userName": "animuson",
"action": "Do Not Close",
"datetime": "2012-07-18 06:25:03Z"
},
"/q/11522729/246246": {
"postId": 11522729,
"postTitle": ".htaccess to redirect all subdirectries and files to index .php except some directories [closed]",
"userId": 246246,
"userName": "animuson",
"action": "Close",
"datetime": "2012-07-18 06:22:42Z"
},
"/q/11508913/246246": {
"postId": 11508913,
"postTitle": "Disable SSL on certain URL Zend Framework",
"userId": 246246,
"userName": "animuson",
"action": "Do Not Close",
"datetime": "2012-07-18 06:21:44Z"
},
"/q/11498701/286116": {
"postId": 11498701,
"postTitle": "How to send Minecraft Server packets from Objective-C",
"userId": 286116,
"userName": "Vin",
"action": "Close",
"datetime": "2012-07-18 05:33:39Z"
},
"/q/11531534/286116": {
"postId": 11531534,
"postTitle": "action movie fx iphone [closed]",
"userId": 286116,
"userName": "Vin",
"action": "Close",
"datetime": "2012-07-18 05:32:49Z"
},
"/q/11522490/286116": {
"postId": 11522490,
"postTitle": "How to change iphone app to ipad app? [closed]",
"userId": 286116,
"userName": "Vin",
"action": "Close",
"datetime": "2012-07-18 05:31:57Z"
},
"/q/11518427/286116": {
"postId": 11518427,
"postTitle": "parsing an xml file nsxmlparser",
"userId": 286116,
"userName": "Vin",
"action": "Close",
"datetime": "2012-07-18 05:30:56Z"
},
"/q/11520556/286116": {
"postId": 11520556,
"postTitle": "Font gets bigger in eBay App [closed]",
"userId": 286116,
"userName": "Vin",
"action": "Close",
"datetime": "2012-07-18 05:29:04Z"
},
"/q/10272129/286116": {
"postId": 10272129,
"postTitle": "Face Recognition on the iPhone",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-18 05:28:12Z"
},
"/q/11521153/286116": {
"postId": 11521153,
"postTitle": "XmlParsing on iPhone [closed]",
"userId": 286116,
"userName": "Vin",
"action": "Close",
"datetime": "2012-07-18 05:27:13Z"
},
"/q/11503360/286116": {
"postId": 11503360,
"postTitle": "Support url for app submission in appstore",
"userId": 286116,
"userName": "Vin",
"action": "Close",
"datetime": "2012-07-18 05:23:55Z"
},
"/q/11528929/286116": {
"postId": 11528929,
"postTitle": "Running objective c in windows",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-18 05:23:06Z"
},
"/q/11530426/286116": {
"postId": 11530426,
"postTitle": "ObjectiveC Library to modify spreadsheets on iOS [closed]",
"userId": 286116,
"userName": "Vin",
"action": "Close",
"datetime": "2012-07-18 05:22:19Z"
},
"/q/11526356/286116": {
"postId": 11526356,
"postTitle": "How to Edit first column to the newly added row in NSTableview [closed]",
"userId": 286116,
"userName": "Vin",
"action": "Close",
"datetime": "2012-07-18 05:22:02Z"
},
"/q/11529691/286116": {
"postId": 11529691,
"postTitle": "IOS iPod music rendering [closed]",
"userId": 286116,
"userName": "Vin",
"action": "Close",
"datetime": "2012-07-18 05:21:17Z"
},
"/q/11521925/286116": {
"postId": 11521925,
"postTitle": "Parse JSON - iPhone",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-18 05:20:43Z"
},
"/q/11516414/286116": {
"postId": 11516414,
"postTitle": "Can I connect to non-apple-approved Bluetooth device from iPhone [closed]",
"userId": 286116,
"userName": "Vin",
"action": "Close",
"datetime": "2012-07-18 05:20:24Z"
},
"/q/11533997/286116": {
"postId": 11533997,
"postTitle": "Objective-C: Core Location (CLLocationManager) not working",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-18 05:19:43Z"
},
"/q/11521864/286116": {
"postId": 11521864,
"postTitle": "YUV frame into a CGContext [closed]",
"userId": 286116,
"userName": "Vin",
"action": "Close",
"datetime": "2012-07-18 05:19:21Z"
},
"/q/11505015/286116": {
"postId": 11505015,
"postTitle": "Is MAC address of iPhone unique and will it change?",
"userId": 286116,
"userName": "Vin",
"action": "Close",
"datetime": "2012-07-18 05:18:59Z"
},
"/q/11518076/286116": {
"postId": 11518076,
"postTitle": "Objective C - Invoke a method with variable argument list (NS_REQUIRES_NIL_TERMINATION)",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-18 05:18:05Z"
},
"/q/11521872/286116": {
"postId": 11521872,
"postTitle": "Parsing a concrete JSON withou key",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-18 05:17:51Z"
},
"/q/11519206/286116": {
"postId": 11519206,
"postTitle": "How to remove (“”) double quotes char in NSString in iphone?",
"userId": 286116,
"userName": "Vin",
"action": "Do Not Close",
"datetime": "2012-07-18 05:17:07Z"
},
"/q/11532958/219118": {
"postId": 11532958,
"postTitle": "what is wrong with my javascript code? (external file) (simplify would be awesome too) [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-18 05:16:33Z"
},
"/q/11522244/255049": {
"postId": 11522244,
"postTitle": "Having an overloaded operator<< compiler cannot find it [closed]",
"userId": 255049,
"userName": "Necrolis",
"action": "Close",
"datetime": "2012-07-18 04:56:19Z"
},
"/q/11505973/255049": {
"postId": 11505973,
"postTitle": "winapi Create own Custom ComboBox almost from scratch [closed]",
"userId": 255049,
"userName": "Necrolis",
"action": "Close",
"datetime": "2012-07-18 04:56:00Z"
},
"/q/2493687/255049": {
"postId": 2493687,
"postTitle": "Development environment to use/learn VTK with C++",
"userId": 255049,
"userName": "Necrolis",
"action": "Do Not Close",
"datetime": "2012-07-18 04:55:39Z"
},
"/q/11520502/255049": {
"postId": 11520502,
"postTitle": "How to define typedef for member of a union",
"userId": 255049,
"userName": "Necrolis",
"action": "Do Not Close",
"datetime": "2012-07-18 04:55:06Z"
},
"/q/11501810/255049": {
"postId": 11501810,
"postTitle": "strcmp char array in C [closed]",
"userId": 255049,
"userName": "Necrolis",
"action": "Close",
"datetime": "2012-07-18 04:54:45Z"
},
"/q/11503302/255049": {
"postId": 11503302,
"postTitle": "Visual C++ GUI explanation needed",
"userId": 255049,
"userName": "Necrolis",
"action": "Close",
"datetime": "2012-07-18 04:54:08Z"
},
"/q/1186080/255049": {
"postId": 1186080,
"postTitle": "How can I step into Microsoft's .NET framework source code?",
"userId": 255049,
"userName": "Necrolis",
"action": "Close",
"datetime": "2012-07-18 04:52:54Z"
},
"/q/11534382/255049": {
"postId": 11534382,
"postTitle": "What is beneficial about this program?? When using Pointer to Setter and Getters [closed]",
"userId": 255049,
"userName": "Necrolis",
"action": "Close",
"datetime": "2012-07-18 04:52:03Z"
},
"/q/11530876/879199": {
"postId": 11530876,
"postTitle": "SQL smart roundings help needed",
"userId": 879199,
"userName": "RobB",
"action": "Close",
"datetime": "2012-07-18 04:51:11Z"
},
"/q/11517226/879199": {
"postId": 11517226,
"postTitle": "handsontable: inserting data using ajax [closed]",
"userId": 879199,
"userName": "RobB",
"action": "Close",
"datetime": "2012-07-18 04:48:22Z"
},
"/q/11514947/879199": {
"postId": 11514947,
"postTitle": "Capture the output of Perl system()",
"userId": 879199,
"userName": "RobB",
"action": "Close",
"datetime": "2012-07-18 04:48:03Z"
},
"/q/11529875/229044": {
"postId": 11529875,
"postTitle": "Getting specific HTML from a webpage with PHP [closed]",
"userId": 229044,
"userName": "meagar",
"action": "Close",
"datetime": "2012-07-18 04:23:00Z"
},
"/q/11494854/229044": {
"postId": 11494854,
"postTitle": "PHP hits counter with cookies, for multiple pages, multiple results(real ones) [closed]",
"userId": 229044,
"userName": "meagar",
"action": "Close",
"datetime": "2012-07-18 04:22:40Z"
},
"/q/11533758/229044": {
"postId": 11533758,
"postTitle": "Is it safe to copy Linux kernel .config file to a different version?",
"userId": 229044,
"userName": "meagar",
"action": "Close",
"datetime": "2012-07-18 04:22:30Z"
},
"/q/11494848/229044": {
"postId": 11494848,
"postTitle": "jQuery - 'this' selector doesn't work inside callback function [closed]",
"userId": 229044,
"userName": "meagar",
"action": "Close",
"datetime": "2012-07-18 04:22:11Z"
},
"/q/11495868/229044": {
"postId": 11495868,
"postTitle": "HTML, CSS, display",
"userId": 229044,
"userName": "meagar",
"action": "Close",
"datetime": "2012-07-18 04:20:18Z"
},
"/q/11515700/229044": {
"postId": 11515700,
"postTitle": "Notice: Undefined index: submit in sample.php on line 25 [closed]",
"userId": 229044,
"userName": "meagar",
"action": "Close",
"datetime": "2012-07-18 04:19:08Z"
},
"/q/11501521/229044": {
"postId": 11501521,
"postTitle": "Can this JQuery be shorter writen?",
"userId": 229044,
"userName": "meagar",
"action": "Close",
"datetime": "2012-07-18 04:15:20Z"
},
"/q/11523190/229044": {
"postId": 11523190,
"postTitle": "How to fetch customers from zoho invoice api using curl? [closed]",
"userId": 229044,
"userName": "meagar",
"action": "Close",
"datetime": "2012-07-18 04:15:13Z"
},
"/q/2357685/229044": {
"postId": 2357685,
"postTitle": "How do you rewrite/recode a website to be scalable? [closed]",
"userId": 229044,
"userName": "meagar",
"action": "Close",
"datetime": "2012-07-18 04:15:05Z"
},
"/q/797210/229044": {
"postId": 797210,
"postTitle": "Custom dropdown box using javascript? [closed]",
"userId": 229044,
"userName": "meagar",
"action": "Close",
"datetime": "2012-07-18 04:14:54Z"
},
"/q/11517497/229044": {
"postId": 11517497,
"postTitle": "How to send money to user using his email?",
"userId": 229044,
"userName": "meagar",
"action": "Close",
"datetime": "2012-07-18 04:14:45Z"
},
"/q/11503202/646382": {
"postId": 11503202,
"postTitle": "How to write a screen recorder in c++? [closed]",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-18 03:55:00Z"
},
"/q/11502696/646382": {
"postId": 11502696,
"postTitle": "start batch file from within vb.net as admin",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-18 03:54:51Z"
},
"/q/11521109/646382": {
"postId": 11521109,
"postTitle": "how to search and hilight text containing special characters using javascript/jquery/c# [closed]",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-18 03:54:33Z"
},
"/q/11519604/646382": {
"postId": 11519604,
"postTitle": "Important classes xml serialization & its hierarchy in c#? [closed]",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-18 03:54:14Z"
},
"/q/11501476/646382": {
"postId": 11501476,
"postTitle": "Design of DevExpress Form can not load",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-18 03:53:41Z"
},
"/q/11518355/646382": {
"postId": 11518355,
"postTitle": "get Server and Database Name in Text boxes [closed]",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-18 03:53:31Z"
},
"/q/11528734/646382": {
"postId": 11528734,
"postTitle": "Storing and computing with real numbers up to an arbitrary precision in vb.net [closed]",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-18 03:51:34Z"
},
"/q/11524395/646382": {
"postId": 11524395,
"postTitle": "Why const mytype _var = new mytype() doesn't work?",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-18 03:51:04Z"
},
"/q/11519275/646382": {
"postId": 11519275,
"postTitle": "Delay the main thread and let new thread to work before from loaded",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-18 03:50:37Z"
},
"/q/11532661/646382": {
"postId": 11532661,
"postTitle": "i want to capture the screen when im in a game .need asistance [closed]",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-18 03:48:21Z"
},
"/q/3688640/646382": {
"postId": 3688640,
"postTitle": "I want to make iphone apps but do i really need to learn objective c? [closed]",
"userId": 646382,
"userName": "jonsca",
"action": "Close",
"datetime": "2012-07-18 03:48:08Z"
},
"/q/11509736/165839": {
"postId": 11509736,
"postTitle": "How to update a Windows Mobile application automatically from server using wi-fi?",
"userId": 165839,
"userName": "Daveo",
"action": "Do Not Close",
"datetime": "2012-07-18 03:46:59Z"
},
"/q/11511118/25111": {
"postId": 11511118,
"postTitle": "How do you attach two forms together in C#? [closed]",
"userId": 25111,
"userName": "Jon",
"action": "Close",
"datetime": "2012-07-18 03:22:51Z"
},
"/q/11493221/124259": {
"postId": 11493221,
"postTitle": "Java rmi - getting java.rmi.NotBoundException on client side",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-18 03:03:15Z"
},
"/q/11522490/124259": {
"postId": 11522490,
"postTitle": "How to change iphone app to ipad app? [closed]",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-18 03:02:25Z"
},
"/q/11528660/124259": {
"postId": 11528660,
"postTitle": "value of private static final changes [closed]",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-18 03:02:16Z"
},
"/q/11522137/124259": {
"postId": 11522137,
"postTitle": "Outlook using VBScript",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-18 03:01:34Z"
},
"/q/11341797/124259": {
"postId": 11341797,
"postTitle": "cant resize image to 72 x 72 in cs5",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-18 03:01:26Z"
},
"/q/4757674/124259": {
"postId": 4757674,
"postTitle": "code for drag and drop in iphone [closed]",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-18 03:00:46Z"
},
"/q/11530703/900873": {
"postId": 11530703,
"postTitle": "What is the schedule on this Cron?",
"userId": 900873,
"userName": "Kevin",
"action": "Edit",
"datetime": "2012-07-18 02:53:03Z"
},
"/q/11504995/900873": {
"postId": 11504995,
"postTitle": "“searchd” is showing “FATAL: bind() failed on 0.0.0.0: Address already in use”",
"userId": 900873,
"userName": "Kevin",
"action": "Edit",
"datetime": "2012-07-18 02:51:48Z"
},
"/q/7294006/900873": {
"postId": 7294006,
"postTitle": "UNIX: Static library linked to a static library [closed]",
"userId": 900873,
"userName": "Kevin",
"action": "Close",
"datetime": "2012-07-18 02:50:34Z"
},
"/q/11526429/900873": {
"postId": 11526429,
"postTitle": "Why are there so many fuser instances on my server? [closed]",
"userId": 900873,
"userName": "Kevin",
"action": "Edit",
"datetime": "2012-07-18 02:48:58Z"
},
"/q/11530147/900873": {
"postId": 11530147,
"postTitle": "Convert C to Java with binary byte conversion code",
"userId": 900873,
"userName": "Kevin",
"action": "Do Not Close",
"datetime": "2012-07-18 02:45:59Z"
},
"/q/11523904/900873": {
"postId": 11523904,
"postTitle": "how to force accept only ssl connections in vsftpd?",
"userId": 900873,
"userName": "Kevin",
"action": "Edit",
"datetime": "2012-07-18 02:43:05Z"
},
"/q/2923197/900873": {
"postId": 2923197,
"postTitle": "Ajax to read file created by CGI",
"userId": 900873,
"userName": "Kevin",
"action": "Edit",
"datetime": "2012-07-18 02:39:04Z"
},
"/q/10834533/644348": {
"postId": 10834533,
"postTitle": "Please delete me",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 02:37:47Z"
},
"/q/11532406/644348": {
"postId": 11532406,
"postTitle": "Draw output of Perlin noise function",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 02:37:12Z"
},
"/q/11515555/900873": {
"postId": 11515555,
"postTitle": "Vim trick - how to view directory as a “folder”?",
"userId": 900873,
"userName": "Kevin",
"action": "Do Not Close",
"datetime": "2012-07-18 02:36:58Z"
},
"/q/11527605/900873": {
"postId": 11527605,
"postTitle": "How to write program to detect the number of partitions in harddisk and create one? [closed]",
"userId": 900873,
"userName": "Kevin",
"action": "Edit",
"datetime": "2012-07-18 02:36:12Z"
},
"/q/11531534/644348": {
"postId": 11531534,
"postTitle": "action movie fx iphone [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 02:35:18Z"
},
"/q/3417016/644348": {
"postId": 3417016,
"postTitle": "how to write setter to assign variable to an another variable [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 02:35:06Z"
},
"/q/11530050/644348": {
"postId": 11530050,
"postTitle": "Perform UI Changes on main thread using dispatch_async or performSelectorOnMainThread? [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 02:34:49Z"
},
"/q/11521271/900873": {
"postId": 11521271,
"postTitle": "Error while trying to pass awk result to variable",
"userId": 900873,
"userName": "Kevin",
"action": "Close",
"datetime": "2012-07-18 02:33:36Z"
},
"/q/11532553/644348": {
"postId": 11532553,
"postTitle": "When is a UIView refreshed? Is it possible to force mid-function refresh?",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 02:33:19Z"
},
"/q/11528267/900873": {
"postId": 11528267,
"postTitle": "Where can I find source code for Linux core commands?",
"userId": 900873,
"userName": "Kevin",
"action": "Close",
"datetime": "2012-07-18 02:32:51Z"
},
"/q/11533204/644348": {
"postId": 11533204,
"postTitle": "iOS Search Results Order",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-18 02:31:47Z"
},
"/q/11530454/644348": {
"postId": 11530454,
"postTitle": "How can I actually uninstall XCode?",
"userId": 644348,
"userName": "Monolo",
"action": "Do Not Close",
"datetime": "2012-07-18 02:31:13Z"
},
"/q/11351196/900873": {
"postId": 11351196,
"postTitle": "Determine what day of week the week starts with",
"userId": 900873,
"userName": "Kevin",
"action": "Close",
"datetime": "2012-07-18 02:29:25Z"
},
"/q/11532963/900873": {
"postId": 11532963,
"postTitle": "Can't compile opencv in linux",
"userId": 900873,
"userName": "Kevin",
"action": "Do Not Close",
"datetime": "2012-07-18 02:28:33Z"
},
"/q/149321/900873": {
"postId": 149321,
"postTitle": "What IDE would be good for linux kernel driver development",
"userId": 900873,
"userName": "Kevin",
"action": "Do Not Close",
"datetime": "2012-07-18 02:27:39Z"
},
"/q/11510442/900873": {
"postId": 11510442,
"postTitle": "Escape Sequences with Perl Unix Commands",
"userId": 900873,
"userName": "Kevin",
"action": "Do Not Close",
"datetime": "2012-07-18 02:27:10Z"
},
"/q/11501016/900873": {
"postId": 11501016,
"postTitle": "Binary tree - Dereferencing pointers [closed]",
"userId": 900873,
"userName": "Kevin",
"action": "Do Not Close",
"datetime": "2012-07-18 02:10:35Z"
},
"/q/3688640/900873": {
"postId": 3688640,
"postTitle": "I want to make iphone apps but do i really need to learn objective c? [closed]",
"userId": 900873,
"userName": "Kevin",
"action": "Close",
"datetime": "2012-07-18 02:08:14Z"
},
"/q/11514935/900873": {
"postId": 11514935,
"postTitle": "“Thread safety” of appending to single file from multiple processes?",
"userId": 900873,
"userName": "Kevin",
"action": "Close",
"datetime": "2012-07-18 02:07:57Z"
},
"/q/11521610/900873": {
"postId": 11521610,
"postTitle": "how to compile and load the c code on MIFARE DESfire card? [closed]",
"userId": 900873,
"userName": "Kevin",
"action": "Close",
"datetime": "2012-07-18 02:06:15Z"
},
"/q/11524161/900873": {
"postId": 11524161,
"postTitle": "What does this program basically do? Subtraction of pointers?",
"userId": 900873,
"userName": "Kevin",
"action": "Edit",
"datetime": "2012-07-18 02:04:04Z"
},
"/q/11497582/312124": {
"postId": 11497582,
"postTitle": "how can i get news article titles and content? legal issues? [closed]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:50:24Z"
},
"/q/11447198/312124": {
"postId": 11447198,
"postTitle": "wordpress shoping cart plugin issue",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:50:06Z"
},
"/q/11486210/312124": {
"postId": 11486210,
"postTitle": "no response when I ping my website, but I can still access it? [migrated]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:49:56Z"
},
"/q/10558945/312124": {
"postId": 10558945,
"postTitle": "generating “endless” terrain chunks?",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:49:39Z"
},
"/q/11527263/312124": {
"postId": 11527263,
"postTitle": "Algorithm and Design for developing a exact text system",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:49:22Z"
},
"/q/11519497/312124": {
"postId": 11519497,
"postTitle": "How to get a synchronous HTTP response",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:49:13Z"
},
"/q/4731538/312124": {
"postId": 4731538,
"postTitle": "Best language for Video chat (similar to chat roulette) with MySQL [closed]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:48:56Z"
},
"/q/11494379/312124": {
"postId": 11494379,
"postTitle": "How to offload memory offset calculation from runtime in C/C++?",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Do Not Close",
"datetime": "2012-07-18 01:48:36Z"
},
"/q/11515005/312124": {
"postId": 11515005,
"postTitle": "How do you write a good stored procedure for update?",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:48:26Z"
},
"/q/4417114/312124": {
"postId": 4417114,
"postTitle": "Opening mathematica file",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:48:05Z"
},
"/q/11530110/312124": {
"postId": 11530110,
"postTitle": "Letting a user know about an illegal input to a function",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Do Not Close",
"datetime": "2012-07-18 01:47:55Z"
},
"/q/11516883/312124": {
"postId": 11516883,
"postTitle": "How to copy images in one folder to another folder using c#? [closed]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:47:38Z"
},
"/q/11523060/312124": {
"postId": 11523060,
"postTitle": "Basic Auth in metro app using C# [closed]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:47:31Z"
},
"/q/11531712/312124": {
"postId": 11531712,
"postTitle": "I have set my internal ip say 192.168.1.100 to be DMZ host, why is it that I still can't access the service from outside? [closed]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:47:21Z"
},
"/q/523211/312124": {
"postId": 523211,
"postTitle": "simple php script using 1MB+ memory",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:47:09Z"
},
"/q/11503202/312124": {
"postId": 11503202,
"postTitle": "How to write a screen recorder in c++? [closed]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:46:58Z"
},
"/q/11523775/312124": {
"postId": 11523775,
"postTitle": "How to Invoke methods in a Plug-In Dll [closed]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:46:47Z"
},
"/q/11521364/312124": {
"postId": 11521364,
"postTitle": "Reading numbers from CSV as strings [closed]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:46:42Z"
},
"/q/11495830/312124": {
"postId": 11495830,
"postTitle": "Unit testing a class that uses a Timer",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Do Not Close",
"datetime": "2012-07-18 01:46:30Z"
},
"/q/11513377/312124": {
"postId": 11513377,
"postTitle": "how to run pre existing windows service using c# [closed]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:46:23Z"
},
"/q/11504301/312124": {
"postId": 11504301,
"postTitle": "can I write my Login Page redirect code in Session_End?",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:46:02Z"
},
"/q/11527605/312124": {
"postId": 11527605,
"postTitle": "How to write program to detect the number of partitions in harddisk and create one? [closed]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:45:48Z"
},
"/q/1444427/312124": {
"postId": 1444427,
"postTitle": "Commercial version control",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Do Not Close",
"datetime": "2012-07-18 01:45:37Z"
},
"/q/11524395/312124": {
"postId": 11524395,
"postTitle": "Why const mytype _var = new mytype() doesn't work?",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:45:21Z"
},
"/q/397824/312124": {
"postId": 397824,
"postTitle": "MS Velocity vs Memcached for Windows?",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Do Not Close",
"datetime": "2012-07-18 01:45:02Z"
},
"/q/11524433/312124": {
"postId": 11524433,
"postTitle": "Developing Closed-Source Applications in C#",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:44:54Z"
},
"/q/4539167/312124": {
"postId": 4539167,
"postTitle": "Rotate picturebox [closed]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:44:13Z"
},
"/q/568827/312124": {
"postId": 568827,
"postTitle": "What areas of code are you using f# for?",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:43:59Z"
},
"/q/11527171/85950": {
"postId": 11527171,
"postTitle": "log into any window user account with a master password? [closed]",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-18 01:43:53Z"
},
"/q/11520896/312124": {
"postId": 11520896,
"postTitle": "c# xaml windows phone 7 [closed]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:43:42Z"
},
"/q/11523303/85950": {
"postId": 11523303,
"postTitle": "How to change HTTPS to HTTP in Facebook via an Application",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-18 01:43:10Z"
},
"/q/10522760/312124": {
"postId": 10522760,
"postTitle": "Does C++ have an API Specification? [closed]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:42:47Z"
},
"/q/11527614/312124": {
"postId": 11527614,
"postTitle": "What do I need to study if I would be creating a program that can generate a statement(in asking form) based on paragraph? [closed]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:42:20Z"
},
"/q/11511988/312124": {
"postId": 11511988,
"postTitle": "Rendering dots on a globe with correct longitude and latitude in OpenGL",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Do Not Close",
"datetime": "2012-07-18 01:41:30Z"
},
"/q/1444427/85950": {
"postId": 1444427,
"postTitle": "Commercial version control",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-18 01:41:21Z"
},
"/q/11533010/312124": {
"postId": 11533010,
"postTitle": "Is using short-circuit evaluation to avoid an index out of range exception a bad habit?",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Do Not Close",
"datetime": "2012-07-18 01:40:54Z"
},
"/q/11508131/312124": {
"postId": 11508131,
"postTitle": "How do I calculate a random point that is a fixed distance from another point?",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:40:17Z"
},
"/q/11521566/312124": {
"postId": 11521566,
"postTitle": "Get P2P software information C# [closed]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:40:09Z"
},
"/q/11519725/312124": {
"postId": 11519725,
"postTitle": "How to know if there is an incoming call from GSM modem in c#",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:40:00Z"
},
"/q/770977/85950": {
"postId": 770977,
"postTitle": "Does anyone use their Sony PSP for improving productivity?",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-18 01:39:48Z"
},
"/q/11518222/312124": {
"postId": 11518222,
"postTitle": "LINQ & SQL Injection [closed]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:39:41Z"
},
"/q/3074809/85950": {
"postId": 3074809,
"postTitle": "java code to send sms on mobile [closed]",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-18 01:39:23Z"
},
"/q/48198/312124": {
"postId": 48198,
"postTitle": "How can you find out which process is listening on a port on Windows?",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Do Not Close",
"datetime": "2012-07-18 01:38:45Z"
},
"/q/706799/85950": {
"postId": 706799,
"postTitle": "Meaning of MIT license",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-18 01:38:39Z"
},
"/q/11530118/312124": {
"postId": 11530118,
"postTitle": "How to export charts to word in asp.net c# [closed]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:38:37Z"
},
"/q/11528281/312124": {
"postId": 11528281,
"postTitle": "Is thread a windows concept?",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Do Not Close",
"datetime": "2012-07-18 01:38:26Z"
},
"/q/11531324/85950": {
"postId": 11531324,
"postTitle": "snort intrusion detection [migrated]",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-18 01:38:13Z"
},
"/q/11530687/312124": {
"postId": 11530687,
"postTitle": "Ways of optimizing symbol table storage in compilers [closed]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:37:42Z"
},
"/q/1686390/312124": {
"postId": 1686390,
"postTitle": "Python-equivalent of short-form “if” in C++ [closed]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:37:25Z"
},
"/q/11521109/312124": {
"postId": 11521109,
"postTitle": "how to search and hilight text containing special characters using javascript/jquery/c# [closed]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:36:17Z"
},
"/q/11523523/85950": {
"postId": 11523523,
"postTitle": "How can i change the screen brightness of my laptop in ubuntu?",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-18 01:36:13Z"
},
"/q/11528535/312124": {
"postId": 11528535,
"postTitle": "Signed floats crashing app [closed]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:36:07Z"
},
"/q/11516918/312124": {
"postId": 11516918,
"postTitle": "Casting C# delegates [closed]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:35:56Z"
},
"/q/11486309/85950": {
"postId": 11486309,
"postTitle": "Unified Process Analysis and Software Percentage Confusion",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-18 01:35:51Z"
},
"/q/11464016/312124": {
"postId": 11464016,
"postTitle": "What does “xutility.h” header do? [closed]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:35:48Z"
},
"/q/11520896/85950": {
"postId": 11520896,
"postTitle": "c# xaml windows phone 7 [closed]",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-18 01:35:33Z"
},
"/q/4095509/85950": {
"postId": 4095509,
"postTitle": "Pumping Lemma in context-free languages",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-18 01:35:20Z"
},
"/q/11509990/312124": {
"postId": 11509990,
"postTitle": "FxCop Custom Rule for Custom Controls",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:35:00Z"
},
"/q/11521568/85950": {
"postId": 11521568,
"postTitle": "No GPS position with Google Maps on Galaxy Nexus with android 4.0.4",
"userId": 85950,
"userName": "blahdiblah",
"action": "Do Not Close",
"datetime": "2012-07-18 01:34:51Z"
},
"/q/11529351/312124": {
"postId": 11529351,
"postTitle": "Which is the best way to check a bit array in Cuda?",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:34:22Z"
},
"/q/11521106/85950": {
"postId": 11521106,
"postTitle": "hide application icon in menu of android phone",
"userId": 85950,
"userName": "blahdiblah",
"action": "Do Not Close",
"datetime": "2012-07-18 01:34:04Z"
},
"/q/11529019/85950": {
"postId": 11529019,
"postTitle": "members system for OSClass CMS [closed]",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-18 01:33:35Z"
},
"/q/11517667/312124": {
"postId": 11517667,
"postTitle": "Date validator in Asp.net [closed]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:32:52Z"
},
"/q/11509736/312124": {
"postId": 11509736,
"postTitle": "How to update a Windows Mobile application automatically from server using wi-fi?",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:32:37Z"
},
"/q/10816600/312124": {
"postId": 10816600,
"postTitle": "C++: namespaces: how to use in header and source files correctly?",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:32:19Z"
},
"/q/11506758/85950": {
"postId": 11506758,
"postTitle": "edit data form like in facebook [closed]",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-18 01:32:03Z"
},
"/q/11526480/312124": {
"postId": 11526480,
"postTitle": "How to a car database search on a Facebook tab? [closed]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:31:26Z"
},
"/q/11529888/312124": {
"postId": 11529888,
"postTitle": "What is the best way to clear space in SQL Server 2008 database table?",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Do Not Close",
"datetime": "2012-07-18 01:31:16Z"
},
"/q/11007326/85950": {
"postId": 11007326,
"postTitle": "How to prove that L={w|#a(w)=#b(w)=#c(w)} is not context free using closure",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-18 01:31:13Z"
},
"/q/11517717/312124": {
"postId": 11517717,
"postTitle": "Where can I find the Asp.net MVC 3 SportsStore database download [closed]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:31:10Z"
},
"/q/11525475/85950": {
"postId": 11525475,
"postTitle": "Change page URLs without losing page ranking [closed]",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-18 01:30:54Z"
},
"/q/11510556/85950": {
"postId": 11510556,
"postTitle": "build Gmail like web app using Google App Script [closed]",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-18 01:30:38Z"
},
"/q/11532904/85950": {
"postId": 11532904,
"postTitle": "How to create an style image gallery like this sample? [closed]",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-18 01:30:01Z"
},
"/q/11517640/85950": {
"postId": 11517640,
"postTitle": "sql query to find Which country has the maximum number of suppliers and customers",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-18 01:29:52Z"
},
"/q/11525489/900873": {
"postId": 11525489,
"postTitle": "use openbox rather than openbox-session",
"userId": 900873,
"userName": "Kevin",
"action": "Close",
"datetime": "2012-07-18 01:29:43Z"
},
"/q/11532661/312124": {
"postId": 11532661,
"postTitle": "i want to capture the screen when im in a game .need asistance [closed]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:29:04Z"
},
"/q/11528469/85950": {
"postId": 11528469,
"postTitle": "how to merge any video to my intro using ffmpeg",
"userId": 85950,
"userName": "blahdiblah",
"action": "Do Not Close",
"datetime": "2012-07-18 01:28:56Z"
},
"/q/11286337/312124": {
"postId": 11286337,
"postTitle": "What is a python function that will do analysis using different combinations of two types of factors? [closed]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:28:49Z"
},
"/q/354587/312124": {
"postId": 354587,
"postTitle": "Optimizing Aggregate for String Concatenation",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Do Not Close",
"datetime": "2012-07-18 01:28:19Z"
},
"/q/11521631/312124": {
"postId": 11521631,
"postTitle": "How to share the text in Myspace networking site? [closed]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:28:09Z"
},
"/q/11519432/312124": {
"postId": 11519432,
"postTitle": "How to download an attachment from a specific email in outlook in asp.net using C#? [closed]",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Close",
"datetime": "2012-07-18 01:27:33Z"
},
"/q/11529611/312124": {
"postId": 11529611,
"postTitle": "String regular expressions for URL Rewrite",
"userId": 312124,
"userName": "Mike Bantegui",
"action": "Do Not Close",
"datetime": "2012-07-18 01:26:34Z"
},
"/q/11520989/494061": {
"postId": 11520989,
"postTitle": "How can I call function every 30 seconds? [closed]",
"userId": 494061,
"userName": "Michael Hoffman",
"action": "Close",
"datetime": "2012-07-18 00:52:30Z"
},
"/q/11505532/494061": {
"postId": 11505532,
"postTitle": "Installing Python imaging libary (PIL) on Ubuntu",
"userId": 494061,
"userName": "Michael Hoffman",
"action": "Close",
"datetime": "2012-07-18 00:52:08Z"
},
"/q/11519805/494061": {
"postId": 11519805,
"postTitle": "How to run command [migrated]",
"userId": 494061,
"userName": "Michael Hoffman",
"action": "Close",
"datetime": "2012-07-18 00:51:45Z"
},
"/q/11521929/494061": {
"postId": 11521929,
"postTitle": "How to access a variable in a module which is being imported in the main function and which is defined inside main() in python",
"userId": 494061,
"userName": "Michael Hoffman",
"action": "Close",
"datetime": "2012-07-18 00:51:32Z"
},
"/q/5784802/494061": {
"postId": 5784802,
"postTitle": "How does Pyramid compare against Flask [closed]",
"userId": 494061,
"userName": "Michael Hoffman",
"action": "Close",
"datetime": "2012-07-18 00:51:00Z"
},
"/q/11501418/124259": {
"postId": 11501418,
"postTitle": "can we able to Create File Object From InputStream",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-18 00:41:50Z"
},
"/q/11525857/124259": {
"postId": 11525857,
"postTitle": "Period of a finite binary sequence",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-18 00:41:13Z"
},
"/q/11519626/124259": {
"postId": 11519626,
"postTitle": "Web service which provides robust proxies list",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-18 00:40:52Z"
},
"/q/11526120/124259": {
"postId": 11526120,
"postTitle": "For several view, is it a good idea to use the Mediator ?",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-18 00:40:44Z"
},
"/q/11528960/124259": {
"postId": 11528960,
"postTitle": "how to retrieve youtube search results and their video id using java? [closed]",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-18 00:40:04Z"
},
"/q/11499500/798448": {
"postId": 11499500,
"postTitle": "My web page doesn't load [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:39:22Z"
},
"/q/10097164/798448": {
"postId": 10097164,
"postTitle": "What are top 3 providers of CDN and Cloud servers [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:39:04Z"
},
"/q/3247828/124259": {
"postId": 3247828,
"postTitle": "question about inline assembler [closed]",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-18 00:38:46Z"
},
"/q/11513705/798448": {
"postId": 11513705,
"postTitle": "python property decorator [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:38:30Z"
},
"/q/11460758/798448": {
"postId": 11460758,
"postTitle": "for a chrome packaged app how do i do evals in the new manifest_version 2 extensions with sandbox [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:38:13Z"
},
"/q/237789/798448": {
"postId": 237789,
"postTitle": "Which portals do you recommend for the latest programming technology [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:37:14Z"
},
"/q/11467358/798448": {
"postId": 11467358,
"postTitle": "creating Method from code [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:36:20Z"
},
"/q/11483618/798448": {
"postId": 11483618,
"postTitle": "Convert CHAR to ASCII in LISP [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:35:19Z"
},
"/q/11503009/798448": {
"postId": 11503009,
"postTitle": "Set condition on returned objects in DBSet in EF [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:34:43Z"
},
"/q/11499048/798448": {
"postId": 11499048,
"postTitle": "How to change css rules of external stylesheet [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:34:09Z"
},
"/q/11517885/612429": {
"postId": 11517885,
"postTitle": "Javascript at target position",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:33:43Z"
},
"/q/11481358/798448": {
"postId": 11481358,
"postTitle": "FancyBox v2.0.6 not working in IE (OK in FF/Safari/Chrome) [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:33:21Z"
},
"/q/11520380/612429": {
"postId": 11520380,
"postTitle": "online c compiler for android",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-18 00:33:20Z"
},
"/q/11513644/612429": {
"postId": 11513644,
"postTitle": "Writing daemon in python",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-18 00:33:12Z"
},
"/q/3926625/612429": {
"postId": 3926625,
"postTitle": "Simple software license key server suggestions?",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-18 00:32:58Z"
},
"/q/11519428/612429": {
"postId": 11519428,
"postTitle": "Terminating loop with fgets()",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-18 00:32:47Z"
},
"/q/11522541/612429": {
"postId": 11522541,
"postTitle": "Can some give me link for pymedia to support Python 2.7 [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:32:39Z"
},
"/q/11515127/612429": {
"postId": 11515127,
"postTitle": "how I can group the queue",
"userId": 612429,
"userName": "Kay",
"action": "Edit",
"datetime": "2012-07-18 00:32:29Z"
},
"/q/11506993/798448": {
"postId": 11506993,
"postTitle": "What are the steps to be taken for performance tuning of SQL Server 2008? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:32:27Z"
},
"/q/11531208/612429": {
"postId": 11531208,
"postTitle": "Error from simply initializing a variable?",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-18 00:32:08Z"
},
"/q/11527887/612429": {
"postId": 11527887,
"postTitle": "PostgreSQL table to HTML [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:31:50Z"
},
"/q/11445876/612429": {
"postId": 11445876,
"postTitle": "Jcarousal Script Issue",
"userId": 612429,
"userName": "Kay",
"action": "Edit",
"datetime": "2012-07-18 00:31:37Z"
},
"/q/11518488/612429": {
"postId": 11518488,
"postTitle": "linked list in c/c++ [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-18 00:30:54Z"
},
"/q/11529424/612429": {
"postId": 11529424,
"postTitle": "Implementing idf with nltk",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:30:47Z"
},
"/q/11509341/798448": {
"postId": 11509341,
"postTitle": "C# error with function and textboxes as a parameter [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:30:22Z"
},
"/q/11529276/798448": {
"postId": 11529276,
"postTitle": "Non-end compiler error in binary search [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:30:09Z"
},
"/q/11524539/612429": {
"postId": 11524539,
"postTitle": "Target :after whilst using $(this) [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:30:04Z"
},
"/q/11528305/612429": {
"postId": 11528305,
"postTitle": "Is there any free C++ library for statistical hypothesis testing?",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-18 00:29:40Z"
},
"/q/8325905/612429": {
"postId": 8325905,
"postTitle": "How can I get parent class' self?",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-18 00:29:21Z"
},
"/q/11520734/612429": {
"postId": 11520734,
"postTitle": "How to create static library in ecclipse cdt? [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:28:51Z"
},
"/q/11378694/612429": {
"postId": 11378694,
"postTitle": "how can i get all field when click on record [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-18 00:28:38Z"
},
"/q/11520840/612429": {
"postId": 11520840,
"postTitle": "marquee tag still works, is it okay to use it? [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:28:32Z"
},
"/q/1686390/612429": {
"postId": 1686390,
"postTitle": "Python-equivalent of short-form “if” in C++ [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:28:21Z"
},
"/q/11065256/612429": {
"postId": 11065256,
"postTitle": "How can I get Pymacs to work in Ubuntu with EPD python?",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-18 00:28:02Z"
},
"/q/11525847/612429": {
"postId": 11525847,
"postTitle": "to draw html inside js file [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:27:57Z"
},
"/q/11525964/612429": {
"postId": 11525964,
"postTitle": "what is variant member in c++?",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-18 00:27:34Z"
},
"/q/11523844/612429": {
"postId": 11523844,
"postTitle": "802.11 FCS (CRC32) [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:27:08Z"
},
"/q/11527200/612429": {
"postId": 11527200,
"postTitle": "Tricky Undefined Reference Error",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-18 00:26:58Z"
},
"/q/11528612/798448": {
"postId": 11528612,
"postTitle": "Why does this SQL code does not generate an error? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:26:39Z"
},
"/q/11485261/798448": {
"postId": 11485261,
"postTitle": "Generate CMAKE from MSVC Project? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:26:29Z"
},
"/q/11531712/798448": {
"postId": 11531712,
"postTitle": "I have set my internal ip say 192.168.1.100 to be DMZ host, why is it that I still can't access the service from outside? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:26:13Z"
},
"/q/8505275/85950": {
"postId": 8505275,
"postTitle": "Erlang - How to find the name of current function at runtime?",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-18 00:25:56Z"
},
"/q/11524729/798448": {
"postId": 11524729,
"postTitle": "Increase traffic or visitors on website via SEO? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:25:28Z"
},
"/q/11531367/85950": {
"postId": 11531367,
"postTitle": "Creating a Mac OS keyboard shortcut from Terminal",
"userId": 85950,
"userName": "blahdiblah",
"action": "Do Not Close",
"datetime": "2012-07-18 00:25:24Z"
},
"/q/11523183/798448": {
"postId": 11523183,
"postTitle": "try catch continue execution on exception [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:25:21Z"
},
"/q/11508682/85950": {
"postId": 11508682,
"postTitle": "mapping Google Apps to Appengine error 1000 [closed]",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-18 00:24:57Z"
},
"/q/11512988/85950": {
"postId": 11512988,
"postTitle": "deleting a node is binary search tree in c++ [closed]",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-18 00:24:47Z"
},
"/q/11530799/612429": {
"postId": 11530799,
"postTitle": "Python Finding Index of Maximum in List",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-18 00:24:36Z"
},
"/q/11525726/798448": {
"postId": 11525726,
"postTitle": "Hiding an HTML Form's Submit Button [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:24:31Z"
},
"/q/11532368/85950": {
"postId": 11532368,
"postTitle": "RelativeLayout with vertical centered at right",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-18 00:24:22Z"
},
"/q/11520150/612429": {
"postId": 11520150,
"postTitle": "How to fade “this.src.replace” when swapping images on hover (jQuery) [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:24:13Z"
},
"/q/11526722/612429": {
"postId": 11526722,
"postTitle": "Selenium help to read this complex table [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:23:53Z"
},
"/q/11503298/85950": {
"postId": 11503298,
"postTitle": "Openfire Hardening [migrated]",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-18 00:23:44Z"
},
"/q/11531782/612429": {
"postId": 11531782,
"postTitle": "Assignment operator overloading valgrind error [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:23:39Z"
},
"/q/11525726/612429": {
"postId": 11525726,
"postTitle": "Hiding an HTML Form's Submit Button [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:23:30Z"
},
"/q/11523737/612429": {
"postId": 11523737,
"postTitle": "jquery - save image as specified filename [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:23:16Z"
},
"/q/9084884/85950": {
"postId": 9084884,
"postTitle": "class diagram for Online Shopping System",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-18 00:23:15Z"
},
"/q/11530543/612429": {
"postId": 11530543,
"postTitle": "jQuery “bounce” effect on center-aligned block elements aligns them left in Firefox and IE8",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:22:58Z"
},
"/q/11527267/85950": {
"postId": 11527267,
"postTitle": "xp stuck in sleep mode [closed]",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-18 00:22:56Z"
},
"/q/11283330/85950": {
"postId": 11283330,
"postTitle": "Casting Sender In C#",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-18 00:22:43Z"
},
"/q/11519068/612429": {
"postId": 11519068,
"postTitle": "Cloud Zoom integration [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:22:42Z"
},
"/q/10376632/612429": {
"postId": 10376632,
"postTitle": "How to multiply to (n) number of funcations using for loop? [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:22:26Z"
},
"/q/11531734/85950": {
"postId": 11531734,
"postTitle": "Can anyone tell me why eclipse doesn't like this java array initialisation ? [closed]",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-18 00:22:25Z"
},
"/q/11493194/798448": {
"postId": 11493194,
"postTitle": "Newbie needs help on random record [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:21:37Z"
},
"/q/11528031/85950": {
"postId": 11528031,
"postTitle": "How do I import and export keyboard bindings in Eclipse? [closed]",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-18 00:21:34Z"
},
"/q/11516237/798448": {
"postId": 11516237,
"postTitle": "how to find out client ip address and client process id which connected server's specify socket [migrated]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:21:16Z"
},
"/q/11530093/612429": {
"postId": 11530093,
"postTitle": "Getting day week starts [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:21:16Z"
},
"/q/11497917/612429": {
"postId": 11497917,
"postTitle": "jquery ajax function does not work when clicking an anchor",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-18 00:20:48Z"
},
"/q/11530093/798448": {
"postId": 11530093,
"postTitle": "Getting day week starts [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:20:22Z"
},
"/q/11521232/612429": {
"postId": 11521232,
"postTitle": "Pointers not giving expected result",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-18 00:20:15Z"
},
"/q/11505441/85950": {
"postId": 11505441,
"postTitle": "Eclipse is saying “Update Android Developer Toolkit”",
"userId": 85950,
"userName": "blahdiblah",
"action": "Do Not Close",
"datetime": "2012-07-18 00:19:58Z"
},
"/q/9046171/798448": {
"postId": 9046171,
"postTitle": "Eclipse plugin for code coverage [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:19:53Z"
},
"/q/11528684/612429": {
"postId": 11528684,
"postTitle": "C++ pthread member function [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:19:52Z"
},
"/q/11481992/85950": {
"postId": 11481992,
"postTitle": "eclipse indigo java perspective not visible",
"userId": 85950,
"userName": "blahdiblah",
"action": "Do Not Close",
"datetime": "2012-07-18 00:19:42Z"
},
"/q/11530842/85950": {
"postId": 11530842,
"postTitle": "Protecting some files from development in git",
"userId": 85950,
"userName": "blahdiblah",
"action": "Do Not Close",
"datetime": "2012-07-18 00:19:22Z"
},
"/q/11512612/612429": {
"postId": 11512612,
"postTitle": "How to change constants in line 13 from this text file in Matlab?",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:19:17Z"
},
"/q/11491880/85950": {
"postId": 11491880,
"postTitle": "How to install git bash on ubuntu? [closed]",
"userId": 85950,
"userName": "blahdiblah",
"action": "Do Not Close",
"datetime": "2012-07-18 00:19:02Z"
},
"/q/11528535/612429": {
"postId": 11528535,
"postTitle": "Signed floats crashing app [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:18:55Z"
},
"/q/11499175/798448": {
"postId": 11499175,
"postTitle": "How to save Created Geo fence in MySQL using php and check the result? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:18:45Z"
},
"/q/11528494/612429": {
"postId": 11528494,
"postTitle": "What HTML5 Canvas Pixel Detection and image manipulation libraries are out there?",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-18 00:18:45Z"
},
"/q/11527605/612429": {
"postId": 11527605,
"postTitle": "How to write program to detect the number of partitions in harddisk and create one? [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:18:38Z"
},
"/q/11516990/612429": {
"postId": 11516990,
"postTitle": "A way to determine whether or not a website validates",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:18:27Z"
},
"/q/11531891/85950": {
"postId": 11531891,
"postTitle": "What options do I have for continuous integration, git project management, and client management",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-18 00:18:19Z"
},
"/q/11519353/85950": {
"postId": 11519353,
"postTitle": "Suddenly found bugs when using git [closed]",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-18 00:18:01Z"
},
"/q/11531536/612429": {
"postId": 11531536,
"postTitle": "Profiling programs written in C++ for runtime behaviour [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:17:55Z"
},
"/q/4478795/612429": {
"postId": 4478795,
"postTitle": "What is Unobtrusive Javascript in layman terms?",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-18 00:17:32Z"
},
"/q/11515089/85950": {
"postId": 11515089,
"postTitle": "Why no yellow in powershell and posh git",
"userId": 85950,
"userName": "blahdiblah",
"action": "Do Not Close",
"datetime": "2012-07-18 00:17:26Z"
},
"/q/11521501/612429": {
"postId": 11521501,
"postTitle": "Name of the features I'm looking for. [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:17:26Z"
},
"/q/11529976/85950": {
"postId": 11529976,
"postTitle": "How to do I ssh to another machine with another user to execute a script",
"userId": 85950,
"userName": "blahdiblah",
"action": "Do Not Close",
"datetime": "2012-07-18 00:17:00Z"
},
"/q/5455426/612429": {
"postId": 5455426,
"postTitle": "Is it possible to close a browser window using javascript?",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:16:53Z"
},
"/q/11528127/85950": {
"postId": 11528127,
"postTitle": "Using \\displaystyle in Equation environment [migrated]",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-18 00:16:46Z"
},
"/q/11520195/612429": {
"postId": 11520195,
"postTitle": "Derived class Needs variables to be redefined which are there pure abstract base class?",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-18 00:16:30Z"
},
"/q/11529182/612429": {
"postId": 11529182,
"postTitle": "how to convert this javascript to jquery? [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:16:12Z"
},
"/q/11526897/612429": {
"postId": 11526897,
"postTitle": "Java Script Regex - Find if only allowed characters are in the script",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-18 00:16:01Z"
},
"/q/11485994/798448": {
"postId": 11485994,
"postTitle": "Which is faster to process a 1TB file: a single machine or 5 networked machines?",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:15:55Z"
},
"/q/11528407/612429": {
"postId": 11528407,
"postTitle": "Clarification about copying an array by referencing a pointer",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-18 00:15:51Z"
},
"/q/11507946/798448": {
"postId": 11507946,
"postTitle": "Want to implement a search box to search a shop osCommerce and or SMF [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:15:30Z"
},
"/q/11522900/798448": {
"postId": 11522900,
"postTitle": "button create on SVG and Javascript [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:15:24Z"
},
"/q/11504512/612429": {
"postId": 11504512,
"postTitle": "MATLAB nesting multiple input functions",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-18 00:15:21Z"
},
"/q/11516603/798448": {
"postId": 11516603,
"postTitle": "android customized view flipper [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:15:18Z"
},
"/q/11508910/798448": {
"postId": 11508910,
"postTitle": "WPF, WinForm C# [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:15:04Z"
},
"/q/11529580/612429": {
"postId": 11529580,
"postTitle": "How can I run two loops simultaneously - C++?",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-18 00:14:52Z"
},
"/q/2923197/612429": {
"postId": 2923197,
"postTitle": "Ajax to read file created by CGI",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:14:42Z"
},
"/q/11511350/798448": {
"postId": 11511350,
"postTitle": "NullReferenceException when setting ItemSource ComboBox property [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:13:59Z"
},
"/q/11495781/798448": {
"postId": 11495781,
"postTitle": "Are Google APIs Typos Considered a XSS Attack? Are CDN's Secure? NO [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:13:12Z"
},
"/q/11521891/612429": {
"postId": 11521891,
"postTitle": "Payment System API or Company [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:12:53Z"
},
"/q/11505417/612429": {
"postId": 11505417,
"postTitle": "MVC with JS and Jquery",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-18 00:12:24Z"
},
"/q/11524606/612429": {
"postId": 11524606,
"postTitle": "Extra Quotation mark is coming in HTML output [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:12:14Z"
},
"/q/11530648/798448": {
"postId": 11530648,
"postTitle": "Need a library for HTTP/HTML network programming in C/C++ or Python [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:11:56Z"
},
"/q/11519486/612429": {
"postId": 11519486,
"postTitle": "There is pointer fast as stack in C? (Without indirections but still heap)",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:11:37Z"
},
"/q/11517461/798448": {
"postId": 11517461,
"postTitle": "what is differnt between these two statement? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:11:32Z"
},
"/q/11494797/798448": {
"postId": 11494797,
"postTitle": "ExtJS 4.1 MVC Viewport [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:11:23Z"
},
"/q/11496470/612429": {
"postId": 11496470,
"postTitle": "Why does Aptana Studio 3 give “missing DOCTYPE” error for lowercase doctype?",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-18 00:11:19Z"
},
"/q/11489324/798448": {
"postId": 11489324,
"postTitle": "Force .java to .class compilation [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:11:17Z"
},
"/q/11509366/798448": {
"postId": 11509366,
"postTitle": "bitdefender 2013 root ca causes ssl validation problems [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:11:11Z"
},
"/q/11523633/612429": {
"postId": 11523633,
"postTitle": "Put semicolons in asi mode before brackets",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-18 00:11:04Z"
},
"/q/11513010/612429": {
"postId": 11513010,
"postTitle": "webpage highlight more info box [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:10:46Z"
},
"/q/11490872/798448": {
"postId": 11490872,
"postTitle": "How to add arraylist data to a text file (.txt) [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:10:45Z"
},
"/q/11515700/798448": {
"postId": 11515700,
"postTitle": "Notice: Undefined index: submit in sample.php on line 25 [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:10:28Z"
},
"/q/11520905/798448": {
"postId": 11520905,
"postTitle": "Which of these method layout is better practice? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:10:07Z"
},
"/q/11500868/798448": {
"postId": 11500868,
"postTitle": "jquery wait until iframe is loaded",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:09:52Z"
},
"/q/11529546/612429": {
"postId": 11529546,
"postTitle": "mkl_intel_c.lib [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:09:50Z"
},
"/q/11519892/612429": {
"postId": 11519892,
"postTitle": "Javascript: Split into multiple variables [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:09:33Z"
},
"/q/11532222/798448": {
"postId": 11532222,
"postTitle": "what is this syntax doing? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:09:30Z"
},
"/q/11513823/612429": {
"postId": 11513823,
"postTitle": "Facebook Social Login Plugin and: Editing and positioning user information, and storing it for later",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:08:42Z"
},
"/q/11515857/798448": {
"postId": 11515857,
"postTitle": "How to return JSONP without using POJO with Java Jersey? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:08:23Z"
},
"/q/11530543/798448": {
"postId": 11530543,
"postTitle": "jQuery “bounce” effect on center-aligned block elements aligns them left in Firefox and IE8",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:08:12Z"
},
"/q/11516948/612429": {
"postId": 11516948,
"postTitle": "How to make cumsum this matrix",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-18 00:07:56Z"
},
"/q/2493687/612429": {
"postId": 2493687,
"postTitle": "Development environment to use/learn VTK with C++",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:06:43Z"
},
"/q/8505275/612429": {
"postId": 8505275,
"postTitle": "Erlang - How to find the name of current function at runtime?",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:05:43Z"
},
"/q/11514865/612429": {
"postId": 11514865,
"postTitle": "Javascript compiler / dependency manager?",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-18 00:05:18Z"
},
"/q/11501810/612429": {
"postId": 11501810,
"postTitle": "strcmp char array in C [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:05:06Z"
},
"/q/11527452/424459": {
"postId": 11527452,
"postTitle": "What are the differences between a native c++ class and reference and a value classes in c++/cli? [closed]",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-18 00:05:04Z"
},
"/q/11518183/798448": {
"postId": 11518183,
"postTitle": "Cannot connect to sql server [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:05:04Z"
},
"/q/11530648/424459": {
"postId": 11530648,
"postTitle": "Need a library for HTTP/HTML network programming in C/C++ or Python [closed]",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-18 00:04:44Z"
},
"/q/11522900/612429": {
"postId": 11522900,
"postTitle": "button create on SVG and Javascript [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:04:35Z"
},
"/q/5769408/424459": {
"postId": 5769408,
"postTitle": "What software can visualise VTK file formats?",
"userId": 424459,
"userName": "Fraser",
"action": "Do Not Close",
"datetime": "2012-07-18 00:04:21Z"
},
"/q/11530345/612429": {
"postId": 11530345,
"postTitle": "Title Remove from the page [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:04:15Z"
},
"/q/11516956/798448": {
"postId": 11516956,
"postTitle": "Image animation crashing the app [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:03:35Z"
},
"/q/6574165/612429": {
"postId": 6574165,
"postTitle": "organizing all the words in a text file in an array or linked list using python",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-18 00:03:34Z"
},
"/q/11520917/798448": {
"postId": 11520917,
"postTitle": "Create localized string from float [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:03:21Z"
},
"/q/127009/424459": {
"postId": 127009,
"postTitle": "Returning an 'any kind of input iterator' instead of a vector::iterator or a list::iterator",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-18 00:03:14Z"
},
"/q/11518355/424459": {
"postId": 11518355,
"postTitle": "get Server and Database Name in Text boxes [closed]",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-18 00:02:56Z"
},
"/q/11528443/612429": {
"postId": 11528443,
"postTitle": "Is there any event that fires right before the browser request another resource such as image?",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:02:46Z"
},
"/q/11518875/798448": {
"postId": 11518875,
"postTitle": "Javascript to objective c [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:02:44Z"
},
"/q/11531536/424459": {
"postId": 11531536,
"postTitle": "Profiling programs written in C++ for runtime behaviour [closed]",
"userId": 424459,
"userName": "Fraser",
"action": "Close",
"datetime": "2012-07-18 00:02:43Z"
},
"/q/11520050/798448": {
"postId": 11520050,
"postTitle": "NSTextField becomes unselectable by rightmouse click [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:02:38Z"
},
"/q/11520989/612429": {
"postId": 11520989,
"postTitle": "How can I call function every 30 seconds? [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:02:32Z"
},
"/q/11521561/798448": {
"postId": 11521561,
"postTitle": "How to add the Dictionary List? [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:02:29Z"
},
"/q/11529444/612429": {
"postId": 11529444,
"postTitle": "“request” at the deform validation",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-18 00:02:21Z"
},
"/q/11530147/612429": {
"postId": 11530147,
"postTitle": "Convert C to Java with binary byte conversion code",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:02:15Z"
},
"/q/11531964/612429": {
"postId": 11531964,
"postTitle": "Why write all the tags to assign one style is better than using universal selector (*)? [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:01:55Z"
},
"/q/11530110/612429": {
"postId": 11530110,
"postTitle": "Letting a user know about an illegal input to a function",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:01:31Z"
},
"/q/11525612/798448": {
"postId": 11525612,
"postTitle": "Objective C @Selector(methodWithArguments) [closed]",
"userId": 798448,
"userName": "Jason Sturges",
"action": "Close",
"datetime": "2012-07-18 00:01:11Z"
},
"/q/11520746/612429": {
"postId": 11520746,
"postTitle": "How to start a child process of a daemon process which itself is not daemon",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-18 00:00:50Z"
},
"/q/5784802/612429": {
"postId": 5784802,
"postTitle": "How does Pyramid compare against Flask [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:00:35Z"
},
"/q/11505183/612429": {
"postId": 11505183,
"postTitle": "Raphael Graphic covering up input field",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-18 00:00:26Z"
},
"/q/11515057/759019": {
"postId": 11515057,
"postTitle": "MySQL Syntax with DELETE FROM?",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Do Not Close",
"datetime": "2012-07-17 23:36:04Z"
},
"/q/11521038/759019": {
"postId": 11521038,
"postTitle": "What does connect.facebook.net/en_US/all.js do",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Do Not Close",
"datetime": "2012-07-17 23:33:56Z"
},
"/q/11514892/1044591": {
"postId": 11514892,
"postTitle": "JQuery multiple form submit [closed]",
"userId": 1044591,
"userName": "TDeBailleul",
"action": "Close",
"datetime": "2012-07-17 23:32:48Z"
},
"/q/11505972/759019": {
"postId": 11505972,
"postTitle": "jenkins does not read build.properties",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Do Not Close",
"datetime": "2012-07-17 23:32:41Z"
},
"/q/11505427/759019": {
"postId": 11505427,
"postTitle": "Error on Zabbix: /server-status 404: Not Found.",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Do Not Close",
"datetime": "2012-07-17 23:30:44Z"
},
"/q/11516120/759019": {
"postId": 11516120,
"postTitle": "Error in readChar(con, 5L, useBytes = TRUE) : cannot open the connection",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Close",
"datetime": "2012-07-17 23:29:14Z"
},
"/q/11509615/759019": {
"postId": 11509615,
"postTitle": "Why is this comparison only works for integer type id?",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Close",
"datetime": "2012-07-17 23:28:08Z"
},
"/q/11447505/759019": {
"postId": 11447505,
"postTitle": "SEO of a multilingual site, meta tags",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Do Not Close",
"datetime": "2012-07-17 23:27:11Z"
},
"/q/11523064/759019": {
"postId": 11523064,
"postTitle": "Icenium experience and recommendations",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Do Not Close",
"datetime": "2012-07-17 23:23:42Z"
},
"/q/11520189/1011995": {
"postId": 11520189,
"postTitle": "Difference between shutdown and shutdownNow of Executor Service",
"userId": 1011995,
"userName": "Daniel Fischer",
"action": "Close",
"datetime": "2012-07-17 23:23:34Z"
},
"/q/11507243/1011995": {
"postId": 11507243,
"postTitle": "How to create report from database by clicking on a CheckBox [closed]",
"userId": 1011995,
"userName": "Daniel Fischer",
"action": "Close",
"datetime": "2012-07-17 23:22:45Z"
},
"/q/11525403/759019": {
"postId": 11525403,
"postTitle": "Best practices: Ajax and server side scripting with stored procedures [closed]",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Close",
"datetime": "2012-07-17 23:21:38Z"
},
"/q/11519466/759019": {
"postId": 11519466,
"postTitle": "GWT Header checkbox to check / uncheck all checkboxes in my table",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Do Not Close",
"datetime": "2012-07-17 23:21:11Z"
},
"/q/11528949/759019": {
"postId": 11528949,
"postTitle": "validate the credit card expiry date using java?",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Do Not Close",
"datetime": "2012-07-17 23:15:11Z"
},
"/q/11417090/759019": {
"postId": 11417090,
"postTitle": "SEO exclude specific folder/pages",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Edit",
"datetime": "2012-07-17 23:13:29Z"
},
"/q/2787463/759019": {
"postId": 2787463,
"postTitle": "Blackberry upload file to web server",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Close",
"datetime": "2012-07-17 23:03:36Z"
},
"/q/11524060/568785": {
"postId": 11524060,
"postTitle": "How to insert estimate on a particular customer in zoho using php code? [closed]",
"userId": 568785,
"userName": "PhpMyCoder",
"action": "Close",
"datetime": "2012-07-17 22:58:05Z"
},
"/q/11523314/759019": {
"postId": 11523314,
"postTitle": "How to identify javascript functions using regex?",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Do Not Close",
"datetime": "2012-07-17 22:55:05Z"
},
"/q/6040583/759019": {
"postId": 6040583,
"postTitle": "Unable to install pg gem on ubuntu",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Do Not Close",
"datetime": "2012-07-17 22:52:58Z"
},
"/q/1617353/759019": {
"postId": 1617353,
"postTitle": "How can we convince the administration of our university that computer science is important enough to retain it as a discipline?",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Close",
"datetime": "2012-07-17 22:52:40Z"
},
"/q/11523230/483731": {
"postId": 11523230,
"postTitle": "Regular expression in extjs for a phone number",
"userId": 483731,
"userName": "Enrico Pallazzo",
"action": "Close",
"datetime": "2012-07-17 22:48:55Z"
},
"/q/11517876/483731": {
"postId": 11517876,
"postTitle": "EHow to format number to a currency format using String.localeFormat() using jquery?",
"userId": 483731,
"userName": "Enrico Pallazzo",
"action": "Edit",
"datetime": "2012-07-17 22:48:47Z"
},
"/q/11489495/759019": {
"postId": 11489495,
"postTitle": "Javascript Template Engines that work with Chrome's Content Security Policy",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Do Not Close",
"datetime": "2012-07-17 22:48:35Z"
},
"/q/11500681/483731": {
"postId": 11500681,
"postTitle": "How to create another controller instance in view.Yii Framework [closed]",
"userId": 483731,
"userName": "Enrico Pallazzo",
"action": "Close",
"datetime": "2012-07-17 22:48:15Z"
},
"/q/11515819/483731": {
"postId": 11515819,
"postTitle": "How do I add my own custom metadata for creating a custom collection in Plone 4.1? [closed]",
"userId": 483731,
"userName": "Enrico Pallazzo",
"action": "Close",
"datetime": "2012-07-17 22:48:08Z"
},
"/q/11502354/483731": {
"postId": 11502354,
"postTitle": "Language redirect in java",
"userId": 483731,
"userName": "Enrico Pallazzo",
"action": "Close",
"datetime": "2012-07-17 22:48:01Z"
},
"/q/11482747/483731": {
"postId": 11482747,
"postTitle": "How many queries does google allow from a specified IP or website?",
"userId": 483731,
"userName": "Enrico Pallazzo",
"action": "Close",
"datetime": "2012-07-17 22:47:38Z"
},
"/q/11528915/483731": {
"postId": 11528915,
"postTitle": "What is the size limit enforced by browser on <input typ=“file”>? [closed]",
"userId": 483731,
"userName": "Enrico Pallazzo",
"action": "Close",
"datetime": "2012-07-17 22:47:28Z"
},
"/q/11519604/483731": {
"postId": 11519604,
"postTitle": "Important classes xml serialization & its hierarchy in c#? [closed]",
"userId": 483731,
"userName": "Enrico Pallazzo",
"action": "Close",
"datetime": "2012-07-17 22:47:15Z"
},
"/q/11515127/483731": {
"postId": 11515127,
"postTitle": "how I can group the queue",
"userId": 483731,
"userName": "Enrico Pallazzo",
"action": "Close",
"datetime": "2012-07-17 22:47:08Z"
},
"/q/11530970/483731": {
"postId": 11530970,
"postTitle": "Converting datatypes in mysql",
"userId": 483731,
"userName": "Enrico Pallazzo",
"action": "Close",
"datetime": "2012-07-17 22:47:01Z"
},
"/q/10097164/90527": {
"postId": 10097164,
"postTitle": "What are top 3 providers of CDN and Cloud servers [closed]",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-17 22:39:40Z"
},
"/q/11521568/90527": {
"postId": 11521568,
"postTitle": "No GPS position with Google Maps on Galaxy Nexus with android 4.0.4",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-17 22:39:20Z"
},
"/q/11401079/90527": {
"postId": 11401079,
"postTitle": "makeinfo package missing in ubuntu 12.04",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-17 22:37:32Z"
},
"/q/11459726/90527": {
"postId": 11459726,
"postTitle": "Recursive Oracle Query",
"userId": 90527,
"userName": "outis",
"action": "Do Not Close",
"datetime": "2012-07-17 22:37:03Z"
},
"/q/11524883/1011995": {
"postId": 11524883,
"postTitle": "Why does not this delegate work inside the loop? [closed]",
"userId": 1011995,
"userName": "Daniel Fischer",
"action": "Close",
"datetime": "2012-07-17 22:36:14Z"
},
"/q/11524461/759019": {
"postId": 11524461,
"postTitle": "Block unwanted use of json API",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Do Not Close",
"datetime": "2012-07-17 22:36:06Z"
},
"/q/1617353/90527": {
"postId": 1617353,
"postTitle": "How can we convince the administration of our university that computer science is important enough to retain it as a discipline?",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-17 22:36:01Z"
},
"/q/11509496/90527": {
"postId": 11509496,
"postTitle": "(resolved) In IE ≤ 7 my css color backgrounds are not displaying",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-17 22:35:22Z"
},
"/q/7294006/1011995": {
"postId": 7294006,
"postTitle": "UNIX: Static library linked to a static library [closed]",
"userId": 1011995,
"userName": "Daniel Fischer",
"action": "Close",
"datetime": "2012-07-17 22:32:32Z"
},
"/q/11506178/90527": {
"postId": 11506178,
"postTitle": "Greasemonkey, add elements to word",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-17 22:31:41Z"
},
"/q/11519206/90527": {
"postId": 11519206,
"postTitle": "How to remove (“”) double quotes char in NSString in iphone?",
"userId": 90527,
"userName": "outis",
"action": "Close",
"datetime": "2012-07-17 22:30:01Z"
},
"/q/11517667/1011995": {
"postId": 11517667,
"postTitle": "Date validator in Asp.net [closed]",
"userId": 1011995,
"userName": "Daniel Fischer",
"action": "Close",
"datetime": "2012-07-17 22:27:06Z"
},
"/q/11499500/759019": {
"postId": 11499500,
"postTitle": "My web page doesn't load [closed]",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Close",
"datetime": "2012-07-17 22:26:53Z"
},
"/q/11518907/759019": {
"postId": 11518907,
"postTitle": "How can I get a default font name of label control?",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Do Not Close",
"datetime": "2012-07-17 22:23:08Z"
},
"/q/2087894/759019": {
"postId": 2087894,
"postTitle": "Can Google Chrome open local links?",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Do Not Close",
"datetime": "2012-07-17 22:19:50Z"
},
"/q/11523775/1011995": {
"postId": 11523775,
"postTitle": "How to Invoke methods in a Plug-In Dll [closed]",
"userId": 1011995,
"userName": "Daniel Fischer",
"action": "Close",
"datetime": "2012-07-17 22:19:08Z"
},
"/q/11524566/1011995": {
"postId": 11524566,
"postTitle": "Can you detect in Java if the code is being debugged? [closed]",
"userId": 1011995,
"userName": "Daniel Fischer",
"action": "Close",
"datetime": "2012-07-17 22:18:53Z"
},
"/q/4516932/1011995": {
"postId": 4516932,
"postTitle": "difference between slf4j and log4j",
"userId": 1011995,
"userName": "Daniel Fischer",
"action": "Close",
"datetime": "2012-07-17 22:17:50Z"
},
"/q/11506220/759019": {
"postId": 11506220,
"postTitle": "Error MSB4062 when trying to build my CUDA program",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Do Not Close",
"datetime": "2012-07-17 22:17:41Z"
},
"/q/11528526/1011995": {
"postId": 11528526,
"postTitle": "Extracting file from packets on the fly",
"userId": 1011995,
"userName": "Daniel Fischer",
"action": "Close",
"datetime": "2012-07-17 22:17:33Z"
},
"/q/11501729/759019": {
"postId": 11501729,
"postTitle": "FTP access using multiple user logins",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Edit",
"datetime": "2012-07-17 22:17:11Z"
},
"/q/11512157/759019": {
"postId": 11512157,
"postTitle": "How to measure time between taps up to milliseconds?",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Close",
"datetime": "2012-07-17 22:16:54Z"
},
"/q/11499108/759019": {
"postId": 11499108,
"postTitle": "Ext.Loader is not coming in android device. using Sencha Touch 2",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Close",
"datetime": "2012-07-17 22:16:13Z"
},
"/q/11514394/759019": {
"postId": 11514394,
"postTitle": "clearing elements of numpy array",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Do Not Close",
"datetime": "2012-07-17 22:14:43Z"
},
"/q/11514796/759019": {
"postId": 11514796,
"postTitle": "jQuery: Is there a way to turn 'click' events into double-clicks?",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Close",
"datetime": "2012-07-17 22:13:53Z"
},
"/q/11526897/707795": {
"postId": 11526897,
"postTitle": "Java Script Regex - Find if only allowed characters are in the script",
"userId": 707795,
"userName": "Aurelio De Rosa",
"action": "Close",
"datetime": "2012-07-17 22:12:24Z"
},
"/q/11500823/759019": {
"postId": 11500823,
"postTitle": "Mediawiki as as service",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Close",
"datetime": "2012-07-17 22:12:23Z"
},
"/q/4731538/707795": {
"postId": 4731538,
"postTitle": "Best language for Video chat (similar to chat roulette) with MySQL [closed]",
"userId": 707795,
"userName": "Aurelio De Rosa",
"action": "Close",
"datetime": "2012-07-17 22:12:07Z"
},
"/q/11529110/707795": {
"postId": 11529110,
"postTitle": "How to access key in HTML select in $_POST",
"userId": 707795,
"userName": "Aurelio De Rosa",
"action": "Do Not Close",
"datetime": "2012-07-17 22:11:52Z"
},
"/q/11500681/759019": {
"postId": 11500681,
"postTitle": "How to create another controller instance in view.Yii Framework [closed]",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Close",
"datetime": "2012-07-17 22:11:39Z"
},
"/q/11447198/759019": {
"postId": 11447198,
"postTitle": "wordpress shoping cart plugin issue",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Close",
"datetime": "2012-07-17 22:10:40Z"
},
"/q/11501412/759019": {
"postId": 11501412,
"postTitle": "When I add two scripts to a html page..one is doesnt work [closed]",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Close",
"datetime": "2012-07-17 22:09:31Z"
},
"/q/11517850/759019": {
"postId": 11517850,
"postTitle": "PHP Script Execution",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Do Not Close",
"datetime": "2012-07-17 22:07:41Z"
},
"/q/11525703/759019": {
"postId": 11525703,
"postTitle": "port forwarding in windows",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Do Not Close",
"datetime": "2012-07-17 22:06:31Z"
},
"/q/11501664/759019": {
"postId": 11501664,
"postTitle": "Qt QML and OpenGL",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Close",
"datetime": "2012-07-17 22:05:54Z"
},
"/q/11514384/759019": {
"postId": 11514384,
"postTitle": "Using methods on pointers to objects in C",
"userId": 759019,
"userName": "DarkXphenomenon",
"action": "Do Not Close",
"datetime": "2012-07-17 22:05:16Z"
},
"/q/11503202/488657": {
"postId": 11503202,
"postTitle": "How to write a screen recorder in c++? [closed]",
"userId": 488657,
"userName": "Bart",
"action": "Close",
"datetime": "2012-07-17 21:42:13Z"
},
"/q/11527605/488657": {
"postId": 11527605,
"postTitle": "How to write program to detect the number of partitions in harddisk and create one? [closed]",
"userId": 488657,
"userName": "Bart",
"action": "Close",
"datetime": "2012-07-17 21:41:06Z"
},
"/q/11529546/488657": {
"postId": 11529546,
"postTitle": "mkl_intel_c.lib [closed]",
"userId": 488657,
"userName": "Bart",
"action": "Close",
"datetime": "2012-07-17 21:40:43Z"
},
"/q/11520734/488657": {
"postId": 11520734,
"postTitle": "How to create static library in ecclipse cdt? [closed]",
"userId": 488657,
"userName": "Bart",
"action": "Close",
"datetime": "2012-07-17 21:40:18Z"
},
"/q/11520917/488657": {
"postId": 11520917,
"postTitle": "Create localized string from float [closed]",
"userId": 488657,
"userName": "Bart",
"action": "Close",
"datetime": "2012-07-17 21:40:04Z"
},
"/q/11519669/383710": {
"postId": 11519669,
"postTitle": "How to delete “debug” and “release” folders of each project in Visual Studio",
"userId": 383710,
"userName": "DaveShaw",
"action": "Close",
"datetime": "2012-07-17 21:38:30Z"
},
"/q/5337558/383710": {
"postId": 5337558,
"postTitle": "Office 2010 Add-in deployment",
"userId": 383710,
"userName": "DaveShaw",
"action": "Close",
"datetime": "2012-07-17 21:38:06Z"
},
"/q/11527086/1114": {
"postId": 11527086,
"postTitle": "jQuery view.js rel attributes [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-17 21:31:28Z"
},
"/q/11526872/713558": {
"postId": 11526872,
"postTitle": "How to check if the iPhone is connected to the internet? (for Dropbox use)",
"userId": 713558,
"userName": "hypercrypt",
"action": "Close",
"datetime": "2012-07-17 21:18:38Z"
},
"/q/11518222/1258041": {
"postId": 11518222,
"postTitle": "LINQ & SQL Injection [closed]",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Close",
"datetime": "2012-07-17 21:07:30Z"
},
"/q/11500062/1258041": {
"postId": 11500062,
"postTitle": "How to install jdk with yum on Fedora 17? [migrated]",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Close",
"datetime": "2012-07-17 21:06:25Z"
},
"/q/11529464/1258041": {
"postId": 11529464,
"postTitle": "SQL how to use IN while using ISNULL",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Do Not Close",
"datetime": "2012-07-17 21:06:04Z"
},
"/q/11525930/1258041": {
"postId": 11525930,
"postTitle": "Can you modify an existing mysql trigger after it has been created?",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Close",
"datetime": "2012-07-17 21:05:39Z"
},
"/q/11383118/334849": {
"postId": 11383118,
"postTitle": "Buildiing gmail deskop app viwer",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-17 20:42:42Z"
},
"/q/11517628/334849": {
"postId": 11517628,
"postTitle": "Replacing one character with another in a string",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-17 20:41:47Z"
},
"/q/11494466/334849": {
"postId": 11494466,
"postTitle": "How can I implement the observer pattern on a SQL Server 2008 R2 database table? [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-17 20:41:09Z"
},
"/q/6635112/334849": {
"postId": 6635112,
"postTitle": "What does <> mean in excel?",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-17 20:40:15Z"
},
"/q/11524408/334849": {
"postId": 11524408,
"postTitle": "Excel vba macro copy rows multiple times based on a cell integer value",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-17 20:39:43Z"
},
"/q/11509023/334849": {
"postId": 11509023,
"postTitle": "Front-end/Client Side Software [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-17 20:39:03Z"
},
"/q/11499756/334849": {
"postId": 11499756,
"postTitle": "SQL Server varchar(50) and varchar(128) performance difference",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-17 20:37:55Z"
},
"/q/11505379/334849": {
"postId": 11505379,
"postTitle": "How to perform running sum (balance) in SQL",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-17 20:37:29Z"
},
"/q/2049758/334849": {
"postId": 2049758,
"postTitle": "is there a way to eject all external hard drives from the command line? (OS X)",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-17 20:35:37Z"
},
"/q/11016732/334849": {
"postId": 11016732,
"postTitle": "DOS Command for finding server site is deployed to",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-17 20:35:25Z"
},
"/q/11508716/334849": {
"postId": 11508716,
"postTitle": "insert,update and delete using a tree view [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-17 20:35:08Z"
},
"/q/11517968/334849": {
"postId": 11517968,
"postTitle": "SQL query contains IF / ELSE statement [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-17 20:34:52Z"
},
"/q/11509645/334849": {
"postId": 11509645,
"postTitle": "Error while accessing SQL Server using Visual studio 2010",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-17 20:34:34Z"
},
"/q/11513863/334849": {
"postId": 11513863,
"postTitle": "How can I loop through rows in Excel and transpose them until a hyperlink is reached? [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-17 20:34:06Z"
},
"/q/11518183/334849": {
"postId": 11518183,
"postTitle": "Cannot connect to sql server [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-17 20:33:35Z"
},
"/q/11507714/334849": {
"postId": 11507714,
"postTitle": "Identify views accessed more often than others in SQL Server 2008 R2 [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-17 20:33:10Z"
},
"/q/11506993/334849": {
"postId": 11506993,
"postTitle": "What are the steps to be taken for performance tuning of SQL Server 2008? [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-17 20:32:57Z"
},
"/q/11528797/334849": {
"postId": 11528797,
"postTitle": "Convert project from vb6 to vb.net Visual Studio 2008",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Do Not Close",
"datetime": "2012-07-17 20:32:23Z"
},
"/q/11500534/334849": {
"postId": 11500534,
"postTitle": "Best reporting method for asp.net & c#",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-17 20:32:00Z"
},
"/q/11498295/334849": {
"postId": 11498295,
"postTitle": "Referencing Named Ranges in Excel",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-17 20:31:34Z"
},
"/q/11528612/334849": {
"postId": 11528612,
"postTitle": "Why does this SQL code does not generate an error? [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-17 20:31:14Z"
},
"/q/2802726/1258041": {
"postId": 2802726,
"postTitle": "Putting a simple if-then statement on one line [closed]",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Do Not Close",
"datetime": "2012-07-17 20:30:53Z"
},
"/q/11501531/334849": {
"postId": 11501531,
"postTitle": "Saving a Excel File into .txt format without quotes ",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Do Not Close",
"datetime": "2012-07-17 20:30:17Z"
},
"/q/11511500/334849": {
"postId": 11511500,
"postTitle": "Creating a progress bar in Excel VBA [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Do Not Close",
"datetime": "2012-07-17 20:29:54Z"
},
"/q/11523597/1258041": {
"postId": 11523597,
"postTitle": "How can I tell PyCharm/IDEA what type an instance or class variable is expected to be? [closed]",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Close",
"datetime": "2012-07-17 20:29:44Z"
},
"/q/11523597/1252759": {
"postId": 11523597,
"postTitle": "How can I tell PyCharm/IDEA what type an instance or class variable is expected to be? [closed]",
"userId": 1252759,
"userName": "Jon Clements",
"action": "Close",
"datetime": "2012-07-17 20:29:43Z"
},
"/q/11499175/1258041": {
"postId": 11499175,
"postTitle": "How to save Created Geo fence in MySQL using php and check the result? [closed]",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Close",
"datetime": "2012-07-17 20:29:00Z"
},
"/q/11516549/334849": {
"postId": 11516549,
"postTitle": "storing unknown elements of any number in some column in excel file",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-17 20:28:43Z"
},
"/q/11513588/334849": {
"postId": 11513588,
"postTitle": "Sending data from MS Access to a html form [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-17 20:28:28Z"
},
"/q/11434258/334849": {
"postId": 11434258,
"postTitle": "How can I extract keywords from Tridion into an Excel format? [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Do Not Close",
"datetime": "2012-07-17 20:28:02Z"
},
"/q/149321/1258041": {
"postId": 149321,
"postTitle": "What IDE would be good for linux kernel driver development",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Close",
"datetime": "2012-07-17 20:27:55Z"
},
"/q/11514956/1258041": {
"postId": 11514956,
"postTitle": "Why does HTTP Error 500 come up with my appengine app [closed]",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Close",
"datetime": "2012-07-17 20:27:30Z"
},
"/q/11498535/334849": {
"postId": 11498535,
"postTitle": "SQL Server: single usermode ",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-17 20:27:07Z"
},
"/q/11520746/1258041": {
"postId": 11520746,
"postTitle": "How to start a child process of a daemon process which itself is not daemon",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Close",
"datetime": "2012-07-17 20:26:47Z"
},
"/q/11525403/334849": {
"postId": 11525403,
"postTitle": "Best practices: Ajax and server side scripting with stored procedures [closed]",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-17 20:26:44Z"
},
"/q/11521398/334849": {
"postId": 11521398,
"postTitle": "No access to Database File",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-17 20:26:10Z"
},
"/q/11529875/1258041": {
"postId": 11529875,
"postTitle": "Getting specific HTML from a webpage with PHP [closed]",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Close",
"datetime": "2012-07-17 20:26:02Z"
},
"/q/11519719/334849": {
"postId": 11519719,
"postTitle": "compare time in excel",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Do Not Close",
"datetime": "2012-07-17 20:25:46Z"
},
"/q/11495908/334849": {
"postId": 11495908,
"postTitle": "MS Batch: Check if drive is in use",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Do Not Close",
"datetime": "2012-07-17 20:25:35Z"
},
"/q/11524629/334849": {
"postId": 11524629,
"postTitle": "WinSock 10053 Error on Non-English Language Windows Install",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-17 20:24:52Z"
},
"/q/11501565/334849": {
"postId": 11501565,
"postTitle": "Remove duplicates within a row",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Do Not Close",
"datetime": "2012-07-17 20:24:39Z"
},
"/q/11504744/334849": {
"postId": 11504744,
"postTitle": "VBA macro to format an existing graph, keeps creating second, unwanted graph object",
"userId": 334849,
"userName": "LittleBobbyTables",
"action": "Close",
"datetime": "2012-07-17 20:24:11Z"
},
"/q/11514360/219118": {
"postId": 11514360,
"postTitle": "Is it a better practice to inject all variables in the constructor or to use setters and throw exceptions if they are not set?",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-17 20:07:40Z"
},
"/q/11515171/219118": {
"postId": 11515171,
"postTitle": "how to change the existing regex to accept commas [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-17 20:04:33Z"
},
"/q/11516189/219118": {
"postId": 11516189,
"postTitle": "Check if browser IE8 or less using PHP",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-17 20:00:08Z"
},
"/q/11517985/219118": {
"postId": 11517985,
"postTitle": "How can I skin / theme a windows forms application [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-17 19:58:43Z"
},
"/q/11520630/219118": {
"postId": 11520630,
"postTitle": "Stop executing function in setInterval",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-17 19:58:23Z"
},
"/q/11509050/219118": {
"postId": 11509050,
"postTitle": "javascript timer not working",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-17 19:57:57Z"
},
"/q/797210/219118": {
"postId": 797210,
"postTitle": "Custom dropdown box using javascript? [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-17 19:57:39Z"
},
"/q/11498579/219118": {
"postId": 11498579,
"postTitle": "What the best way to make a centralized search for entire site like not same but like Facebook? [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-17 19:57:24Z"
},
"/q/11502246/219118": {
"postId": 11502246,
"postTitle": "Checking differences between the fields in mysql database using Php",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-17 19:56:54Z"
},
"/q/11498770/219118": {
"postId": 11498770,
"postTitle": "jQuery issue - Uncaught TypeError: Cannot read property 'browser' of undefined",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-17 19:56:28Z"
},
"/q/11521114/219118": {
"postId": 11521114,
"postTitle": "PHP edit content of webpage [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-17 19:55:30Z"
},
"/q/11460758/219118": {
"postId": 11460758,
"postTitle": "for a chrome packaged app how do i do evals in the new manifest_version 2 extensions with sandbox [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-17 19:55:09Z"
},
"/q/11523651/219118": {
"postId": 11523651,
"postTitle": "How do I create a Post system and get latest posts? [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-17 19:54:13Z"
},
"/q/11507241/219118": {
"postId": 11507241,
"postTitle": "Meaning of this if statement [if (condition) : something; endif;]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-17 19:53:46Z"
},
"/q/11513943/219118": {
"postId": 11513943,
"postTitle": "Functionality needed similar to Google Contacts - “New Contact” [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-17 19:53:18Z"
},
"/q/11523882/219118": {
"postId": 11523882,
"postTitle": "<th> Border not working in IE",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-17 19:52:32Z"
},
"/q/11498820/219118": {
"postId": 11498820,
"postTitle": "PHP: Properly storing image names in MySQL DB",
"userId": 219118,
"userName": "sachleen",
"action": "Do Not Close",
"datetime": "2012-07-17 19:52:16Z"
},
"/q/11499048/219118": {
"postId": 11499048,
"postTitle": "How to change css rules of external stylesheet [closed]",
"userId": 219118,
"userName": "sachleen",
"action": "Close",
"datetime": "2012-07-17 19:51:10Z"
},
"/q/11511350/212384": {
"postId": 11511350,
"postTitle": "NullReferenceException when setting ItemSource ComboBox property [closed]",
"userId": 212384,
"userName": "Bertrand Marron",
"action": "Close",
"datetime": "2012-07-17 19:39:02Z"
},
"/q/11510264/212384": {
"postId": 11510264,
"postTitle": "SHA1 digest in Perl returns differently in .net [closed]",
"userId": 212384,
"userName": "Bertrand Marron",
"action": "Close",
"datetime": "2012-07-17 19:34:49Z"
},
"/q/11528735/212384": {
"postId": 11528735,
"postTitle": "Filtering files with python [closed]",
"userId": 212384,
"userName": "Bertrand Marron",
"action": "Close",
"datetime": "2012-07-17 19:34:04Z"
},
"/q/11520926/502381": {
"postId": 11520926,
"postTitle": "Select proper Windows for Video Processing",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-17 18:56:41Z"
},
"/q/11522376/1114": {
"postId": 11522376,
"postTitle": "Masonry.js issue with the container [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-17 18:56:19Z"
},
"/q/11501729/502381": {
"postId": 11501729,
"postTitle": "FTP access using multiple user logins",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-17 18:56:12Z"
},
"/q/11515127/238978": {
"postId": 11515127,
"postTitle": "how I can group the queue",
"userId": 238978,
"userName": "Emil Vikström",
"action": "Close",
"datetime": "2012-07-17 18:41:09Z"
},
"/q/11502712/449856": {
"postId": 11502712,
"postTitle": "Only getting a single update in my data",
"userId": 449856,
"userName": "Codemwnci",
"action": "Close",
"datetime": "2012-07-17 18:40:44Z"
},
"/q/11507568/238978": {
"postId": 11507568,
"postTitle": "Importing XML document into Django's (postgres) database",
"userId": 238978,
"userName": "Emil Vikström",
"action": "Do Not Close",
"datetime": "2012-07-17 18:40:44Z"
},
"/q/11515648/238978": {
"postId": 11515648,
"postTitle": "How to use auto increase primary key using PyGreSQL and PostgreSQL",
"userId": 238978,
"userName": "Emil Vikström",
"action": "Do Not Close",
"datetime": "2012-07-17 18:39:59Z"
},
"/q/11498679/449856": {
"postId": 11498679,
"postTitle": "How o set MAC address in WAR file",
"userId": 449856,
"userName": "Codemwnci",
"action": "Close",
"datetime": "2012-07-17 18:39:32Z"
},
"/q/2049758/644348": {
"postId": 2049758,
"postTitle": "is there a way to eject all external hard drives from the command line? (OS X)",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 18:39:24Z"
},
"/q/11187748/644348": {
"postId": 11187748,
"postTitle": "Animating particular section of the screen",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 18:39:02Z"
},
"/q/11498598/449856": {
"postId": 11498598,
"postTitle": "Magento - Send a Friend redirects to 404 page",
"userId": 449856,
"userName": "Codemwnci",
"action": "Close",
"datetime": "2012-07-17 18:38:34Z"
},
"/q/11501418/449856": {
"postId": 11501418,
"postTitle": "can we able to Create File Object From InputStream",
"userId": 449856,
"userName": "Codemwnci",
"action": "Close",
"datetime": "2012-07-17 18:38:12Z"
},
"/q/11520072/644348": {
"postId": 11520072,
"postTitle": "Is hiding your code a big deal? [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 18:37:45Z"
},
"/q/11523597/238978": {
"postId": 11523597,
"postTitle": "How can I tell PyCharm/IDEA what type an instance or class variable is expected to be? [closed]",
"userId": 238978,
"userName": "Emil Vikström",
"action": "Close",
"datetime": "2012-07-17 18:36:08Z"
},
"/q/11520535/238978": {
"postId": 11520535,
"postTitle": "Python HTML Parser [closed]",
"userId": 238978,
"userName": "Emil Vikström",
"action": "Do Not Close",
"datetime": "2012-07-17 18:35:52Z"
},
"/q/768233/502381": {
"postId": 768233,
"postTitle": "Do hashes in URLs affect SEO? [closed]",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-17 18:35:36Z"
},
"/q/11528154/644348": {
"postId": 11528154,
"postTitle": "How do you add sound to a button in XCODE 4.3? [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 18:35:32Z"
},
"/q/11527793/238978": {
"postId": 11527793,
"postTitle": "How to clean string coming from index",
"userId": 238978,
"userName": "Emil Vikström",
"action": "Do Not Close",
"datetime": "2012-07-17 18:35:19Z"
},
"/q/3496319/502381": {
"postId": 3496319,
"postTitle": "making com with vs [closed]",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-17 18:35:14Z"
},
"/q/11495779/502381": {
"postId": 11495779,
"postTitle": "My website doesn't work in I.E. (but does in chrome and firefox)",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-17 18:35:04Z"
},
"/q/11514956/238978": {
"postId": 11514956,
"postTitle": "Why does HTTP Error 500 come up with my appengine app [closed]",
"userId": 238978,
"userName": "Emil Vikström",
"action": "Close",
"datetime": "2012-07-17 18:32:33Z"
},
"/q/1973373/238978": {
"postId": 1973373,
"postTitle": "Why does it do this ? if - __name__ == '__main__' [closed]",
"userId": 238978,
"userName": "Emil Vikström",
"action": "Close",
"datetime": "2012-07-17 18:32:14Z"
},
"/q/11507365/238978": {
"postId": 11507365,
"postTitle": "cat can not open a file",
"userId": 238978,
"userName": "Emil Vikström",
"action": "Do Not Close",
"datetime": "2012-07-17 18:31:52Z"
},
"/q/11521271/238978": {
"postId": 11521271,
"postTitle": "Error while trying to pass awk result to variable",
"userId": 238978,
"userName": "Emil Vikström",
"action": "Close",
"datetime": "2012-07-17 18:31:19Z"
},
"/q/11513644/238978": {
"postId": 11513644,
"postTitle": "Writing daemon in python",
"userId": 238978,
"userName": "Emil Vikström",
"action": "Close",
"datetime": "2012-07-17 18:30:43Z"
},
"/q/11509265/25111": {
"postId": 11509265,
"postTitle": "MVC3 controllers and views",
"userId": 25111,
"userName": "Jon",
"action": "Close",
"datetime": "2012-07-17 18:30:22Z"
},
"/q/11499449/25111": {
"postId": 11499449,
"postTitle": "WCF web service gives error after hosting",
"userId": 25111,
"userName": "Jon",
"action": "Close",
"datetime": "2012-07-17 18:30:08Z"
},
"/q/450285/238978": {
"postId": 450285,
"postTitle": "Executing command line programs from within python [closed]",
"userId": 238978,
"userName": "Emil Vikström",
"action": "Close",
"datetime": "2012-07-17 18:29:55Z"
},
"/q/11520989/238978": {
"postId": 11520989,
"postTitle": "How can I call function every 30 seconds? [closed]",
"userId": 238978,
"userName": "Emil Vikström",
"action": "Close",
"datetime": "2012-07-17 18:29:09Z"
},
"/q/11513377/25111": {
"postId": 11513377,
"postTitle": "how to run pre existing windows service using c# [closed]",
"userId": 25111,
"userName": "Jon",
"action": "Close",
"datetime": "2012-07-17 18:28:48Z"
},
"/q/11501491/25111": {
"postId": 11501491,
"postTitle": "How to put users in queue using C# and ASP.NET [closed]",
"userId": 25111,
"userName": "Jon",
"action": "Close",
"datetime": "2012-07-17 18:26:58Z"
},
"/q/11521364/25111": {
"postId": 11521364,
"postTitle": "Reading numbers from CSV as strings [closed]",
"userId": 25111,
"userName": "Jon",
"action": "Close",
"datetime": "2012-07-17 18:26:38Z"
},
"/q/4539167/25111": {
"postId": 4539167,
"postTitle": "Rotate picturebox [closed]",
"userId": 25111,
"userName": "Jon",
"action": "Close",
"datetime": "2012-07-17 18:25:49Z"
},
"/q/11501282/25111": {
"postId": 11501282,
"postTitle": "database and a new c# windows form appI used a datagridview and joined it to access data base [closed]",
"userId": 25111,
"userName": "Jon",
"action": "Close",
"datetime": "2012-07-17 18:25:30Z"
},
"/q/11516944/238978": {
"postId": 11516944,
"postTitle": "Installing pysqlite in python with sqlite 3 version with custom file header ",
"userId": 238978,
"userName": "Emil Vikström",
"action": "Do Not Close",
"datetime": "2012-07-17 18:21:03Z"
},
"/q/11516883/25111": {
"postId": 11516883,
"postTitle": "How to copy images in one folder to another folder using c#? [closed]",
"userId": 25111,
"userName": "Jon",
"action": "Close",
"datetime": "2012-07-17 18:19:49Z"
},
"/q/11495830/25111": {
"postId": 11495830,
"postTitle": "Unit testing a class that uses a Timer",
"userId": 25111,
"userName": "Jon",
"action": "Close",
"datetime": "2012-07-17 18:19:14Z"
},
"/q/11508716/25111": {
"postId": 11508716,
"postTitle": "insert,update and delete using a tree view [closed]",
"userId": 25111,
"userName": "Jon",
"action": "Close",
"datetime": "2012-07-17 18:16:06Z"
},
"/q/11514770/25111": {
"postId": 11514770,
"postTitle": "Is it better to code to SuperType or Interface?",
"userId": 25111,
"userName": "Jon",
"action": "Close",
"datetime": "2012-07-17 18:15:25Z"
},
"/q/11520236/1252759": {
"postId": 11520236,
"postTitle": "How to write a python function that adds all arguments?",
"userId": 1252759,
"userName": "Jon Clements",
"action": "Do Not Close",
"datetime": "2012-07-17 18:04:11Z"
},
"/q/11526722/1252759": {
"postId": 11526722,
"postTitle": "Selenium help to read this complex table [closed]",
"userId": 1252759,
"userName": "Jon Clements",
"action": "Close",
"datetime": "2012-07-17 18:03:38Z"
},
"/q/11518076/644348": {
"postId": 11518076,
"postTitle": "Objective C - Invoke a method with variable argument list (NS_REQUIRES_NIL_TERMINATION)",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 18:01:02Z"
},
"/q/11525612/644348": {
"postId": 11525612,
"postTitle": "Objective C @Selector(methodWithArguments) [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 18:00:33Z"
},
"/q/11521864/644348": {
"postId": 11521864,
"postTitle": "YUV frame into a CGContext [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 17:59:52Z"
},
"/q/11526356/644348": {
"postId": 11526356,
"postTitle": "How to Edit first column to the newly added row in NSTableview [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 17:59:32Z"
},
"/q/11522356/644348": {
"postId": 11522356,
"postTitle": "Does passing an object as a parameter for a method increment its retain counter under ARC? [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 17:58:56Z"
},
"/q/11522504/644348": {
"postId": 11522504,
"postTitle": "The incoming token did not have a signature at the end of the token",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 17:58:10Z"
},
"/q/11526120/644348": {
"postId": 11526120,
"postTitle": "For several view, is it a good idea to use the Mediator ?",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 17:57:47Z"
},
"/q/11518427/644348": {
"postId": 11518427,
"postTitle": "parsing an xml file nsxmlparser",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 17:57:24Z"
},
"/q/3688640/644348": {
"postId": 3688640,
"postTitle": "I want to make iphone apps but do i really need to learn objective c? [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 17:57:05Z"
},
"/q/11521561/644348": {
"postId": 11521561,
"postTitle": "How to add the Dictionary List? [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 17:56:33Z"
},
"/q/11519062/502381": {
"postId": 11519062,
"postTitle": "displaying lots of files in filezilla via ftp",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-17 17:50:16Z"
},
"/q/11525475/502381": {
"postId": 11525475,
"postTitle": "Change page URLs without losing page ranking [closed]",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-17 17:49:36Z"
},
"/q/11497457/502381": {
"postId": 11497457,
"postTitle": "Git clone without .git directory [closed]",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-17 17:43:51Z"
},
"/q/11500708/502381": {
"postId": 11500708,
"postTitle": "How to delete a particular word in paragraph using PHP? [closed]",
"userId": 502381,
"userName": "Juhana",
"action": "Do Not Close",
"datetime": "2012-07-17 17:41:50Z"
},
"/q/11473873/502381": {
"postId": 11473873,
"postTitle": "wordpress wp query posts per page default",
"userId": 502381,
"userName": "Juhana",
"action": "Do Not Close",
"datetime": "2012-07-17 17:40:44Z"
},
"/q/11515227/502381": {
"postId": 11515227,
"postTitle": "how kill mysqld started by mysqld_safe on mac",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-17 17:40:11Z"
},
"/q/11506192/502381": {
"postId": 11506192,
"postTitle": "After active directory settings where will be the registry key created",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-17 17:39:06Z"
},
"/q/11526634/502381": {
"postId": 11526634,
"postTitle": "Set up git to push to another user's Github repo?",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-17 17:37:23Z"
},
"/q/11518095/1114": {
"postId": 11518095,
"postTitle": "MongoDB - Keeps locking, what am I doing wrong [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-17 17:23:13Z"
},
"/q/11519604/390989": {
"postId": 11519604,
"postTitle": "Important classes xml serialization & its hierarchy in c#? [closed]",
"userId": 390989,
"userName": "eldarerathis",
"action": "Close",
"datetime": "2012-07-17 17:20:58Z"
},
"/q/11520063/390989": {
"postId": 11520063,
"postTitle": "Android:Determine the GPS signal strength",
"userId": 390989,
"userName": "eldarerathis",
"action": "Close",
"datetime": "2012-07-17 17:18:39Z"
},
"/q/11513534/390989": {
"postId": 11513534,
"postTitle": "How to check if file exists in remote folder via FTP?",
"userId": 390989,
"userName": "eldarerathis",
"action": "Close",
"datetime": "2012-07-17 17:13:53Z"
},
"/q/11518223/390989": {
"postId": 11518223,
"postTitle": "Android phone performance",
"userId": 390989,
"userName": "eldarerathis",
"action": "Close",
"datetime": "2012-07-17 17:10:27Z"
},
"/q/11517461/390989": {
"postId": 11517461,
"postTitle": "what is differnt between these two statement? [closed]",
"userId": 390989,
"userName": "eldarerathis",
"action": "Close",
"datetime": "2012-07-17 17:10:14Z"
},
"/q/11516537/390989": {
"postId": 11516537,
"postTitle": "Accelerometer Sensor",
"userId": 390989,
"userName": "eldarerathis",
"action": "Close",
"datetime": "2012-07-17 17:07:19Z"
},
"/q/1973373/390989": {
"postId": 1973373,
"postTitle": "Why does it do this ? if - __name__ == '__main__' [closed]",
"userId": 390989,
"userName": "eldarerathis",
"action": "Close",
"datetime": "2012-07-17 17:02:43Z"
},
"/q/4932859/390989": {
"postId": 4932859,
"postTitle": "android google map [closed]",
"userId": 390989,
"userName": "eldarerathis",
"action": "Close",
"datetime": "2012-07-17 17:02:02Z"
},
"/q/11516603/390989": {
"postId": 11516603,
"postTitle": "android customized view flipper [closed]",
"userId": 390989,
"userName": "eldarerathis",
"action": "Close",
"datetime": "2012-07-17 17:01:14Z"
},
"/q/11519432/390989": {
"postId": 11519432,
"postTitle": "How to download an attachment from a specific email in outlook in asp.net using C#? [closed]",
"userId": 390989,
"userName": "eldarerathis",
"action": "Close",
"datetime": "2012-07-17 17:00:50Z"
},
"/q/11526291/390989": {
"postId": 11526291,
"postTitle": "getting the dropdown in edittext in android application [closed]",
"userId": 390989,
"userName": "eldarerathis",
"action": "Close",
"datetime": "2012-07-17 16:59:36Z"
},
"/q/11518874/390989": {
"postId": 11518874,
"postTitle": "Does't need Collection List tag in xml [closed]",
"userId": 390989,
"userName": "eldarerathis",
"action": "Close",
"datetime": "2012-07-17 16:59:20Z"
},
"/q/11525847/122607": {
"postId": 11525847,
"postTitle": "to draw html inside js file [closed]",
"userId": 122607,
"userName": "Lord Torgamus",
"action": "Close",
"datetime": "2012-07-17 16:58:46Z"
},
"/q/11513377/390989": {
"postId": 11513377,
"postTitle": "how to run pre existing windows service using c# [closed]",
"userId": 390989,
"userName": "eldarerathis",
"action": "Close",
"datetime": "2012-07-17 16:56:41Z"
},
"/q/11514509/122607": {
"postId": 11514509,
"postTitle": "Eclipse show project in explorer [closed]",
"userId": 122607,
"userName": "Lord Torgamus",
"action": "Close",
"datetime": "2012-07-17 16:54:50Z"
},
"/q/11524659/122607": {
"postId": 11524659,
"postTitle": "HTML layout trouble",
"userId": 122607,
"userName": "Lord Torgamus",
"action": "Do Not Close",
"datetime": "2012-07-17 16:54:21Z"
},
"/q/11513938/122607": {
"postId": 11513938,
"postTitle": "What does <?> mean in Android?",
"userId": 122607,
"userName": "Lord Torgamus",
"action": "Edit",
"datetime": "2012-07-17 16:53:36Z"
},
"/q/11523402/122607": {
"postId": 11523402,
"postTitle": "Where does the return in main() return to? [closed]",
"userId": 122607,
"userName": "Lord Torgamus",
"action": "Edit",
"datetime": "2012-07-17 16:51:27Z"
},
"/q/11521432/122607": {
"postId": 11521432,
"postTitle": "Internal Vulnerability Scan Report",
"userId": 122607,
"userName": "Lord Torgamus",
"action": "Close",
"datetime": "2012-07-17 16:48:08Z"
},
"/q/11512305/122607": {
"postId": 11512305,
"postTitle": "How to put image into the select menu",
"userId": 122607,
"userName": "Lord Torgamus",
"action": "Do Not Close",
"datetime": "2012-07-17 16:47:32Z"
},
"/q/11519065/1114": {
"postId": 11519065,
"postTitle": "The meaning of selectObjId [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-17 16:40:35Z"
},
"/q/11518875/1114": {
"postId": 11518875,
"postTitle": "Javascript to objective c [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-17 16:39:21Z"
},
"/q/11521768/168775": {
"postId": 11521768,
"postTitle": "How to place `library (RgoogleMaps)` inside the code of Rcpp?",
"userId": 168775,
"userName": "eykanal",
"action": "Close",
"datetime": "2012-07-17 16:30:14Z"
},
"/q/11523314/168775": {
"postId": 11523314,
"postTitle": "How to identify javascript functions using regex?",
"userId": 168775,
"userName": "eykanal",
"action": "Close",
"datetime": "2012-07-17 16:30:03Z"
},
"/q/11523230/168775": {
"postId": 11523230,
"postTitle": "Regular expression in extjs for a phone number",
"userId": 168775,
"userName": "eykanal",
"action": "Close",
"datetime": "2012-07-17 16:29:46Z"
},
"/q/11508445/168775": {
"postId": 11508445,
"postTitle": "How to ignore existing, commited files in git? [closed]",
"userId": 168775,
"userName": "eykanal",
"action": "Close",
"datetime": "2012-07-17 16:29:36Z"
},
"/q/11504512/168775": {
"postId": 11504512,
"postTitle": "MATLAB nesting multiple input functions",
"userId": 168775,
"userName": "eykanal",
"action": "Close",
"datetime": "2012-07-17 16:29:19Z"
},
"/q/11519353/168775": {
"postId": 11519353,
"postTitle": "Suddenly found bugs when using git [closed]",
"userId": 168775,
"userName": "eykanal",
"action": "Close",
"datetime": "2012-07-17 16:27:33Z"
},
"/q/10326383/168775": {
"postId": 10326383,
"postTitle": "Regular expression for a grammar",
"userId": 168775,
"userName": "eykanal",
"action": "Close",
"datetime": "2012-07-17 16:27:10Z"
},
"/q/11526041/168775": {
"postId": 11526041,
"postTitle": "Critical t values in R",
"userId": 168775,
"userName": "eykanal",
"action": "Close",
"datetime": "2012-07-17 16:26:59Z"
},
"/q/11515970/168775": {
"postId": 11515970,
"postTitle": "generate group (family) in R",
"userId": 168775,
"userName": "eykanal",
"action": "Close",
"datetime": "2012-07-17 16:26:32Z"
},
"/q/11506124/168775": {
"postId": 11506124,
"postTitle": "How to enter command with password for git pull?",
"userId": 168775,
"userName": "eykanal",
"action": "Do Not Close",
"datetime": "2012-07-17 16:26:08Z"
},
"/q/11510442/168775": {
"postId": 11510442,
"postTitle": "Escape Sequences with Perl Unix Commands",
"userId": 168775,
"userName": "eykanal",
"action": "Close",
"datetime": "2012-07-17 16:25:57Z"
},
"/q/11497457/168775": {
"postId": 11497457,
"postTitle": "Git clone without .git directory [closed]",
"userId": 168775,
"userName": "eykanal",
"action": "Close",
"datetime": "2012-07-17 16:25:28Z"
},
"/q/11515171/168775": {
"postId": 11515171,
"postTitle": "how to change the existing regex to accept commas [closed]",
"userId": 168775,
"userName": "eykanal",
"action": "Close",
"datetime": "2012-07-17 16:25:02Z"
},
"/q/11518480/98811": {
"postId": 11518480,
"postTitle": "augmented-reality start in as3",
"userId": 98811,
"userName": "Devon_C_Miller",
"action": "Close",
"datetime": "2012-07-17 16:17:39Z"
},
"/q/11523060/1116739": {
"postId": 11523060,
"postTitle": "Basic Auth in metro app using C# [closed]",
"userId": 1116739,
"userName": "cha0site",
"action": "Close",
"datetime": "2012-07-17 16:11:32Z"
},
"/q/11505692/1116739": {
"postId": 11505692,
"postTitle": "Facebook login button custom text changing after logout",
"userId": 1116739,
"userName": "cha0site",
"action": "Close",
"datetime": "2012-07-17 16:11:13Z"
},
"/q/11522461/1116739": {
"postId": 11522461,
"postTitle": "How should we call the image represented to Web page? [closed]",
"userId": 1116739,
"userName": "cha0site",
"action": "Close",
"datetime": "2012-07-17 16:10:59Z"
},
"/q/11509207/1116739": {
"postId": 11509207,
"postTitle": "Tornado codes vs Weaver codes",
"userId": 1116739,
"userName": "cha0site",
"action": "Close",
"datetime": "2012-07-17 16:10:08Z"
},
"/q/11505907/1258041": {
"postId": 11505907,
"postTitle": "How to get rid of the 1GB overhead of MyISAM table without locking too much the system",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Close",
"datetime": "2012-07-17 15:36:13Z"
},
"/q/11513377/799586": {
"postId": 11513377,
"postTitle": "how to run pre existing windows service using c# [closed]",
"userId": 799586,
"userName": "Bali C",
"action": "Close",
"datetime": "2012-07-17 15:27:46Z"
},
"/q/11498881/265575": {
"postId": 11498881,
"postTitle": "About displaying all fonts in dropdown box [closed]",
"userId": 265575,
"userName": "Justin ᚅᚔᚈᚄᚒᚔ",
"action": "Close",
"datetime": "2012-07-17 15:24:22Z"
},
"/q/11505553/265575": {
"postId": 11505553,
"postTitle": "MySQL table type for money",
"userId": 265575,
"userName": "Justin ᚅᚔᚈᚄᚒᚔ",
"action": "Close",
"datetime": "2012-07-17 15:22:58Z"
},
"/q/11520189/218454": {
"postId": 11520189,
"postTitle": "Difference between shutdown and shutdownNow of Executor Service",
"userId": 218454,
"userName": "nfechner",
"action": "Close",
"datetime": "2012-07-17 15:22:35Z"
},
"/q/11504829/218454": {
"postId": 11504829,
"postTitle": "What do you use for profiling in eclipse, now that TPTP is going to be archived?",
"userId": 218454,
"userName": "nfechner",
"action": "Do Not Close",
"datetime": "2012-07-17 15:22:00Z"
},
"/q/11508445/335415": {
"postId": 11508445,
"postTitle": "How to ignore existing, commited files in git? [closed]",
"userId": 335415,
"userName": "Dan Ray",
"action": "Close",
"datetime": "2012-07-17 15:20:54Z"
},
"/q/11491777/335415": {
"postId": 11491777,
"postTitle": "How can I make an iPhone user to send me his precise location upon request? ",
"userId": 335415,
"userName": "Dan Ray",
"action": "Do Not Close",
"datetime": "2012-07-17 15:20:37Z"
},
"/q/11502288/335415": {
"postId": 11502288,
"postTitle": "Does Twitter know which message have already been downloaded and how?",
"userId": 335415,
"userName": "Dan Ray",
"action": "Do Not Close",
"datetime": "2012-07-17 15:20:13Z"
},
"/q/11520556/335415": {
"postId": 11520556,
"postTitle": "Font gets bigger in eBay App [closed]",
"userId": 335415,
"userName": "Dan Ray",
"action": "Close",
"datetime": "2012-07-17 15:20:02Z"
},
"/q/11499171/335415": {
"postId": 11499171,
"postTitle": "How to detect the value for lowest and highest frequency in aurioTouch project",
"userId": 335415,
"userName": "Dan Ray",
"action": "Do Not Close",
"datetime": "2012-07-17 15:19:37Z"
},
"/q/11514509/746010": {
"postId": 11514509,
"postTitle": "Eclipse show project in explorer [closed]",
"userId": 746010,
"userName": "Charles Sprayberry",
"action": "Close",
"datetime": "2012-07-17 15:15:00Z"
},
"/q/11512673/322283": {
"postId": 11512673,
"postTitle": "How to pass the credentials from a dashboard to another website [closed]",
"userId": 322283,
"userName": "Marijn",
"action": "Close",
"datetime": "2012-07-17 14:56:26Z"
},
"/q/11510264/322283": {
"postId": 11510264,
"postTitle": "SHA1 digest in Perl returns differently in .net [closed]",
"userId": 322283,
"userName": "Marijn",
"action": "Close",
"datetime": "2012-07-17 14:23:32Z"
},
"/q/11501003/592182": {
"postId": 11501003,
"postTitle": "What is the step for sharing Data in Vmware Mac OsX as Guest OS in Windows-7 Host",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-17 14:10:25Z"
},
"/q/11381780/592182": {
"postId": 11381780,
"postTitle": "Mobile site: redirect vs alternative content",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-17 14:08:18Z"
},
"/q/11341797/592182": {
"postId": 11341797,
"postTitle": "cant resize image to 72 x 72 in cs5",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-17 14:07:31Z"
},
"/q/11507946/30433": {
"postId": 11507946,
"postTitle": "Want to implement a search box to search a shop osCommerce and or SMF [closed]",
"userId": 30433,
"userName": "Colin",
"action": "Close",
"datetime": "2012-07-17 14:02:18Z"
},
"/q/11519814/644348": {
"postId": 11519814,
"postTitle": "Combine two audio files into one in objective c",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 13:47:40Z"
},
"/q/11520050/644348": {
"postId": 11520050,
"postTitle": "NSTextField becomes unselectable by rightmouse click [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 13:47:19Z"
},
"/q/11522490/644348": {
"postId": 11522490,
"postTitle": "How to change iphone app to ipad app? [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 13:47:06Z"
},
"/q/11516728/644348": {
"postId": 11516728,
"postTitle": "Free Real-time Currency Conversion Exchange Rate Xml feed url",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 13:46:39Z"
},
"/q/11520917/644348": {
"postId": 11520917,
"postTitle": "Create localized string from float [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 13:46:27Z"
},
"/q/11521039/644348": {
"postId": 11521039,
"postTitle": "how to show popover when tap on pin annotation",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 13:45:30Z"
},
"/q/3074809/6509": {
"postId": 3074809,
"postTitle": "java code to send sms on mobile [closed]",
"userId": 6509,
"userName": "tim_yates",
"action": "Close",
"datetime": "2012-07-17 13:36:41Z"
},
"/q/11490622/6509": {
"postId": 11490622,
"postTitle": "Jbutton over Jbutton background image?",
"userId": 6509,
"userName": "tim_yates",
"action": "Close",
"datetime": "2012-07-17 13:36:14Z"
},
"/q/11501480/6509": {
"postId": 11501480,
"postTitle": "Using pointers with binary trees [closed]",
"userId": 6509,
"userName": "tim_yates",
"action": "Close",
"datetime": "2012-07-17 13:35:46Z"
},
"/q/11519065/6509": {
"postId": 11519065,
"postTitle": "The meaning of selectObjId [closed]",
"userId": 6509,
"userName": "tim_yates",
"action": "Close",
"datetime": "2012-07-17 13:35:26Z"
},
"/q/11511399/6509": {
"postId": 11511399,
"postTitle": "How to store list of countries in Java",
"userId": 6509,
"userName": "tim_yates",
"action": "Close",
"datetime": "2012-07-17 13:35:15Z"
},
"/q/11501471/6509": {
"postId": 11501471,
"postTitle": "jpa entitylistener doesn't work on attributes [closed]",
"userId": 6509,
"userName": "tim_yates",
"action": "Close",
"datetime": "2012-07-17 13:34:52Z"
},
"/q/11503469/448625": {
"postId": 11503469,
"postTitle": "testing interface in different mobile devices [closed]",
"userId": 448625,
"userName": "Caner",
"action": "Close",
"datetime": "2012-07-17 13:19:24Z"
},
"/q/11507072/448625": {
"postId": 11507072,
"postTitle": "How do I link individual letters to a word? [closed]",
"userId": 448625,
"userName": "Caner",
"action": "Do Not Close",
"datetime": "2012-07-17 13:18:32Z"
},
"/q/11499175/448625": {
"postId": 11499175,
"postTitle": "How to save Created Geo fence in MySQL using php and check the result? [closed]",
"userId": 448625,
"userName": "Caner",
"action": "Close",
"datetime": "2012-07-17 13:11:50Z"
},
"/q/11505379/448625": {
"postId": 11505379,
"postTitle": "How to perform running sum (balance) in SQL",
"userId": 448625,
"userName": "Caner",
"action": "Close",
"datetime": "2012-07-17 13:11:33Z"
},
"/q/11488219/448625": {
"postId": 11488219,
"postTitle": "Post to PHP, do not reload page and update div [closed]",
"userId": 448625,
"userName": "Caner",
"action": "Close",
"datetime": "2012-07-17 13:10:45Z"
},
"/q/3051602/448625": {
"postId": 3051602,
"postTitle": "How do I compute the square root of a number without using builtins?",
"userId": 448625,
"userName": "Caner",
"action": "Close",
"datetime": "2012-07-17 13:10:26Z"
},
"/q/11504773/448625": {
"postId": 11504773,
"postTitle": "Simple one: php explode not outputting expected results",
"userId": 448625,
"userName": "Caner",
"action": "Do Not Close",
"datetime": "2012-07-17 13:09:41Z"
},
"/q/11520795/1258041": {
"postId": 11520795,
"postTitle": "Undefined variable: POST - PHP and MySQL",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Do Not Close",
"datetime": "2012-07-17 13:08:58Z"
},
"/q/11508457/448625": {
"postId": 11508457,
"postTitle": "Download html page and its scripts/css files [closed]",
"userId": 448625,
"userName": "Caner",
"action": "Close",
"datetime": "2012-07-17 13:08:29Z"
},
"/q/11517968/1258041": {
"postId": 11517968,
"postTitle": "SQL query contains IF / ELSE statement [closed]",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Close",
"datetime": "2012-07-17 13:08:17Z"
},
"/q/1222821/448625": {
"postId": 1222821,
"postTitle": "PHP: flatten multidimensional array",
"userId": 448625,
"userName": "Caner",
"action": "Close",
"datetime": "2012-07-17 13:07:24Z"
},
"/q/11516237/1258041": {
"postId": 11516237,
"postTitle": "how to find out client ip address and client process id which connected server's specify socket [migrated]",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Close",
"datetime": "2012-07-17 13:07:21Z"
},
"/q/11519321/1258041": {
"postId": 11519321,
"postTitle": "“Call to undefined .. mssql_connect” when using PHP in IIS? (re-ask) [closed]",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Close",
"datetime": "2012-07-17 13:07:03Z"
},
"/q/11515819/1258041": {
"postId": 11515819,
"postTitle": "How do I add my own custom metadata for creating a custom collection in Plone 4.1? [closed]",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Close",
"datetime": "2012-07-17 13:06:23Z"
},
"/q/11519207/1258041": {
"postId": 11519207,
"postTitle": "Validation token in both GET and POST parts of Django's view",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Close",
"datetime": "2012-07-17 13:05:52Z"
},
"/q/11518486/1258041": {
"postId": 11518486,
"postTitle": "ctime, mtime, holding directory, windows, linux",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Close",
"datetime": "2012-07-17 13:05:11Z"
},
"/q/11518035/1258041": {
"postId": 11518035,
"postTitle": "Regular expression for UK based and only numeric phone number in cakephp",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Do Not Close",
"datetime": "2012-07-17 13:04:05Z"
},
"/q/11520535/1258041": {
"postId": 11520535,
"postTitle": "Python HTML Parser [closed]",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Close",
"datetime": "2012-07-17 13:03:40Z"
},
"/q/11515635/1258041": {
"postId": 11515635,
"postTitle": "MySql Notifications",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Do Not Close",
"datetime": "2012-07-17 13:03:06Z"
},
"/q/11521891/238978": {
"postId": 11521891,
"postTitle": "Payment System API or Company [closed]",
"userId": 238978,
"userName": "Emil Vikström",
"action": "Close",
"datetime": "2012-07-17 13:03:02Z"
},
"/q/11509341/6898": {
"postId": 11509341,
"postTitle": "C# error with function and textboxes as a parameter [closed]",
"userId": 6898,
"userName": "CJM",
"action": "Close",
"datetime": "2012-07-17 13:02:54Z"
},
"/q/11520666/6898": {
"postId": 11520666,
"postTitle": "Get from a List<t> the record with the maximum value of a specific property [closed]",
"userId": 6898,
"userName": "CJM",
"action": "Do Not Close",
"datetime": "2012-07-17 13:02:39Z"
},
"/q/11519892/238978": {
"postId": 11519892,
"postTitle": "Javascript: Split into multiple variables [closed]",
"userId": 238978,
"userName": "Emil Vikström",
"action": "Close",
"datetime": "2012-07-17 13:02:35Z"
},
"/q/11513814/6898": {
"postId": 11513814,
"postTitle": "How to achieve master pages / templating in the html5/jquery world",
"userId": 6898,
"userName": "CJM",
"action": "Do Not Close",
"datetime": "2012-07-17 13:02:24Z"
},
"/q/11495318/1258041": {
"postId": 11495318,
"postTitle": "Is there a 64 bit binary version of ujson or cjson for Python 2.7",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Do Not Close",
"datetime": "2012-07-17 13:02:21Z"
},
"/q/11519626/6898": {
"postId": 11519626,
"postTitle": "Web service which provides robust proxies list",
"userId": 6898,
"userName": "CJM",
"action": "Close",
"datetime": "2012-07-17 13:01:59Z"
},
"/q/11515819/238978": {
"postId": 11515819,
"postTitle": "How do I add my own custom metadata for creating a custom collection in Plone 4.1? [closed]",
"userId": 238978,
"userName": "Emil Vikström",
"action": "Close",
"datetime": "2012-07-17 13:01:54Z"
},
"/q/11519743/6898": {
"postId": 11519743,
"postTitle": "Why is the “f” required when declaring floats?",
"userId": 6898,
"userName": "CJM",
"action": "Do Not Close",
"datetime": "2012-07-17 13:01:43Z"
},
"/q/1045964/1258041": {
"postId": 1045964,
"postTitle": "How to view/change socket connection timeout on Linux?",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Do Not Close",
"datetime": "2012-07-17 13:01:26Z"
},
"/q/11501966/1258041": {
"postId": 11501966,
"postTitle": "MySQL service is not running on XAMPP",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Close",
"datetime": "2012-07-17 13:01:12Z"
},
"/q/11509645/6898": {
"postId": 11509645,
"postTitle": "Error while accessing SQL Server using Visual studio 2010",
"userId": 6898,
"userName": "CJM",
"action": "Close",
"datetime": "2012-07-17 13:00:01Z"
},
"/q/11490930/6898": {
"postId": 11490930,
"postTitle": "program interfacing with a usb modem [closed]",
"userId": 6898,
"userName": "CJM",
"action": "Close",
"datetime": "2012-07-17 12:59:09Z"
},
"/q/11506993/6898": {
"postId": 11506993,
"postTitle": "What are the steps to be taken for performance tuning of SQL Server 2008? [closed]",
"userId": 6898,
"userName": "CJM",
"action": "Close",
"datetime": "2012-07-17 12:58:34Z"
},
"/q/11519757/900873": {
"postId": 11519757,
"postTitle": "sshfs “Connection reset by peer” [closed]",
"userId": 900873,
"userName": "Kevin",
"action": "Close",
"datetime": "2012-07-17 12:49:25Z"
},
"/q/11519873/900873": {
"postId": 11519873,
"postTitle": "gotoxy() in C not C++ undefined reference conio.h",
"userId": 900873,
"userName": "Kevin",
"action": "Close",
"datetime": "2012-07-17 12:49:03Z"
},
"/q/11513042/900873": {
"postId": 11513042,
"postTitle": "cross compiling require gcc of higher version than the gcc provided by android [closed]",
"userId": 900873,
"userName": "Kevin",
"action": "Close",
"datetime": "2012-07-17 12:46:37Z"
},
"/q/11508716/592182": {
"postId": 11508716,
"postTitle": "insert,update and delete using a tree view [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-17 12:45:43Z"
},
"/q/11520655/592182": {
"postId": 11520655,
"postTitle": "Is there any javascript or js framework which can be used to convert column to rows and rows to columns in html table or div grids?",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-17 12:45:04Z"
},
"/q/11515377/900873": {
"postId": 11515377,
"postTitle": "Debugging Access Violation on glVertex",
"userId": 900873,
"userName": "Kevin",
"action": "Do Not Close",
"datetime": "2012-07-17 12:43:06Z"
},
"/q/11515819/142637": {
"postId": 11515819,
"postTitle": "How do I add my own custom metadata for creating a custom collection in Plone 4.1? [closed]",
"userId": 142637,
"userName": "BigYellowCactus",
"action": "Close",
"datetime": "2012-07-17 12:38:35Z"
},
"/q/11520150/1063703": {
"postId": 11520150,
"postTitle": "How to fade “this.src.replace” when swapping images on hover (jQuery) [closed]",
"userId": 1063703,
"userName": "benni_mac_b",
"action": "Close",
"datetime": "2012-07-17 12:09:10Z"
},
"/q/11513644/577088": {
"postId": 11513644,
"postTitle": "Writing daemon in python",
"userId": 577088,
"userName": "senderle",
"action": "Close",
"datetime": "2012-07-17 12:07:49Z"
},
"/q/11521468/124259": {
"postId": 11521468,
"postTitle": "How to make NSTextField select text and open context popup menu by right mouse click?",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-17 12:04:40Z"
},
"/q/11502060/124259": {
"postId": 11502060,
"postTitle": "Is it possible to take backup using tablespace offline in mysql?",
"userId": 124259,
"userName": "John Palmer",
"action": "Do Not Close",
"datetime": "2012-07-17 12:02:28Z"
},
"/q/11495583/124259": {
"postId": 11495583,
"postTitle": "Is there a way to post to timeline with the Wordpress iOS App?",
"userId": 124259,
"userName": "John Palmer",
"action": "Do Not Close",
"datetime": "2012-07-17 12:02:25Z"
},
"/q/11497562/124259": {
"postId": 11497562,
"postTitle": "Case Study in the MCTS 70-516 exam? [closed]",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-17 12:02:12Z"
},
"/q/11517042/124259": {
"postId": 11517042,
"postTitle": "General vs Model-specific observers and mailers?",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-17 12:02:03Z"
},
"/q/11517115/124259": {
"postId": 11517115,
"postTitle": "Time drift on linux on reboot [closed]",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-17 12:01:54Z"
},
"/q/11495340/124259": {
"postId": 11495340,
"postTitle": "Frameworks that use Reflection [closed]",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-17 12:01:40Z"
},
"/q/11485367/124259": {
"postId": 11485367,
"postTitle": "The techniques to prevent spam posts in Rails3 [closed]",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-17 12:01:31Z"
},
"/q/11519432/124259": {
"postId": 11519432,
"postTitle": "How to download an attachment from a specific email in outlook in asp.net using C#? [closed]",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-17 12:01:23Z"
},
"/q/11486057/124259": {
"postId": 11486057,
"postTitle": "ADENEO Windows Compact Embedded BSP for iMX53 Quick Start Board $500.00 Licensing Fee, What does that mean exactly? [closed]",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-17 12:00:48Z"
},
"/q/11495270/124259": {
"postId": 11495270,
"postTitle": "Half.com Instant Sale API?",
"userId": 124259,
"userName": "John Palmer",
"action": "Close",
"datetime": "2012-07-17 12:00:04Z"
},
"/q/11495579/91282": {
"postId": 11495579,
"postTitle": "GPS Dongle need to unplug and replug to update data [closed]",
"userId": 91282,
"userName": "Till",
"action": "Close",
"datetime": "2012-07-17 11:42:54Z"
},
"/q/10668975/91282": {
"postId": 10668975,
"postTitle": "Xcode: Switching between views",
"userId": 91282,
"userName": "Till",
"action": "Close",
"datetime": "2012-07-17 11:42:03Z"
},
"/q/11518657/91282": {
"postId": 11518657,
"postTitle": "Which JSON API is good [closed]",
"userId": 91282,
"userName": "Till",
"action": "Close",
"datetime": "2012-07-17 11:41:04Z"
},
"/q/10061851/91282": {
"postId": 10061851,
"postTitle": "What does the symbol ^ represent in Objective-C?",
"userId": 91282,
"userName": "Till",
"action": "Close",
"datetime": "2012-07-17 11:40:44Z"
},
"/q/11507721/91282": {
"postId": 11507721,
"postTitle": "How to migrate browser-based HTML5 and Javascript code into Xcode?",
"userId": 91282,
"userName": "Till",
"action": "Edit",
"datetime": "2012-07-17 11:40:08Z"
},
"/q/11496033/91282": {
"postId": 11496033,
"postTitle": "How to convert from ASCII to string or symbol",
"userId": 91282,
"userName": "Till",
"action": "Do Not Close",
"datetime": "2012-07-17 11:37:45Z"
},
"/q/11484991/151019": {
"postId": 11484991,
"postTitle": "How to prevent guest user to view detail data from the database? [closed]",
"userId": 151019,
"userName": "Mark",
"action": "Close",
"datetime": "2012-07-17 11:18:57Z"
},
"/q/11515321/151019": {
"postId": 11515321,
"postTitle": "Building a Postgresql View Over a View",
"userId": 151019,
"userName": "Mark",
"action": "Do Not Close",
"datetime": "2012-07-17 11:18:43Z"
},
"/q/11493221/151019": {
"postId": 11493221,
"postTitle": "Java rmi - getting java.rmi.NotBoundException on client side",
"userId": 151019,
"userName": "Mark",
"action": "Close",
"datetime": "2012-07-17 11:17:48Z"
},
"/q/11507568/151019": {
"postId": 11507568,
"postTitle": "Importing XML document into Django's (postgres) database",
"userId": 151019,
"userName": "Mark",
"action": "Close",
"datetime": "2012-07-17 11:16:58Z"
},
"/q/11518100/151019": {
"postId": 11518100,
"postTitle": "Getting connection error when i connect database [closed]",
"userId": 151019,
"userName": "Mark",
"action": "Close",
"datetime": "2012-07-17 11:16:41Z"
},
"/q/11503694/151019": {
"postId": 11503694,
"postTitle": "python code for calculating session id randomness",
"userId": 151019,
"userName": "Mark",
"action": "Do Not Close",
"datetime": "2012-07-17 11:15:57Z"
},
"/q/11519610/20786": {
"postId": 11519610,
"postTitle": "Proximity-Based Automatic Garage Door Opener",
"userId": 20786,
"userName": "The_Fox",
"action": "Close",
"datetime": "2012-07-17 11:08:10Z"
},
"/q/11517639/20786": {
"postId": 11517639,
"postTitle": "How do I change the color of a label when I have themes enabled? [closed]",
"userId": 20786,
"userName": "The_Fox",
"action": "Close",
"datetime": "2012-07-17 11:06:42Z"
},
"/q/11492540/502381": {
"postId": 11492540,
"postTitle": "Changing CPU and MB on a hackintosh [closed]",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-17 11:02:51Z"
},
"/q/11495421/502381": {
"postId": 11495421,
"postTitle": "FTP using filezilla",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-17 11:02:29Z"
},
"/q/11496975/502381": {
"postId": 11496975,
"postTitle": "snow leopard on lenovo t500 [closed]",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-17 11:02:13Z"
},
"/q/11515171/502381": {
"postId": 11515171,
"postTitle": "how to change the existing regex to accept commas [closed]",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-17 11:01:49Z"
},
"/q/11520257/502381": {
"postId": 11520257,
"postTitle": "How can I display this rather unusual schedule is an easy to digest manner via PHP and a web language?",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-17 11:01:38Z"
},
"/q/11519201/592182": {
"postId": 11519201,
"postTitle": "I cant recognize this Ncurses library error? [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-17 10:44:51Z"
},
"/q/11494466/592182": {
"postId": 11494466,
"postTitle": "How can I implement the observer pattern on a SQL Server 2008 R2 database table? [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-17 10:44:25Z"
},
"/q/11508079/212940": {
"postId": 11508079,
"postTitle": "PHP downloading large files from web server to local server issue [closed]",
"userId": 212940,
"userName": "vascowhite",
"action": "Close",
"datetime": "2012-07-17 10:33:17Z"
},
"/q/11505404/212940": {
"postId": 11505404,
"postTitle": "How can I check any of radio button is not selected [closed]",
"userId": 212940,
"userName": "vascowhite",
"action": "Close",
"datetime": "2012-07-17 10:32:57Z"
},
"/q/11501471/212940": {
"postId": 11501471,
"postTitle": "jpa entitylistener doesn't work on attributes [closed]",
"userId": 212940,
"userName": "vascowhite",
"action": "Close",
"datetime": "2012-07-17 10:32:40Z"
},
"/q/11501931/861716": {
"postId": 11501931,
"postTitle": "Can ConcurrentDictionary.TryAdd fail?",
"userId": 861716,
"userName": "GertArnold",
"action": "Do Not Close",
"datetime": "2012-07-17 10:21:03Z"
},
"/q/10588842/861716": {
"postId": 10588842,
"postTitle": "LL vs LR in CFGs [closed]",
"userId": 861716,
"userName": "GertArnold",
"action": "Close",
"datetime": "2012-07-17 10:20:43Z"
},
"/q/11488393/861716": {
"postId": 11488393,
"postTitle": "Multithreading with Async gives a TypeCasting Error when using TaskEx.WhenAll()",
"userId": 861716,
"userName": "GertArnold",
"action": "Do Not Close",
"datetime": "2012-07-17 10:18:31Z"
},
"/q/11472031/592182": {
"postId": 11472031,
"postTitle": "Delete ALL text to the left of a particular character in MS excel",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-17 10:04:25Z"
},
"/q/11507590/52444": {
"postId": 11507590,
"postTitle": "Tutorial for Plugin in Dynamic CRM 2011 [closed]",
"userId": 52444,
"userName": "tanascius",
"action": "Close",
"datetime": "2012-07-17 09:50:14Z"
},
"/q/11512639/52444": {
"postId": 11512639,
"postTitle": ".NET WinForms library for drawing floor plans [closed]",
"userId": 52444,
"userName": "tanascius",
"action": "Do Not Close",
"datetime": "2012-07-17 09:49:53Z"
},
"/q/11485704/52444": {
"postId": 11485704,
"postTitle": "Where to put methods? [closed]",
"userId": 52444,
"userName": "tanascius",
"action": "Do Not Close",
"datetime": "2012-07-17 09:49:28Z"
},
"/q/11493194/52444": {
"postId": 11493194,
"postTitle": "Newbie needs help on random record [closed]",
"userId": 52444,
"userName": "tanascius",
"action": "Close",
"datetime": "2012-07-17 09:48:11Z"
},
"/q/11506446/502381": {
"postId": 11506446,
"postTitle": "fdisk not able to use full disk space",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-17 09:33:42Z"
},
"/q/11505235/565635": {
"postId": 11505235,
"postTitle": "how to stop execution on KeyboardInterrupt while using multiprocessing.Pool #python [closed]",
"userId": 565635,
"userName": "nightcracker",
"action": "Close",
"datetime": "2012-07-17 09:24:27Z"
},
"/q/11441829/623518": {
"postId": 11441829,
"postTitle": "Random selection from datasource [closed]",
"userId": 623518,
"userName": "Chris",
"action": "Close",
"datetime": "2012-07-17 09:21:49Z"
},
"/q/11512025/623518": {
"postId": 11512025,
"postTitle": "Retrieve Incoming IP Address Python [closed]",
"userId": 623518,
"userName": "Chris",
"action": "Close",
"datetime": "2012-07-17 09:21:14Z"
},
"/q/11511309/623518": {
"postId": 11511309,
"postTitle": "Using Python in Lazarus GUI",
"userId": 623518,
"userName": "Chris",
"action": "Do Not Close",
"datetime": "2012-07-17 09:20:49Z"
},
"/q/11502288/592182": {
"postId": 11502288,
"postTitle": "Does Twitter know which message have already been downloaded and how?",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-17 09:20:38Z"
},
"/q/9046171/592182": {
"postId": 9046171,
"postTitle": "Eclipse plugin for code coverage [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-17 09:20:19Z"
},
"/q/11496033/592182": {
"postId": 11496033,
"postTitle": "How to convert from ASCII to string or symbol",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-17 09:19:30Z"
},
"/q/11519110/592182": {
"postId": 11519110,
"postTitle": "Turning pseudocode into code [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-17 09:12:34Z"
},
"/q/11519065/592182": {
"postId": 11519065,
"postTitle": "The meaning of selectObjId [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-17 09:10:56Z"
},
"/q/11485261/60281": {
"postId": 11485261,
"postTitle": "Generate CMAKE from MSVC Project? [closed]",
"userId": 60281,
"userName": "DevSolar",
"action": "Close",
"datetime": "2012-07-17 09:06:24Z"
},
"/q/11518183/1258041": {
"postId": 11518183,
"postTitle": "Cannot connect to sql server [closed]",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Close",
"datetime": "2012-07-17 09:01:24Z"
},
"/q/11518168/1258041": {
"postId": 11518168,
"postTitle": "Write values of Python dictionary back to file",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Do Not Close",
"datetime": "2012-07-17 09:00:57Z"
},
"/q/11279230/1258041": {
"postId": 11279230,
"postTitle": "Flash/Php/MySQL Registration Form",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Do Not Close",
"datetime": "2012-07-17 08:59:54Z"
},
"/q/11427681/592182": {
"postId": 11427681,
"postTitle": "how to define a php config file that define constant and use it any where in project",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-17 08:58:59Z"
},
"/q/11517461/1258041": {
"postId": 11517461,
"postTitle": "what is differnt between these two statement? [closed]",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Close",
"datetime": "2012-07-17 08:58:54Z"
},
"/q/1973373/1258041": {
"postId": 1973373,
"postTitle": "Why does it do this ? if - __name__ == '__main__' [closed]",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Close",
"datetime": "2012-07-17 08:58:24Z"
},
"/q/11483263/592182": {
"postId": 11483263,
"postTitle": "How do OSes Handle context switching?",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-17 08:55:03Z"
},
"/q/11507714/592182": {
"postId": 11507714,
"postTitle": "Identify views accessed more often than others in SQL Server 2008 R2 [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-17 08:53:20Z"
},
"/q/11518444/1258041": {
"postId": 11518444,
"postTitle": "Unittest example from doc raises AttributeError",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Do Not Close",
"datetime": "2012-07-17 08:53:11Z"
},
"/q/11513465/1258041": {
"postId": 11513465,
"postTitle": "How to run multiple commands in Linux? Make a programm? [closed]",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Do Not Close",
"datetime": "2012-07-17 08:52:54Z"
},
"/q/11516085/592182": {
"postId": 11516085,
"postTitle": "jquery mobile 1.1.1 data-position=“fixed” doesn't work on iPhone emulator 4.3?",
"userId": 592182,
"userName": "forsvarir",
"action": "Do Not Close",
"datetime": "2012-07-17 08:52:41Z"
},
"/q/11516277/1258041": {
"postId": 11516277,
"postTitle": "How to hook into bash? like command-not-found hanle [closed]",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Close",
"datetime": "2012-07-17 08:52:11Z"
},
"/q/11502469/1258041": {
"postId": 11502469,
"postTitle": "find records with lattitude and logintude [closed]",
"userId": 1258041,
"userName": "Lev Levitsky",
"action": "Close",
"datetime": "2012-07-17 08:51:56Z"
},
"/q/11517653/592182": {
"postId": 11517653,
"postTitle": "jQuery: table with grouping and sum in group footer/header?",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-17 08:51:24Z"
},
"/q/11478040/592182": {
"postId": 11478040,
"postTitle": "rails: loading image before page load",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-17 08:48:25Z"
},
"/q/11492540/644348": {
"postId": 11492540,
"postTitle": "Changing CPU and MB on a hackintosh [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 08:47:15Z"
},
"/q/11338955/644348": {
"postId": 11338955,
"postTitle": "Wrong outputs due to long double accuracy [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 08:47:02Z"
},
"/q/11505656/644348": {
"postId": 11505656,
"postTitle": "How to give away new issues of our magazine, DOTS digital art magazine, which are inapp purchases? [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 08:46:28Z"
},
"/q/11516956/644348": {
"postId": 11516956,
"postTitle": "Image animation crashing the app [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 08:46:16Z"
},
"/q/11517118/644348": {
"postId": 11517118,
"postTitle": "disable a UIButton",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 08:45:38Z"
},
"/q/11516734/644348": {
"postId": 11516734,
"postTitle": "How can I pass image ID to next view by using Storyboards in iOS [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 08:44:45Z"
},
"/q/11513293/204723": {
"postId": 11513293,
"postTitle": "How to add output to a windows form application using c# and visual studio 2010? [closed]",
"userId": 204723,
"userName": "Matt Ellen",
"action": "Close",
"datetime": "2012-07-17 08:41:35Z"
},
"/q/4837837/592182": {
"postId": 4837837,
"postTitle": "video player on a website [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-17 08:41:32Z"
},
"/q/11510867/592182": {
"postId": 11510867,
"postTitle": "How to use Jquery to display of images as is done in Google+ [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-17 08:32:42Z"
},
"/q/11490616/592182": {
"postId": 11490616,
"postTitle": "jQuery to select the “.html” of <p> with some elements inside removed?",
"userId": 592182,
"userName": "forsvarir",
"action": "Do Not Close",
"datetime": "2012-07-17 08:32:11Z"
},
"/q/11501341/592182": {
"postId": 11501341,
"postTitle": "Android Checkbox for firefox,Chrome,IE8 [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-17 08:31:13Z"
},
"/q/11513892/592182": {
"postId": 11513892,
"postTitle": "jQuery Accordion header with independent image and hyperlink",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-17 08:30:56Z"
},
"/q/11517717/592182": {
"postId": 11517717,
"postTitle": "Where can I find the Asp.net MVC 3 SportsStore database download [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-17 08:30:26Z"
},
"/q/11512797/592182": {
"postId": 11512797,
"postTitle": "I would like to ask for some views/help on deciding on a .NET architecture for a public website. These are elements to consider: [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-17 08:30:07Z"
},
"/q/11518100/644450": {
"postId": 11518100,
"postTitle": "Getting connection error when i connect database [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:28:22Z"
},
"/q/11505404/592182": {
"postId": 11505404,
"postTitle": "How can I check any of radio button is not selected [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-17 08:28:18Z"
},
"/q/6064310/644450": {
"postId": 6064310,
"postTitle": "Can an SVG vector graphic be converted to a PNG file format for use in Fireworks?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:28:09Z"
},
"/q/11492537/204723": {
"postId": 11492537,
"postTitle": "processing in php vs c++",
"userId": 204723,
"userName": "Matt Ellen",
"action": "Do Not Close",
"datetime": "2012-07-17 08:27:43Z"
},
"/q/11493490/644450": {
"postId": 11493490,
"postTitle": "Does Android have slider view?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:27:36Z"
},
"/q/11513943/592182": {
"postId": 11513943,
"postTitle": "Functionality needed similar to Google Contacts - “New Contact” [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-17 08:26:24Z"
},
"/q/11502122/644450": {
"postId": 11502122,
"postTitle": "jquery keypress event for cmd+s AND ctrl+s",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-17 08:25:56Z"
},
"/q/10934950/644450": {
"postId": 10934950,
"postTitle": "Bluetooth connectivity in android",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:25:26Z"
},
"/q/269417/644450": {
"postId": 269417,
"postTitle": "Which language should I use?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:24:40Z"
},
"/q/11515538/204723": {
"postId": 11515538,
"postTitle": "binding databased values with a dummy value in a single dropdown list [closed]",
"userId": 204723,
"userName": "Matt Ellen",
"action": "Close",
"datetime": "2012-07-17 08:24:38Z"
},
"/q/11499919/644450": {
"postId": 11499919,
"postTitle": "What is the step for sharing data in Vmware Mac OsX Guest OS in Windows Host",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:24:11Z"
},
"/q/11501070/644450": {
"postId": 11501070,
"postTitle": "When browser close.How to run sqlk query when browser close in php",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:23:38Z"
},
"/q/11505427/644450": {
"postId": 11505427,
"postTitle": "Error on Zabbix: /server-status 404: Not Found.",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:23:08Z"
},
"/q/11498313/644450": {
"postId": 11498313,
"postTitle": "google extension content script doesn't run anymore after frame reload",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-17 08:22:51Z"
},
"/q/11503360/644450": {
"postId": 11503360,
"postTitle": "Support url for app submission in appstore",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:22:28Z"
},
"/q/2972949/644450": {
"postId": 2972949,
"postTitle": "Windows Phone 7 without db support [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:22:12Z"
},
"/q/11484499/644450": {
"postId": 11484499,
"postTitle": "How to run specific version (8.4, 9.1) of postgresql pg_* command (e.g., pg_dump) [migrated]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:22:02Z"
},
"/q/11507365/644450": {
"postId": 11507365,
"postTitle": "cat can not open a file",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:21:45Z"
},
"/q/11495340/644450": {
"postId": 11495340,
"postTitle": "Frameworks that use Reflection [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:21:32Z"
},
"/q/11508716/322283": {
"postId": 11508716,
"postTitle": "insert,update and delete using a tree view [closed]",
"userId": 322283,
"userName": "Marijn",
"action": "Close",
"datetime": "2012-07-17 08:21:08Z"
},
"/q/4330124/644450": {
"postId": 4330124,
"postTitle": "When to use SOAP for developing a web service",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:20:11Z"
},
"/q/11504995/644450": {
"postId": 11504995,
"postTitle": "“searchd” is showing “FATAL: bind() failed on 0.0.0.0: Address already in use”",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:19:40Z"
},
"/q/11485049/644450": {
"postId": 11485049,
"postTitle": "Setting up a Magento API to automate inventory exports",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:19:25Z"
},
"/q/11485341/644450": {
"postId": 11485341,
"postTitle": "Is possible to analyze a html page's main color without making screenshot? [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:19:11Z"
},
"/q/11506043/644450": {
"postId": 11506043,
"postTitle": "How connect Yii with WYSIWYG editor with uploading images? [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:18:40Z"
},
"/q/11513014/644450": {
"postId": 11513014,
"postTitle": "text based proxy on port 80",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:18:33Z"
},
"/q/11513076/644450": {
"postId": 11513076,
"postTitle": "Sending email via PHP [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:18:20Z"
},
"/q/11516188/644450": {
"postId": 11516188,
"postTitle": "How to customize php built-in web server [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:17:51Z"
},
"/q/11513042/644450": {
"postId": 11513042,
"postTitle": "cross compiling require gcc of higher version than the gcc provided by android [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:16:45Z"
},
"/q/11514865/644450": {
"postId": 11514865,
"postTitle": "Javascript compiler / dependency manager?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:16:31Z"
},
"/q/11504724/644450": {
"postId": 11504724,
"postTitle": "How to turn WIFI & 3G on/off on ANDROID device - from WINDOWS OS (using the CMD)",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-17 08:15:45Z"
},
"/q/11505707/644450": {
"postId": 11505707,
"postTitle": "Some nice OO library to handle directories in PHP [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:15:17Z"
},
"/q/3802/644450": {
"postId": 3802,
"postTitle": "How do you typeset code elements in normal text?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:14:49Z"
},
"/q/11495781/644450": {
"postId": 11495781,
"postTitle": "Are Google APIs Typos Considered a XSS Attack? Are CDN's Secure? NO [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:14:15Z"
},
"/q/11484256/644450": {
"postId": 11484256,
"postTitle": "Switch window size in flex",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-17 08:13:29Z"
},
"/q/11497881/644450": {
"postId": 11497881,
"postTitle": "Multiply a number by 2 in Brainfuck?",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-17 08:12:54Z"
},
"/q/11515722/569101": {
"postId": 11515722,
"postTitle": "Programming simultaneously in an IDE with team members [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 08:12:25Z"
},
"/q/11491430/644450": {
"postId": 11491430,
"postTitle": "radio buttons and a textview inside alert dialog",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:12:19Z"
},
"/q/11500062/569101": {
"postId": 11500062,
"postTitle": "How to install jdk with yum on Fedora 17? [migrated]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 08:12:12Z"
},
"/q/11484227/569101": {
"postId": 11484227,
"postTitle": "Robocopy exit code -1073741502",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 08:12:07Z"
},
"/q/237789/569101": {
"postId": 237789,
"postTitle": "Which portals do you recommend for the latest programming technology [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 08:11:59Z"
},
"/q/10307567/569101": {
"postId": 10307567,
"postTitle": "Context Free pumping lemma",
"userId": 569101,
"userName": "j0k",
"action": "Do Not Close",
"datetime": "2012-07-17 08:11:55Z"
},
"/q/11515857/569101": {
"postId": 11515857,
"postTitle": "How to return JSONP without using POJO with Java Jersey? [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 08:11:45Z"
},
"/q/11483618/569101": {
"postId": 11483618,
"postTitle": "Convert CHAR to ASCII in LISP [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 08:11:40Z"
},
"/q/11515676/569101": {
"postId": 11515676,
"postTitle": "Knowing magento version [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Do Not Close",
"datetime": "2012-07-17 08:11:25Z"
},
"/q/11514984/569101": {
"postId": 11514984,
"postTitle": "how to multi client download a file from server at the same time [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 08:11:19Z"
},
"/q/11508457/569101": {
"postId": 11508457,
"postTitle": "Download html page and its scripts/css files [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 08:10:58Z"
},
"/q/11510706/644450": {
"postId": 11510706,
"postTitle": "Table was not locked with LOCK TABLES when recreating an index [migrated]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:10:47Z"
},
"/q/10079075/644450": {
"postId": 10079075,
"postTitle": "CCNet how to display assemblyinfo.cs to the dashboard? [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:10:15Z"
},
"/q/11187148/644450": {
"postId": 11187148,
"postTitle": "Strange finally behaviour?",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-17 08:09:58Z"
},
"/q/11509180/569101": {
"postId": 11509180,
"postTitle": "Internet Explorer 8 problems with CSS",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 08:09:56Z"
},
"/q/11490251/569101": {
"postId": 11490251,
"postTitle": "cache control not working properly",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 08:09:53Z"
},
"/q/810026/569101": {
"postId": 810026,
"postTitle": "How mainstream is LINQ?",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 08:09:49Z"
},
"/q/11490145/569101": {
"postId": 11490145,
"postTitle": "Why lftp mirror --only-newer does not transfer “only newer” file?",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 08:09:42Z"
},
"/q/11501783/569101": {
"postId": 11501783,
"postTitle": "How is the behaviour of this Actor?",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 08:09:38Z"
},
"/q/11472666/569101": {
"postId": 11472666,
"postTitle": "use of MARK target in iptables -?",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 08:09:34Z"
},
"/q/11518296/569101": {
"postId": 11518296,
"postTitle": "Exporting function source [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 08:09:30Z"
},
"/q/3074809/644450": {
"postId": 3074809,
"postTitle": "java code to send sms on mobile [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:09:15Z"
},
"/q/11518124/644450": {
"postId": 11518124,
"postTitle": "Detect duplicate in String using shift operator java",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-17 08:09:08Z"
},
"/q/11514509/644450": {
"postId": 11514509,
"postTitle": "Eclipse show project in explorer [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:08:06Z"
},
"/q/11507913/644450": {
"postId": 11507913,
"postTitle": "Change row Background in JTable Java",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:07:30Z"
},
"/q/11509946/644450": {
"postId": 11509946,
"postTitle": "Converting an ArrayList<HashMap> into a multidimensional List",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:07:14Z"
},
"/q/7964774/644450": {
"postId": 7964774,
"postTitle": "Netbeans 7.0.1 unable to commit deleted files",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-17 08:05:57Z"
},
"/q/11516515/644450": {
"postId": 11516515,
"postTitle": "Java Application that recognizes a Java Class [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:05:42Z"
},
"/q/11510603/644450": {
"postId": 11510603,
"postTitle": "End of file detected on input — Help please [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:05:21Z"
},
"/q/11510415/644450": {
"postId": 11510415,
"postTitle": "How to share Java project with other developers?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:04:35Z"
},
"/q/11517370/644450": {
"postId": 11517370,
"postTitle": "How to dectect open a file in java",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-17 08:03:31Z"
},
"/q/1045964/644450": {
"postId": 1045964,
"postTitle": "How to view/change socket connection timeout on Linux?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:02:48Z"
},
"/q/11515890/644450": {
"postId": 11515890,
"postTitle": "In Java, I want to call a method on an object by the name of 'foo', but 'foo' is a string. How do I get around this?",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-17 08:02:19Z"
},
"/q/11517946/644450": {
"postId": 11517946,
"postTitle": "When an application can be considered as a Java EE application [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:00:20Z"
},
"/q/11511399/644450": {
"postId": 11511399,
"postTitle": "How to store list of countries in Java",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 08:00:08Z"
},
"/q/11515630/644450": {
"postId": 11515630,
"postTitle": "How to iterate list of map and find max of a field and remove other",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-17 08:00:02Z"
},
"/q/11515857/644450": {
"postId": 11515857,
"postTitle": "How to return JSONP without using POJO with Java Jersey? [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 07:59:48Z"
},
"/q/11516164/569101": {
"postId": 11516164,
"postTitle": "How to change First Displaying Form in Android",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 07:59:42Z"
},
"/q/11490585/569101": {
"postId": 11490585,
"postTitle": "Cross-database foreign key ",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 07:59:31Z"
},
"/q/11518012/644450": {
"postId": 11518012,
"postTitle": "Java swing file explorer thumbnail [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 07:59:29Z"
},
"/q/11497334/569101": {
"postId": 11497334,
"postTitle": "Issue Identifying backgrounds songs from Videos trough Echonest [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 07:59:20Z"
},
"/q/11514984/644450": {
"postId": 11514984,
"postTitle": "how to multi client download a file from server at the same time [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 07:59:19Z"
},
"/q/11508226/569101": {
"postId": 11508226,
"postTitle": "stored procedures in mysql [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 07:59:15Z"
},
"/q/11504344/569101": {
"postId": 11504344,
"postTitle": "What's wrong with my FB account when creating app [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 07:59:12Z"
},
"/q/11503406/569101": {
"postId": 11503406,
"postTitle": "CUDA Addressing a matrix",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 07:59:08Z"
},
"/q/11510175/569101": {
"postId": 11510175,
"postTitle": "error in wordpress syntax error, unexpected T_STRING in /***/inkthemes-functions.php on line 1 [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 07:58:52Z"
},
"/q/11504773/569101": {
"postId": 11504773,
"postTitle": "Simple one: php explode not outputting expected results",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 07:58:48Z"
},
"/q/11515635/644450": {
"postId": 11515635,
"postTitle": "MySql Notifications",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 07:58:47Z"
},
"/q/11515538/569101": {
"postId": 11515538,
"postTitle": "binding databased values with a dummy value in a single dropdown list [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 07:58:42Z"
},
"/q/11509395/569101": {
"postId": 11509395,
"postTitle": "Find array duplicates, add to the original and then delete [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Do Not Close",
"datetime": "2012-07-17 07:58:36Z"
},
"/q/11512705/569101": {
"postId": 11512705,
"postTitle": "Print false in php [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 07:58:15Z"
},
"/q/11517404/644450": {
"postId": 11517404,
"postTitle": "struts2 spring 3 hibernate3 maven vanilla sample application [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 07:58:12Z"
},
"/q/11516759/644450": {
"postId": 11516759,
"postTitle": "Sorting Tree Node and tacking nodes",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 07:56:49Z"
},
"/q/4731538/644450": {
"postId": 4731538,
"postTitle": "Best language for Video chat (similar to chat roulette) with MySQL [closed]",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 07:56:33Z"
},
"/q/2636044/644450": {
"postId": 2636044,
"postTitle": "Java REPL shell",
"userId": 644450,
"userName": "oers",
"action": "Do Not Close",
"datetime": "2012-07-17 07:56:25Z"
},
"/q/11513938/644450": {
"postId": 11513938,
"postTitle": "What does <?> mean in Android?",
"userId": 644450,
"userName": "oers",
"action": "Close",
"datetime": "2012-07-17 07:55:57Z"
},
"/q/11504344/64174": {
"postId": 11504344,
"postTitle": "What's wrong with my FB account when creating app [closed]",
"userId": 64174,
"userName": "Sean Owen",
"action": "Close",
"datetime": "2012-07-17 07:55:04Z"
},
"/q/11341560/64174": {
"postId": 11341560,
"postTitle": "JInternalFrame positions",
"userId": 64174,
"userName": "Sean Owen",
"action": "Close",
"datetime": "2012-07-17 07:54:51Z"
},
"/q/11449982/64174": {
"postId": 11449982,
"postTitle": "csv file with no comma",
"userId": 64174,
"userName": "Sean Owen",
"action": "Close",
"datetime": "2012-07-17 07:54:42Z"
},
"/q/6112564/64174": {
"postId": 6112564,
"postTitle": "Identifying when a View really appears/disappears from the visible area of the activity",
"userId": 64174,
"userName": "Sean Owen",
"action": "Close",
"datetime": "2012-07-17 07:54:23Z"
},
"/q/11516757/64174": {
"postId": 11516757,
"postTitle": "java:Barcode scanning [closed]",
"userId": 64174,
"userName": "Sean Owen",
"action": "Do Not Close",
"datetime": "2012-07-17 07:53:47Z"
},
"/q/11494980/502381": {
"postId": 11494980,
"postTitle": "Can nginx rewrite a URL so the path becomes part of the query?",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-17 07:48:25Z"
},
"/q/11490592/502381": {
"postId": 11490592,
"postTitle": "How do I setup my Mac to test Postfix receiving emails",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-17 07:48:11Z"
},
"/q/11487936/502381": {
"postId": 11487936,
"postTitle": "how to add custom hyphenated words to spellchecker in LibreOffice?",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-17 07:48:00Z"
},
"/q/10043029/502381": {
"postId": 10043029,
"postTitle": "How to import “likes” in Community pages",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-17 07:47:43Z"
},
"/q/11016732/502381": {
"postId": 11016732,
"postTitle": "DOS Command for finding server site is deployed to",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-17 07:47:25Z"
},
"/q/11511662/502381": {
"postId": 11511662,
"postTitle": "How can I keep the color when I run the external command inside vim? [migrated]",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-17 07:46:42Z"
},
"/q/11516409/502381": {
"postId": 11516409,
"postTitle": "How to add sms notification feature in my website [closed]",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-17 07:46:26Z"
},
"/q/11501729/274535": {
"postId": 11501729,
"postTitle": "FTP access using multiple user logins",
"userId": 274535,
"userName": "Yan Sklyarenko",
"action": "Close",
"datetime": "2012-07-17 07:44:09Z"
},
"/q/11492230/274535": {
"postId": 11492230,
"postTitle": "SVN Remote Repository reachable from one machine but not from another",
"userId": 274535,
"userName": "Yan Sklyarenko",
"action": "Close",
"datetime": "2012-07-17 07:43:46Z"
},
"/q/11498927/274535": {
"postId": 11498927,
"postTitle": "Number formating [closed]",
"userId": 274535,
"userName": "Yan Sklyarenko",
"action": "Close",
"datetime": "2012-07-17 07:42:51Z"
},
"/q/11510632/274535": {
"postId": 11510632,
"postTitle": "Updating content on ASP.NET website with C# Application [closed]",
"userId": 274535,
"userName": "Yan Sklyarenko",
"action": "Close",
"datetime": "2012-07-17 07:42:19Z"
},
"/q/11514892/100297": {
"postId": 11514892,
"postTitle": "JQuery multiple form submit [closed]",
"userId": 100297,
"userName": "Martijn Pieters",
"action": "Close",
"datetime": "2012-07-17 07:41:54Z"
},
"/q/11495830/274535": {
"postId": 11495830,
"postTitle": "Unit testing a class that uses a Timer",
"userId": 274535,
"userName": "Yan Sklyarenko",
"action": "Close",
"datetime": "2012-07-17 07:40:58Z"
},
"/q/11517642/569101": {
"postId": 11517642,
"postTitle": "Best light weight PHP editor working under UTF-8 without BOM [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 07:34:20Z"
},
"/q/11515579/569101": {
"postId": 11515579,
"postTitle": "Delete stored apc keys with a regular expression",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 07:34:16Z"
},
"/q/11516189/569101": {
"postId": 11516189,
"postTitle": "Check if browser IE8 or less using PHP",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 07:34:07Z"
},
"/q/11515495/569101": {
"postId": 11515495,
"postTitle": "installing PDO for postgresql on apache [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Do Not Close",
"datetime": "2012-07-17 07:33:43Z"
},
"/q/11515555/502381": {
"postId": 11515555,
"postTitle": "Vim trick - how to view directory as a “folder”?",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-17 07:31:46Z"
},
"/q/11513772/569101": {
"postId": 11513772,
"postTitle": "PDO Execute() function not binding the parameter",
"userId": 569101,
"userName": "j0k",
"action": "Do Not Close",
"datetime": "2012-07-17 07:31:13Z"
},
"/q/11502469/569101": {
"postId": 11502469,
"postTitle": "find records with lattitude and logintude [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 07:31:02Z"
},
"/q/11514426/569101": {
"postId": 11514426,
"postTitle": "upload or copying files / deleting",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 07:30:58Z"
},
"/q/11511534/569101": {
"postId": 11511534,
"postTitle": "OAuth: what to do if user refuses to share his data [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 07:30:42Z"
},
"/q/11501458/569101": {
"postId": 11501458,
"postTitle": "I need to populate my Meta tags using Jquery returned data [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Do Not Close",
"datetime": "2012-07-17 07:30:36Z"
},
"/q/11516892/569101": {
"postId": 11516892,
"postTitle": "drawing pictures for a php project [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 07:30:29Z"
},
"/q/11515700/569101": {
"postId": 11515700,
"postTitle": "Notice: Undefined index: submit in sample.php on line 25 [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 07:30:13Z"
},
"/q/11500618/569101": {
"postId": 11500618,
"postTitle": "Search database using PHP [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 07:29:58Z"
},
"/q/11517180/569101": {
"postId": 11517180,
"postTitle": "PHP curly braces - getting a static member variable [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 07:29:47Z"
},
"/q/11488692/716216": {
"postId": 11488692,
"postTitle": "Is there any sort of interactive Objective-C programming tool?",
"userId": 716216,
"userName": "NSPostWhenIdle",
"action": "Close",
"datetime": "2012-07-17 07:29:08Z"
},
"/q/4732852/716216": {
"postId": 4732852,
"postTitle": "Source code for Barcode in iphone sdk [closed]",
"userId": 716216,
"userName": "NSPostWhenIdle",
"action": "Close",
"datetime": "2012-07-17 07:28:43Z"
},
"/q/11498770/100297": {
"postId": 11498770,
"postTitle": "jQuery issue - Uncaught TypeError: Cannot read property 'browser' of undefined",
"userId": 100297,
"userName": "Martijn Pieters",
"action": "Close",
"datetime": "2012-07-17 07:28:42Z"
},
"/q/11499116/716216": {
"postId": 11499116,
"postTitle": "Trying to Convert String to Date",
"userId": 716216,
"userName": "NSPostWhenIdle",
"action": "Close",
"datetime": "2012-07-17 07:28:36Z"
},
"/q/11502477/716216": {
"postId": 11502477,
"postTitle": "Is it possible to develop html5 app without using phonegap? [closed]",
"userId": 716216,
"userName": "NSPostWhenIdle",
"action": "Do Not Close",
"datetime": "2012-07-17 07:28:26Z"
},
"/q/11497678/100297": {
"postId": 11497678,
"postTitle": "Onclick(this) selecting first element, not current",
"userId": 100297,
"userName": "Martijn Pieters",
"action": "Do Not Close",
"datetime": "2012-07-17 07:28:06Z"
},
"/q/11507721/716216": {
"postId": 11507721,
"postTitle": "How to migrate browser-based HTML5 and Javascript code into Xcode?",
"userId": 716216,
"userName": "NSPostWhenIdle",
"action": "Close",
"datetime": "2012-07-17 07:27:45Z"
},
"/q/11494848/592182": {
"postId": 11494848,
"postTitle": "jQuery - 'this' selector doesn't work inside callback function [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-17 07:27:35Z"
},
"/q/933479/716216": {
"postId": 933479,
"postTitle": "Changing cell height in table view Objective C",
"userId": 716216,
"userName": "NSPostWhenIdle",
"action": "Close",
"datetime": "2012-07-17 07:27:25Z"
},
"/q/11187748/716216": {
"postId": 11187748,
"postTitle": "Animating particular section of the screen",
"userId": 716216,
"userName": "NSPostWhenIdle",
"action": "Close",
"datetime": "2012-07-17 07:27:10Z"
},
"/q/11511005/716216": {
"postId": 11511005,
"postTitle": "What is the difference when declaring instance variable with a property or not declaring? [closed]",
"userId": 716216,
"userName": "NSPostWhenIdle",
"action": "Close",
"datetime": "2012-07-17 07:27:02Z"
},
"/q/11517226/592182": {
"postId": 11517226,
"postTitle": "handsontable: inserting data using ajax [closed]",
"userId": 592182,
"userName": "forsvarir",
"action": "Close",
"datetime": "2012-07-17 07:26:49Z"
},
"/q/11506204/100297": {
"postId": 11506204,
"postTitle": "Portable python ssh module [closed]",
"userId": 100297,
"userName": "Martijn Pieters",
"action": "Close",
"datetime": "2012-07-17 07:26:48Z"
},
"/q/10326383/100297": {
"postId": 10326383,
"postTitle": "Regular expression for a grammar",
"userId": 100297,
"userName": "Martijn Pieters",
"action": "Close",
"datetime": "2012-07-17 07:24:10Z"
},
"/q/11509050/100297": {
"postId": 11509050,
"postTitle": "javascript timer not working",
"userId": 100297,
"userName": "Martijn Pieters",
"action": "Close",
"datetime": "2012-07-17 07:22:56Z"
},
"/q/11508195/100297": {
"postId": 11508195,
"postTitle": "Customize Jquery validation message css",
"userId": 100297,
"userName": "Martijn Pieters",
"action": "Do Not Close",
"datetime": "2012-07-17 07:22:21Z"
},
"/q/11498927/100297": {
"postId": 11498927,
"postTitle": "Number formating [closed]",
"userId": 100297,
"userName": "Martijn Pieters",
"action": "Close",
"datetime": "2012-07-17 07:20:56Z"
},
"/q/10808352/100297": {
"postId": 10808352,
"postTitle": "Exiting .each statement based on URL parameter result after comparing to XML",
"userId": 100297,
"userName": "Martijn Pieters",
"action": "Close",
"datetime": "2012-07-17 07:20:14Z"
},
"/q/11513814/502381": {
"postId": 11513814,
"postTitle": "How to achieve master pages / templating in the html5/jquery world",
"userId": 502381,
"userName": "Juhana",
"action": "Close",
"datetime": "2012-07-17 07:13:40Z"
},
"/q/11502066/569101": {
"postId": 11502066,
"postTitle": "PHP arrays - having an array as the key [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 07:08:18Z"
},
"/q/11498052/569101": {
"postId": 11498052,
"postTitle": "send an xml request using soap client in php [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Do Not Close",
"datetime": "2012-07-17 07:07:39Z"
},
"/q/11505496/569101": {
"postId": 11505496,
"postTitle": "Are there any library for i18n on plain php (without any framework)? [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 07:07:35Z"
},
"/q/11513992/569101": {
"postId": 11513992,
"postTitle": "Imported image do not appear - PHP code [closed]",
"userId": 569101,
"userName": "j0k",
"action": "Close",
"datetime": "2012-07-17 07:07:20Z"
},
"/q/11486143/45382": {
"postId": 11486143,
"postTitle": "set last access time",
"userId": 45382,
"userName": "akjoshi",
"action": "Close",
"datetime": "2012-07-17 06:14:41Z"
},
"/q/11509187/45382": {
"postId": 11509187,
"postTitle": "List of Assemblies in a different project within Solution VS2010",
"userId": 45382,
"userName": "akjoshi",
"action": "Close",
"datetime": "2012-07-17 06:14:31Z"
},
"/q/11511350/45382": {
"postId": 11511350,
"postTitle": "NullReferenceException when setting ItemSource ComboBox property [closed]",
"userId": 45382,
"userName": "akjoshi",
"action": "Close",
"datetime": "2012-07-17 06:14:19Z"
},
"/q/11508444/45382": {
"postId": 11508444,
"postTitle": "How do you insert HTML into a C# Program? [closed]",
"userId": 45382,
"userName": "akjoshi",
"action": "Close",
"datetime": "2012-07-17 06:14:09Z"
},
"/q/11508910/45382": {
"postId": 11508910,
"postTitle": "WPF, WinForm C# [closed]",
"userId": 45382,
"userName": "akjoshi",
"action": "Close",
"datetime": "2012-07-17 06:13:57Z"
},
"/q/11497930/45382": {
"postId": 11497930,
"postTitle": "How to access the dynamically generated options via javascript in dropdownlist in codebehind c#? [closed]",
"userId": 45382,
"userName": "akjoshi",
"action": "Close",
"datetime": "2012-07-17 06:13:27Z"
},
"/q/11513293/45382": {
"postId": 11513293,
"postTitle": "How to add output to a windows form application using c# and visual studio 2010? [closed]",
"userId": 45382,
"userName": "akjoshi",
"action": "Close",
"datetime": "2012-07-17 06:13:16Z"
},
"/q/11500563/45382": {
"postId": 11500563,
"postTitle": "WinForm Multithreading. Use backgroundWorker or not?",
"userId": 45382,
"userName": "akjoshi",
"action": "Close",
"datetime": "2012-07-17 06:13:00Z"
},
"/q/10378579/45382": {
"postId": 10378579,
"postTitle": "Convert HTML to PDF with ABCpdf",
"userId": 45382,
"userName": "akjoshi",
"action": "Close",
"datetime": "2012-07-17 06:11:53Z"
},
"/q/11504662/45382": {
"postId": 11504662,
"postTitle": "Can one column come another sql query [closed]",
"userId": 45382,
"userName": "akjoshi",
"action": "Do Not Close",
"datetime": "2012-07-17 06:11:28Z"
},
"/q/11516545/1114": {
"postId": 11516545,
"postTitle": "generating subprocess.call arguments from a list",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Do Not Close",
"datetime": "2012-07-17 05:55:36Z"
},
"/q/7343870/644348": {
"postId": 7343870,
"postTitle": "How can I check out a single file from GitHub without cloning the whole repository?",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 05:45:15Z"
},
"/q/11509207/644348": {
"postId": 11509207,
"postTitle": "Tornado codes vs Weaver codes",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 05:44:25Z"
},
"/q/4773409/644348": {
"postId": 4773409,
"postTitle": "how to do localization for iphone",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 05:44:13Z"
},
"/q/11469358/644348": {
"postId": 11469358,
"postTitle": "What is difference between Scrum and Agile Development? and Does Sprint and Iterations are same?",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 05:43:58Z"
},
"/q/8544884/644348": {
"postId": 8544884,
"postTitle": "CGAffineTransformMakeRotation changes height and width of a UIView [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 05:43:06Z"
},
"/q/11511005/644348": {
"postId": 11511005,
"postTitle": "What is the difference when declaring instance variable with a property or not declaring? [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 05:42:24Z"
},
"/q/11005262/644348": {
"postId": 11005262,
"postTitle": "Need my Xcode fixed!! iPhone simulator crashes and other problems",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 05:41:54Z"
},
"/q/11345230/644348": {
"postId": 11345230,
"postTitle": "Convert to sRGB for iPhone?",
"userId": 644348,
"userName": "Monolo",
"action": "Do Not Close",
"datetime": "2012-07-17 05:40:55Z"
},
"/q/11516403/644348": {
"postId": 11516403,
"postTitle": "SDK for Video Chat for iPhone objective-c? [closed]",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 05:39:23Z"
},
"/q/11504092/644348": {
"postId": 11504092,
"postTitle": "One uiview block another uiview iPhone app",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 05:39:06Z"
},
"/q/10272129/644348": {
"postId": 10272129,
"postTitle": "Face Recognition on the iPhone",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 05:34:41Z"
},
"/q/11514888/644348": {
"postId": 11514888,
"postTitle": "Simultaneous Networking and Gesture Recognition on iPad",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 05:34:19Z"
},
"/q/11501186/644348": {
"postId": 11501186,
"postTitle": "NSTimer scheduledTimerWithTimeInterval:target:selector:userInfo:repeats doesn't invoke the method",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 05:33:02Z"
},
"/q/1578127/1114": {
"postId": 1578127,
"postTitle": "How do I break a long equation over lines?",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Do Not Close",
"datetime": "2012-07-17 05:31:57Z"
},
"/q/11513162/644348": {
"postId": 11513162,
"postTitle": "NSInteger to byte array in reverse order",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 05:31:35Z"
},
"/q/11505973/1114": {
"postId": 11505973,
"postTitle": "winapi Create own Custom ComboBox almost from scratch [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-17 05:30:55Z"
},
"/q/11515376/644348": {
"postId": 11515376,
"postTitle": "How to add an object by tapping the screen Xcode",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 05:30:23Z"
},
"/q/11514930/644348": {
"postId": 11514930,
"postTitle": "How can I add selectable suggestion on textfield",
"userId": 644348,
"userName": "Monolo",
"action": "Close",
"datetime": "2012-07-17 05:28:56Z"
},
"/q/11495781/1114": {
"postId": 11495781,
"postTitle": "Are Google APIs Typos Considered a XSS Attack? Are CDN's Secure? NO [closed]",
"userId": 1114,
"userName": "Jeremy Banks",
"action": "Close",
"datetime": "2012-07-17 04:51:38Z"
},
"/q/11510632/861565": {
"postId": 11510632,
"postTitle": "Updating content on ASP.NET website with C# Application [closed]",
"userId": 861565,
"userName": "jadarnel27",
"action": "Close",
"datetime": "2012-07-17 04:48:44Z"
},
"/q/11508444/861565": {
"postId": 11508444,
"postTitle": "How do you insert HTML into a C# Program? [closed]",
"userId": 861565,
"userName": "jadarnel27",
"action": "Close",
"datetime": "2012-07-17 04:48:17Z"
},
"/q/11512673/861565": {
"postId": 11512673,
"postTitle": "How to pass the credentials from a dashboard to another website [closed]",
"userId": 861565,
"userName": "jadarnel27",
"action": "Close",
"datetime": "2012-07-17 04:46:46Z"
},
"/q/11499756/861565": {
"postId": 11499756,
"postTitle": "SQL Server varchar(50) and varchar(128) performance difference",
"userId": 861565,
"userName": "jadarnel27",
"action": "Close",
"datetime": "2012-07-17 04:46:19Z"
},
"/q/11498143/861565": {
"postId": 11498143,
"postTitle": "Can't find MODI.dll in COM references, even with Office 2007 [closed]",
"userId": 861565,
"userName": "jadarnel27",
"action": "Close",
"datetime": "2012-07-17 04:44:51Z"
},
"/q/11495830/861565": {
"postId": 11495830,
"postTitle": "Unit testing a class that uses a Timer",
"userId": 861565,
"userName": "jadarnel27",
"action": "Close",
"datetime": "2012-07-17 04:44:35Z"
},
"/q/11513534/861565": {
"postId": 11513534,
"postTitle": "How to check if file exists in remote folder via FTP?",
"userId": 861565,
"userName": "jadarnel27",
"action": "Close",
"datetime": "2012-07-17 04:44:05Z"
},
"/q/11209559/612429": {
"postId": 11209559,
"postTitle": "How do I compile a C++ application in Linux? [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-17 04:25:18Z"
},
"/q/11502711/612429": {
"postId": 11502711,
"postTitle": "Generating a table in javascript/jQuery [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-17 04:24:53Z"
},
"/q/11501141/612429": {
"postId": 11501141,
"postTitle": "cant access the response from an ajax request outside that function",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-17 04:24:35Z"
},
"/q/11498493/612429": {
"postId": 11498493,
"postTitle": "HTML file showing an image [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-17 04:24:26Z"
},
"/q/11498911/612429": {
"postId": 11498911,
"postTitle": "Open new window, then in new window [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-17 04:24:18Z"
},
"/q/11460758/612429": {
"postId": 11460758,
"postTitle": "for a chrome packaged app how do i do evals in the new manifest_version 2 extensions with sandbox [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-17 04:23:57Z"
},
"/q/11513705/612429": {
"postId": 11513705,
"postTitle": "python property decorator [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-17 04:23:42Z"
},
"/q/11508358/612429": {
"postId": 11508358,
"postTitle": "What this the best way to validate a form without using “Fancy Javascript”",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-17 04:23:25Z"
},
"/q/11513990/119527": {
"postId": 11513990,
"postTitle": "C# or Visual C# both are same?",
"userId": 119527,
"userName": "Jonathon Reinhart",
"action": "Do Not Close",
"datetime": "2012-07-17 04:23:21Z"
},
"/q/11497792/612429": {
"postId": 11497792,
"postTitle": "Grid system with nested 100% width header beside sidebar?",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-17 04:23:10Z"
},
"/q/11417090/612429": {
"postId": 11417090,
"postTitle": "SEO exclude specific folder/pages",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-17 04:23:03Z"
},
"/q/11500618/119527": {
"postId": 11500618,
"postTitle": "Search database using PHP [closed]",
"userId": 119527,
"userName": "Jonathon Reinhart",
"action": "Close",
"datetime": "2012-07-17 04:22:53Z"
},
"/q/11501412/612429": {
"postId": 11501412,
"postTitle": "When I add two scripts to a html page..one is doesnt work [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-17 04:22:09Z"
},
"/q/11513654/119527": {
"postId": 11513654,
"postTitle": "function or method or function member or method member?",
"userId": 119527,
"userName": "Jonathon Reinhart",
"action": "Do Not Close",
"datetime": "2012-07-17 04:22:06Z"
},
"/q/11513544/612429": {
"postId": 11513544,
"postTitle": "c++ on mac os with secure shell connection, how to run?",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-17 04:21:30Z"
},
"/q/10378579/119527": {
"postId": 10378579,
"postTitle": "Convert HTML to PDF with ABCpdf",
"userId": 119527,
"userName": "Jonathon Reinhart",
"action": "Close",
"datetime": "2012-07-17 04:21:19Z"
},
"/q/11515544/612429": {
"postId": 11515544,
"postTitle": "Why can't I add a new row in my table using javascript? [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-17 04:21:13Z"
},
"/q/11512814/612429": {
"postId": 11512814,
"postTitle": "What would be a JavaScript code library (or maybe just a snippet) that provides a clean UI for “tagging” blog posts or other items? [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-17 04:20:50Z"
},
"/q/11514770/119527": {
"postId": 11514770,
"postTitle": "Is it better to code to SuperType or Interface?",
"userId": 119527,
"userName": "Jonathon Reinhart",
"action": "Close",
"datetime": "2012-07-17 04:20:49Z"
},
"/q/11500088/119527": {
"postId": 11500088,
"postTitle": "PHP: Express Number in Words",
"userId": 119527,
"userName": "Jonathon Reinhart",
"action": "Do Not Close",
"datetime": "2012-07-17 04:19:17Z"
},
"/q/11485139/85950": {
"postId": 11485139,
"postTitle": "Set webpage for all screen resolution [closed]",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-17 04:17:31Z"
},
"/q/11498579/85950": {
"postId": 11498579,
"postTitle": "What the best way to make a centralized search for entire site like not same but like Facebook? [closed]",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-17 04:16:01Z"
},
"/q/11507609/85950": {
"postId": 11507609,
"postTitle": "Auto-reply once for each sender thunderbird",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-17 04:15:44Z"
},
"/q/11511410/85950": {
"postId": 11511410,
"postTitle": "AES cipher in GCM, CCM, or CBC-MAC mode?",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-17 04:13:37Z"
},
"/q/11507946/85950": {
"postId": 11507946,
"postTitle": "Want to implement a search box to search a shop osCommerce and or SMF [closed]",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-17 04:13:16Z"
},
"/q/3704234/85950": {
"postId": 3704234,
"postTitle": "Java usage and licensing in web projects [closed]",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-17 04:13:01Z"
},
"/q/6296240/85950": {
"postId": 6296240,
"postTitle": "Advice on passing programming certification exams",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-17 04:12:21Z"
},
"/q/11490872/85950": {
"postId": 11490872,
"postTitle": "How to add arraylist data to a text file (.txt) [closed]",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-17 04:11:52Z"
},
"/q/11502423/85950": {
"postId": 11502423,
"postTitle": "Create a customised receipt for a POS in Java [closed]",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-17 04:11:34Z"
},
"/q/2397642/85950": {
"postId": 2397642,
"postTitle": "Online Perforce Repositories",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-17 04:11:06Z"
},
"/q/2453857/85950": {
"postId": 2453857,
"postTitle": "The type or namespace name 'IgnoreDataMember' could not be found",
"userId": 85950,
"userName": "blahdiblah",
"action": "Do Not Close",
"datetime": "2012-07-17 04:10:35Z"
},
"/q/11486574/85950": {
"postId": 11486574,
"postTitle": "Etsy.com type site CMS - wordpress or drupal?",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-17 04:07:56Z"
},
"/q/11505973/85950": {
"postId": 11505973,
"postTitle": "winapi Create own Custom ComboBox almost from scratch [closed]",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-17 04:07:39Z"
},
"/q/11504987/85950": {
"postId": 11504987,
"postTitle": "How can I create a closed/private group from an organisation/community page?",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-17 04:07:22Z"
},
"/q/11496093/85950": {
"postId": 11496093,
"postTitle": "Dyno pricing confusion",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-17 04:06:56Z"
},
"/q/11473873/85950": {
"postId": 11473873,
"postTitle": "wordpress wp query posts per page default",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-17 04:06:39Z"
},
"/q/11502044/85950": {
"postId": 11502044,
"postTitle": "Are there any ISO or recommandation about available fields for estate agencies?",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-17 04:06:25Z"
},
"/q/11515118/85950": {
"postId": 11515118,
"postTitle": "ImageMagick not converting JPEGs",
"userId": 85950,
"userName": "blahdiblah",
"action": "Do Not Close",
"datetime": "2012-07-17 04:05:20Z"
},
"/q/11510254/834362": {
"postId": 11510254,
"postTitle": "Parallel.For in Java? [closed]",
"userId": 834362,
"userName": "home",
"action": "Do Not Close",
"datetime": "2012-07-17 03:58:46Z"
},
"/q/11496734/834362": {
"postId": 11496734,
"postTitle": "Add a background image (.png) to a SVG circle shape",
"userId": 834362,
"userName": "home",
"action": "Do Not Close",
"datetime": "2012-07-17 03:58:01Z"
},
"/q/11515519/85950": {
"postId": 11515519,
"postTitle": "I just finished my first Android app today. Now I want to publish it [closed]",
"userId": 85950,
"userName": "blahdiblah",
"action": "Close",
"datetime": "2012-07-17 03:52:44Z"
},
"/q/11499048/612429": {
"postId": 11499048,
"postTitle": "How to change css rules of external stylesheet [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-17 03:39:55Z"
},
"/q/11514401/612429": {
"postId": 11514401,
"postTitle": "Javascript :: Multiple variable assignments in one row",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-17 03:38:53Z"
},
"/q/11496677/612429": {
"postId": 11496677,
"postTitle": "Undefined symbol label1 C++ [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-17 03:38:43Z"
},
"/q/11498881/612429": {
"postId": 11498881,
"postTitle": "About displaying all fonts in dropdown box [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-17 03:38:28Z"
},
"/q/11506821/612429": {
"postId": 11506821,
"postTitle": "How to call a function with parameters and user console input in C++?",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-17 03:38:13Z"
},
"/q/11505641/612429": {
"postId": 11505641,
"postTitle": "Click a text and generate a form(table) in the same page [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-17 03:37:52Z"
},
"/q/11515462/612429": {
"postId": 11515462,
"postTitle": "something about #define syntax in C",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-17 03:37:43Z"
},
"/q/11500819/612429": {
"postId": 11500819,
"postTitle": "modify query for uploading media to wordpress library [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-17 03:36:54Z"
},
"/q/11503642/612429": {
"postId": 11503642,
"postTitle": "countdown timer using canvas",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-17 03:36:37Z"
},
"/q/11501961/612429": {
"postId": 11501961,
"postTitle": "Multiple scripts not working [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-17 03:36:28Z"
},
"/q/11497023/612429": {
"postId": 11497023,
"postTitle": "Finding a rotation around a point",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-17 03:36:13Z"
},
"/q/11503534/612429": {
"postId": 11503534,
"postTitle": "jQuery vs document.querySelectorAll",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-17 03:35:50Z"
},
"/q/11515171/612429": {
"postId": 11515171,
"postTitle": "how to change the existing regex to accept commas [closed]",
"userId": 612429,
"userName": "Kay",
"action": "Close",
"datetime": "2012-07-17 03:35:21Z"
},
"/q/11497788/612429": {
"postId": 11497788,
"postTitle": "difference between following jquery and requireJS functions",
"userId": 612429,
"userName": "Kay",
"action": "Do Not Close",
"datetime": "2012-07-17 03:34:38Z"
},
"/q/11512305/612
View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment