Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | π :tada: |
Version tag | π :bookmark: |
New feature | β¨ :sparkles: |
Bugfix | π :bug: |
Collection of License badges for your Project's README file.
This list includes the most common open source and open data licenses.
Easily copy and paste the code under the badges into your Markdown files.
- The badges do not fully replace the license informations for your projects, they are only emblems for the README, that the user can see the License at first glance.
Translations: (No guarantee that the translations are up-to-date)
import sys | |
# Author: Visalbotr Chan | |
# Date: Aug 14 2020 | |
# sys.stdin = open("test1.txt", "r") | |
def main(): | |
def recursion(stack_ith, plate_needed): | |
# base case | |
if stack_ith >= num_stacks or plate_needed <= 0: |
Hello! This document is for young software engineers. The goal of this document is to provide a foundation (and not overwhelm you).
A good dev environment is a great foundation to build and learn bigger things. Before learning any tech you should invest some time learning these basics. Treat this as if you are setting up your study table.
The shell is one of the most basic (and very powerful) ways to interact with your computer. This is where all the interesting things will start and end when you are writing software.
Resources:
# pip module - atlassian-python-api, markdownify | |
from atlassian import Confluence | |
from markdownify import markdownify as md | |
page = confluence.get_page_by_id(261095431, expand='body.storage') | |
body_html = page['body']['storage']['value'] | |
body_markdown = md(body_html) |