As easy as 1, 2, 3!
Updated:
- Aug, 08, 2022 update
configdocs for npm 8+ - Jul 27, 2021 add private scopes
- Jul 22, 2021 add dist tags
- Jun 20, 2021 update for
--access=public - Sep 07, 2020 update docs for
npm version
| #!/usr/bin/python2 | |
| # Copyright (C) 2016 Sixten Bergman | |
| # License WTFPL | |
| # | |
| # This program is free software. It comes without any warranty, to the extent | |
| # permitted by applicable law. | |
| # You can redistribute it and/or modify it under the terms of the Do What The | |
| # Fuck You Want To Public License, Version 2, as published by Sam Hocevar. See |
| 1) Create a branch with the tag | |
| git branch {tagname}-branch {tagname} | |
| git checkout {tagname}-branch | |
| 2) Include the fix manually if it's just a change .... | |
| git add . | |
| git ci -m "Fix included" | |
| or cherry-pick the commit, whatever is easier | |
| git cherry-pick {num_commit} | |
| A warning occurred (42 apples) | |
| An error occurred |
$ git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git$ nano ~/.zshrcpath=('/path/to/depot_tools' $path)| #!/usr/bin/env python | |
| # coding: utf8 | |
| from __future__ import print_function | |
| ''' | |
| HTW AI Bachelor | |
| §9 Berechnung des Gesamtprädikats | |
| http://ai-bachelor.htw-berlin.de/fileadmin/HTW/Alle/Amtliche_Mitteilungsblaetter/2012/30_12.pdf | |
| ''' |
| // Since `overlapArea` function is monotonic increasing, we can perform a | |
| // simple bisection search to find the distance that leads to an overlap | |
| // area within epsilon of the desired overlap. | |
| function distanceForOverlapArea(r1, r2, desiredOverlap) { | |
| // Ensure r1 <= r2 | |
| if (r1 > r2) { | |
| var temp = r2; | |
| r2 = r1; | |
| r1 = temp; | |
| } |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #define LARGENUM 0x80000001 | |
| int main() | |
| { | |
| char* buf = malloc(LARGENUM + 1); | |
| memset(buf, 'X', LARGENUM); |
| :Namespace apl102 | |
| (⎕IO ⎕ML ⎕WX)←0 1 3 | |
| tok←'your_access_key' | |
| base←'https://botsin.space/api/v1/' | |
| ∆h←⎕SE.UCMD 'Load HttpCommand' | |
| br←{t←⍵ ⎕NTIE 0 ⋄ s←2 ⎕NINFO t ⋄ ⎕NREAD t 80 s} | |
| putMedia←{ | |
| h←⎕NEW ∆h | |
| n←⎕UCS 13 10 ⍝ \r\n | |
| bd←'boundary' |