Skip to content

Instantly share code, notes, and snippets.

View neketsushonen's full-sized avatar

Chun Hau Lai neketsushonen

  • chile
View GitHub Profile
@neketsushonen
neketsushonen / git-branches-by-commit-date.sh
Created September 28, 2021 18:07 — forked from jasonrudolph/git-branches-by-commit-date.sh
List remote Git branches and the last commit date for each branch. Sort by most recent commit date.
# Credit http://stackoverflow.com/a/2514279
for branch in `git branch -r | grep -v HEAD`;do echo -e `git show --format="%ci %cr" $branch | head -n 1` \\t$branch; done | sort -r
@neketsushonen
neketsushonen / Activate Office 2019 for macOS VoL.md
Created April 11, 2021 03:50 — forked from zthxxx/Activate Office 2019 for macOS VoL.md
crack activate office on mac with license file

Activate MS Office 2019/2016 for macOS - Microsoft_Office_2019_VL_Serializer

Office 2019 above

2019-06-03

Note that Office2019 DO NOT support activate via simple copy/paste plist license file which is the simplest way to activate Office 2016. Fortunately, you can also use the VL Serializer tool, just install Office 2019 and Serializer, then run Serializer to activate.

Ref

@neketsushonen
neketsushonen / SpringSecurityoauth2SqlServer.sql
Created November 29, 2019 20:29 — forked from marcoberri/SpringSecurityoauth2SqlServer.sql
Spring Security oauth2 - SQLServer 2014 Table Script
USE [DBNAME]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO