Open ~/.zshrc
in your favorite editor and add the following content to the bottom.
function parse_git_branch() {
name: Node CI | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
upload-release: |
import argparse | |
import os | |
import pefile | |
class DllCharacteristics(): | |
def __init__(self, flags): | |
# collecting IMAGE_DLLCHARACTERISTICS | |
self.TERMINAL_SERVER_AWARE = bool(flags & 0x8000) | |
self.GUARD_CF = bool(flags & 0x4000) |
/*************************************************************************** | |
* Do What THe Fuck You Want To Public Licence 2 * | |
* * | |
* JavaScript implementation by Piotr Rochala (http://rocha.la/) * | |
* Based on C# work of Serge Meunier (http://www.smokycogs.com/) * | |
* * | |
* Check this code in action on http://rocha.la/javascript-plasma-fractal * | |
* * | |
**************************************************************************/ |