Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | π :tada: |
| Version tag | π :bookmark: |
| New feature | β¨ :sparkles: |
| Bugfix | π :bug: |
| package com.example.matthew.myconversionapp; | |
| import android.content.Intent; | |
| import android.content.pm.ApplicationInfo; | |
| import android.support.v7.app.AppCompatActivity; | |
| import android.os.Bundle; | |
| import android.view.View; | |
| import android.widget.Button; | |
| public class MainActivity extends AppCompatActivity { |
| package com.example.matthew.imagebrowserapp; | |
| import android.content.Intent; | |
| import android.os.Bundle; | |
| import android.support.design.widget.FloatingActionButton; | |
| import android.support.design.widget.Snackbar; | |
| import android.support.v7.app.AppCompatActivity; | |
| import android.support.v7.widget.Toolbar; | |
| import android.view.View; | |
| import android.widget.ImageView; |
| package com.example.matthew.imagemetadataeditor; | |
| import android.app.Activity; | |
| import android.app.DatePickerDialog; | |
| import android.content.Context; | |
| import android.content.DialogInterface; | |
| import android.content.Intent; | |
| import android.support.v7.app.AlertDialog; | |
| import android.support.v7.app.AppCompatActivity; | |
| import android.os.Bundle; |
| package swindroid.suntime.calc; | |
| import java.io.BufferedReader; | |
| import java.io.IOException; | |
| import java.io.InputStream; | |
| import java.io.InputStreamReader; | |
| import java.util.ArrayList; | |
| /** |
| package com.example.matthew.simplecustomerlist; | |
| /** | |
| * Created by Matthew on 12/10/2017. | |
| */ | |
| public class Book { | |
| private String bookTitle; |
| package swindroid.suntime.calc; | |
| import android.content.res.Resources; | |
| import java.io.BufferedReader; | |
| import java.io.IOException; | |
| import java.io.InputStream; | |
| import java.io.InputStreamReader; | |
| import java.io.OutputStream; | |
| import java.util.ArrayList; |
| <?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
| <Mail MailId="1510970148"> | |
| <ApprovalStatus>Approved</ApprovalStatus> | |
| <Attachments> | |
| <LocalFileAttachment attachmentId="949133621490188993"> | |
| <FileSize>10732</FileSize> | |
| <FileName>170505 AJJV WGT Tender directory report.xlsx</FileName> | |
| </LocalFileAttachment> | |
| </Attachments> | |
| <Attribute1> |
| # ------------------------------------------------- | |
| # BaseQuery Model | |
| # ------------------------------------------------- | |
| # The Base schema for query objects | |
| class BaseQuery(BaseModel): | |
| skip: int = Query(0, title='Skip', description='How many pages to skip') | |
| limit: int = Query(100, title='Limit', | |
| description='The limit of results to be returned') | |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | π :tada: |
| Version tag | π :bookmark: |
| New feature | β¨ :sparkles: |
| Bugfix | π :bug: |
| from datetime import date, datetime | |
| from enum import Enum | |
| from pydantic import BaseModel, UUID4 | |
| from typing import Any, Dict, List, TypeVar, Union, Generic, Optional | |
| from pydantic_factories import ModelFactory | |
| class Species(str, Enum): | |
| CAT = "Cat" | |
| DOG = "Dog" |