Skip to content

Instantly share code, notes, and snippets.

View jacklehamster's full-sized avatar
🥴
Loco

Vincent Le Quang jacklehamster

🥴
Loco
View GitHub Profile
@liitfr
liitfr / readme.md
Last active September 22, 2023 19:18
unlock NP when stuck at "Pushing tags" step

If you want to push tag manually & identify problem

git push --follow-tags

Enable SSH

  1. Generate an SSH key

Open terminal to create ssh keys:

@oncode
oncode / write-an-open-source-js-lib.md
Created March 6, 2017 08:28 — forked from deadcoder0904/write-an-open-source-js-lib.md
How to Write an Open Source JavaScript Library
if("undefined" === typeof document.currentScript){
(function(){
/***************************************************************************/
/* document.currentScript polyfill + improvements */
/***************************************************************************/
var scripts = document.getElementsByTagName('script');
document._currentScript = document.currentScript;
// return script object based off of src
var getScriptFromURL = function(url) {