Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| New feature | ✨ :sparkles: |
| Bugfix | 🔨 🐛 :bug: |
| Metadata | 📇 :card_index: |
| float ease(float x) { | |
| return pow(1.0 - x, 10.0); | |
| } | |
| float sdBox(in vec2 p, in vec2 xy, in vec2 b) | |
| { | |
| vec2 d = abs(p - xy) - b; | |
| return length(max(d, 0.0)) + min(max(d.x, d.y), 0.0); | |
| } |
| FROM dart:3.2.4 | |
| RUN apt-get update --quiet --yes | |
| RUN apt-get install --quiet --yes \ | |
| unzip \ | |
| apt-utils | |
| ARG FVM_VERSION=2.4.1 | |
| RUN dart pub global activate fvm ${FVM_VERSION} |
| from selenium import webdriver | |
| from selenium.webdriver.common.by import By | |
| from selenium.webdriver.support.wait import WebDriverWait | |
| from selenium.webdriver.support import expected_conditions as EC | |
| from selenium.webdriver.chrome.service import Service | |
| import time | |
| import traceback | |
| import os |
| tprojectstasks() { # get the first task for each project | |
| local tasks | |
| local taskfilter=$1 | |
| if [ -z "$taskfilter" ] | |
| then | |
| tasks=$(task rc.list.all.projects=1 _projects) | |
| else | |
| tasks=$(task rc.list.all.projects=1 $taskfilter _projects) |
| #sudo apt-get remove adept adept-batch adept-common adept-installer adept-manager adept-notifier adept-updater akregator amarok amarok-xine apport-qt ark arts bogofilter bogofilter-bdb bogofilter-common debtags digikam enscript fftw3 gtk-qt-engine gwenview hwdb-client-kde k3b kaddressbook kaffeine kaffeine-xine kamera karm katapult kate kbstate kcontrol kcron kde-guidance kde-guidance-powermanager kde-icons-mono kde-style-polyester kde-systemsettings kdeadmin-kfile-plugins kdebase-bin kdebase-data kdebase-kio-plugins kdebluetooth kdegraphics-kfile-plugins kdelibs-data kdelibs4c2a kdemultimedia-kfile-plugins kdemultimedia-kio-plugins kdenetwork-filesharing kdenetwork-kfile-plugins kdepasswd kdepim-kio-plugins kdepim-kresources kdepim-wizards kdeprint kdesktop kdm kdnssd keep kexi kfind kghostview khelpcenter kicker kio-apt kio-locate kipi-plugins klipper kmag kmail kmailcvt kmenuedit kmilo kmix kmousetool kmplayer-base kmplayer-konq-plugins knetworkconf knetworkmanager knotes koffice-data koffice-libs konq-plu |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| New feature | ✨ :sparkles: |
| Bugfix | 🔨 🐛 :bug: |
| Metadata | 📇 :card_index: |
| import DS from 'ember-data'; | |
| export default DS.RESTAdapter.extend({ | |
| // namespace: 'api/v2', | |
| host: 'http://localhost:8080', | |
| find: function(store, type, id, snapshot) { | |
| return this.ajax(this.buildURL(type.typeKey, id, snapshot, 'find'), 'GET'); | |
| }, |