Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
| """ | |
| Transforms a normal Python file to pep484 annotations using Jedi. | |
| Usage: | |
| pep484transform.py <file> [-d] | |
| Options: | |
| -d, --debug Show Jedi's debug output. | |
| """ | |
| from os.path import abspath |
| While the standard 80 character limit for source code can be traced back to the | |
| IBM punch card[1] it can still be seen as a good upper bound for how long lines | |
| of text should be on modern high definition displays. | |
| First thing we must acknowledge is that source code is not read in the | |
| traditional sense. Instead developers scan the source using non-linear eye | |
| movements[2] or stay fixated in a small area of code while working out the | |
| logical details of code being written. The fixation on a single location, even | |
| for more than a few seconds, leads to a loss of visual accuity. Which occurs | |
| when the eyes do not perform frequent saccadic eye movements.[3] Further |
This document attempts to refine Python's PEP 440 to include the principles of Semantic Versioning.
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in RFC 2119.
#Git notes
Warning : Support for isplay of git notes has been dropped by github : https://github.com/blog/707-git-notes-display
Resource : https://vimeo.com/34273537
##Add
git notes add
| # All build snippets are based on Ubuntu trusty: | |
| containers: | |
| build: | |
| setup: | |
| - !Ubuntu trusty | |
| - !UbuntuUniverse | |
| # ------------------------------------------------------------------------ |
#Задание 1 - Верстка
Сверстать старницу для всех размеров экрана указаных в макабах на React.js (JSX): Cтраница
Требования:
| #!/usr/bin/python | |
| from __future__ import print_function | |
| from threading import Thread | |
| from twisted.internet.defer import Deferred | |
| from twisted.trial.unittest import TestCase | |
| from paho.mqtt.client import Client |