This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //compile all jar in libs folder | |
| dependencies { | |
| compile fileTree(dir: 'libs' , include: '*.jar') | |
| } | |
| //pack all so file into a jar and compile it | |
| task nativeLibsToJar( | |
| type: Zip, | |
| description: 'create a jar archive of the native libs') { | |
| destinationDir file('./libs') | |
| baseName 'native-libs' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| git checkout master | |
| SHA1=`git rev-list HEAD | tail -n $1 | head -n 1` | |
| git checkout $SHA1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| HTTP transfer protocols | |
| ======================= | |
| Git supports two HTTP based transfer protocols. A "dumb" protocol | |
| which requires only a standard HTTP server on the server end of the | |
| connection, and a "smart" protocol which requires a Git aware CGI | |
| (or server module). This document describes both protocols. | |
| As a design feature smart clients can automatically upgrade "dumb" | |
| protocol URLs to smart URLs. This permits all users to have the |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using Excel = Microsoft.Office.Interop.Excel; | |
| namespace Helpers.Vsto | |
| { | |
| public sealed class WorkbookClosedMonitor | |
| { | |
| internal class CloseRequestInfo | |
| { | |
| public CloseRequestInfo(string name, int count) |