Commands to get commit statistics for a Git repository from the command line -
using git log, git shortlog and friends.
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
| <?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
| <widget id="com.app.my" version="2.0.0" xmlns="http://www.w3.org/ns/widgets"> | |
| <name>App BETA</name> | |
| <description>app</description> | |
| </widget> |
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
| console.log(`${Array(16).join("wat"-1)} Batman!`); |
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
| 0x627306090abaB3A6e1400e9345bC60c78a8BEf57 |
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
| module.exports = function witson(_) { | |
| var service = { | |
| encode: encode, | |
| decode: newDecode | |
| }; | |
| var delimiters = { | |
| objStart: ['@', '¿', '¡'], | |
| objEnd: '#', | |
| arrStart: '[', |
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
| library itmap { | |
| struct entry { | |
| // Equal to the index of the key of this item in keys, plus 1. | |
| uint keyIndex; | |
| uint value; | |
| } | |
| struct itmap { | |
| mapping(uint => entry) data; | |
| uint[] keys; |
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
| const l = () => { | |
| // tslint:disable-next-line:one-variable-per-declaration | |
| const stack = new Error().stack, | |
| caller = stack.split('\n')[2].trim(); | |
| let args = Array.prototype.slice.call(arguments); | |
| console.log.apply(this, [caller, args]); | |
| }; | |
| const i = () => { | |
| // tslint:disable-next-line:one-variable-per-declaration |
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
| pragma solidity ^0.4.16; | |
| contract Token { | |
| bytes32 public standard; | |
| bytes32 public name; | |
| bytes32 public symbol; | |
| uint256 public totalSupply; | |
| uint8 public decimals; | |
| bool public allowTransactions; | |
| mapping (address => uint256) public balanceOf; |
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
| Deck: https://docs.google.com/presentation/d/1bhy0EEleZ6jqA2tES9nVvVnN7MtGm3jpYZPvygu8n7g/edit?usp=sharing | |
| Lightpaper: https://docs.google.com/document/d/1brxn0YPAvU3jqpQ2aXgK66IW0iLo7Ex9gZU4LDfUNWE/edit?usp=sharing |