Skip to content

Instantly share code, notes, and snippets.

@rchern
rchern / SE Keyboard Shortcuts
Created December 5, 2010 07:17
Keyboard Shortcuts
function with_jquery(callback) {
var script = document.createElement("script");
script.type = "text/javascript";
script.textContent = "(" + callback.toString() + ")(jQuery)";
document.body.appendChild(script);
}
with_jquery(function ($) {
$(function () {
using System;
using Stacky;
namespace SOAPIPlayground {
class Program {
static void Main(string[] args) {
var siteClient = new StackyClient("1.0", "", Sites.StackOverflow, new UrlClient(), new JsonProtocol());
var userID = 21441;
var answers = siteClient.GetUsersAnswers(userID, QuestionsByUserSort.Activity, SortDirection.Descending, 1, 100, false, true);
int totalAnswers = answers.TotalItems;