See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
| license: gpl-3.0 |
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <style> | |
| body { | |
| font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | |
| } | |
| .stacked-chart-container { | |
| position: relative; | |
| } |
| license: mit |
| . |
| // helper functions | |
| // cnf formula exactly one of the variables in the chosen list to be true | |
| function ext_one(list) { | |
| let temp = "" | |
| temp=temp+atl_one(list) | |
| temp=temp+atm_one(list) | |
| return temp | |
| } |
| 500 DAYS OF SUMMER -- breakdown of the movie timeline | |
| by David Potsiadlo (@davidpots) | |
| ------------------------------------------------------------------------ | |
| ============================================================================================================ | |
| THE ORDER SEEN IN THE MOVIE | |
| ============================================================================================================ | |
| 488 0:00:51 on a bench, she has the ring | |
| 1 0:01:10 tom his his board meeting. jan 8th. when he first sees summer in his office. |
| input: a stack | |
| output: sum of all y0, y1, including data ({}) | |
| for (let i = 0; i < stacks[0].length; i++){ | |
| let point = []; | |
| point[0] = stacks.reduce( | |
| (accumulator, currentValue) => accumulator + currentValue[i][0],0); | |
| point[1] = stacks.reduce( | |
| (accumulator, currentValue) => accumulator + currentValue[i][1],0); | |
| point.data = stacks[0][i].data; |
| CancelRemoveDevice | |
| CancelStopDevice | |
| CloseFile | |
| CreateFile | |
| CreateFileMapping | |
| CreateMailSlot | |
| CreatePipe | |
| Debug Output Profiling | |
| DeviceChange | |
| DeviceIoControl |
| // source: https://github.com/bgrins/devtools-snippets/blob/master/snippets/console-save/console-save.js | |
| (function(console){ | |
| console.save = function(data, filename){ | |
| if(!data) { | |
| console.error('Console.save: No data') | |
| return; | |
| } |