Skip to content

Instantly share code, notes, and snippets.

View ciez's full-sized avatar

Imants Cekusins ciez

View GitHub Profile
@wpsmith
wpsmith / Get-SPLicenseKey.ps1
Created February 5, 2015 19:35
PowerShell: Gets SharePoint License Key for SharePoint Server 2007, 2010, or 2013.
<#
.SYNOPSIS
Gets the SharePoint License Key for 2007, 2010, or 2013
.DESCRIPTION
Gets the SharePoint License Key for 2007, 2010, or 2013.
.PARAMETER version
Version of SharePoint installed.
@simon04
simon04 / gist:6865179
Last active February 15, 2022 06:14
Gradle, Java plugin, Jar MANIFEST, Class-Path is empty

Gradle, Java plugin, Jar MANIFEST, Class-Path is empty

I struggled with with the jar MANIFEST file built with Gradle containing an empty Class-Path. I traced down the problem to the order of the dependencies and jar blocks in the build.gradle file:

Wrong (jar before dependencies):

jar {
    manifest.attributes(
@wavewave
wavewave / A.hs
Created May 19, 2013 23:27
recursive module import using hs-boot and cabal
module A where
import {-# SOURCE #-} B
data Atyp = Atyp Btyp