A table to show how to properly use emojis in github commits
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
| Metadata | 📇 :card_index: |
| Documentation | 📚 :books: |
A table to show how to properly use emojis in github commits
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
| Metadata | 📇 :card_index: |
| Documentation | 📚 :books: |
| @Override | |
| public String toString(){ | |
| StringBuilder stringBuilder = new StringBuilder(this.getClass().getSimpleName()).append("[ "); | |
| Arrays.stream(getClass().getDeclaredFields()).filter(field -> { | |
| field.setAccessible(true); | |
| try { | |
| Object value = field.get(this); | |
| if(value != null) | |
| return true; | |
| } catch (IllegalAccessException e) {} |
| import java.io.BufferedReader; | |
| import java.io.DataOutputStream; | |
| import java.io.IOException; | |
| import java.io.InputStreamReader; | |
| import java.net.HttpURLConnection; | |
| import java.net.URL; | |
| import java.util.Map; | |
| public class Request { |
| package com.desive.stages.components; | |
| import com.desive.utilities.StageDictionary; | |
| import javafx.geometry.Insets; | |
| import javafx.scene.Group; | |
| import javafx.scene.control.Button; | |
| import javafx.scene.control.Label; | |
| import javafx.scene.control.TextField; | |
| import javafx.scene.layout.ColumnConstraints; | |
| import javafx.scene.layout.GridPane; |
scp -P 2264 yourfile.txt [email protected]:/some/remote/directoryscp [email protected]:yourfile.txt /some/local/directory