Skip to content

Instantly share code, notes, and snippets.

View eirikb's full-sized avatar

Eirik Brandtzæg eirikb

  • Softeria AS
  • Ålesund, Norway
View GitHub Profile
public static FileInformation GetFile(ClientContext clientContext, string fileRef)
{
using (var clientContextHack = new ClientContext(clientContext.Url))
{
return File.OpenBinaryDirect(clientContextHack, fileRef);
}
}
@eirikb
eirikb / imgur-oauth-test.html
Last active March 6, 2024 14:21
Post to imgur using oauth (api v3) on a static (no server) site
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>imgur oauth</title>
<script src="http://code.jquery.com/jquery.min.js"></script>
<script>
$(function () {
var extractToken = function(hash) {
@eirikb
eirikb / index.html
Last active December 20, 2015 05:29
Komplett-sort 2000
<p>Lagre som bookmarks/favoritter:</p>
<p>
<a href="javascript:$('div[class*=prod]').sort(function(a,b){function d(x){var d=$(x).find('.value').text().match(/\d+/);if(!d)return 0;return parseInt(d[0],10)};return d(b)-d(a)}).each(function(i){$('div[class*=prod]').eq(i).replaceWith(this)});">Komplettsalg - prosent</a>
</p>
<p>
<a href="javascript:$('div[class*=prod]').sort(function(a,b){function d(x,y){var d=$(x).find(y).text().replace(/\./g,'').match(/\d+/);return d?parseInt(d[0]):0}function dd(x){return d(x,'.priceBefore')-d(x,'.price')}return dd(b)-dd(a)}).each(function(i){$('div[class*=prod]').eq(i).replaceWith(this)});">Komplettsalg - prisforskjell</a>
</p>
using System;
using System.Linq;
public static class IsNumericExtension
{
public static bool IsNumeric(this string orig)
{
return orig.Length > 0 && orig.ToCharArray().All(Char.IsNumber);
}
}
@eirikb
eirikb / SharePointHack.cs
Created April 24, 2013 21:37
Automatically re-load DLL file and invoke external method with SPWeb as parameter. Re-run on DLL re-build
using System;
using System.IO;
using System.Linq;
using System.Reflection;
using Microsoft.SharePoint;
namespace SharePointHack
{
public class Program : MarshalByRefObject
{
protected void Application_PreRequestHandlerExecute()
{
if (!(Context.Handler is IRequiresSessionState)) return;
var authenticationCookie = Request.Cookies[FormsAuthentication.FormsCookieName];
if (authenticationCookie == null) return;
var authenticationTicket = FormsAuthentication.Decrypt(authenticationCookie.Value);
if (authenticationTicket == null || authenticationTicket.Expired) return;
var SPGetSPcurrentUser = function(callback) {
var spuserid = "Error";
var context = new SP.ClientContext.get_current();
// Using this here would make it global, as the function is not called with 'new'
// and this would then point to the global object, window
//this.website = context.get_web();
var website = context.get_web();
var currentUser = website.get_currentUser();
context.load(currentUser);
context.executeQueryAsync(
@eirikb
eirikb / noteboardfilter.js
Created September 27, 2012 06:01
Filtering SharePoint Note Board
$(function() {
$('.ms-socialCommentEdit').each(function() {
var $wp = $(this).closest('[webpartid]');
var $search = $('<input>').keyup(function() {
$wp.find('.ms-socialCommentItem').hide();
$wp.find('.ms-socialCommentItem').filter(function() {
return $(this).find('.socialcomment-contents').text().toLowerCase().indexOf($search.val().toLowerCase()) >= 0;
}).show();
});
$wp.prepend($search);
@eirikb
eirikb / sp-accordion.js
Created September 19, 2012 06:22
Accordion for SharePoint
$('head').append($('<link rel="stylesheet">').attr('href', 'http://twitter.github.com/bootstrap/assets/css/bootstrap.css'));
$.getScript('http://twitter.github.com/bootstrap/assets/js/bootstrap-transition.js', function() {
$.getScript('http://twitter.github.com/bootstrap/assets/js/bootstrap-collapse.js', function() {
var $collapse = $('<div class="accordion">');
var $tplHead = $('<div class="accordion-heading"><a class="accordion-toggle" data-toggle="collapse">');
var $tplBody = $('<div class="accordion-body collapse"><div class="accordion-inner">');
$('.s4-ba .s4-wpTopTable:has([webpartid])').each(function(i) {
var $wp = $(this);
var $content = $wp.find('[webpartid]');
var $head = $tplHead.clone();
@eirikb
eirikb / tables.jade
Created March 17, 2012 22:56
table?
table
thead
tr
th Name
th Age
th Gender
tbody
tr
td Eirik
td 25