Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | :tada: |
Version tag | :bookmark: |
New feature | :sparkles: |
Bugfix | :bug: |
class Icu4c < Formula | |
desc "C/C++ and Java libraries for Unicode and globalization" | |
homepage "http://site.icu-project.org/home" | |
url "https://github.com/unicode-org/icu/releases/download/release-67-1/icu4c-67_1-src.tgz" | |
version "67.1" | |
sha256 "94a80cd6f251a53bd2a997f6f1b5ac6653fe791dfab66e1eb0227740fb86d5dc" | |
license "ICU" | |
livecheck do | |
url "https://github.com/unicode-org/icu/releases/latest" |
#These are the steps required in order to Install ImageMagick with JPG, PNG and TIFF delegates. | |
sudo apt-get update | |
#Install Build-Essential in order to configure and make the final Install | |
sudo apt-get install build-essential | |
#libjpg62-dev required in order to work with basic JPG files |
# Objective: Running selenium python scripts in alpine without grid | |
FROM python:3.7.2-alpine3.8 | |
RUN pip install selenium | |
RUN apk add chromium | |
RUN apk add chromium-chromedriver | |
ENV CHROME_BIN=/usr/bin/chromium-browser \ |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | :tada: |
Version tag | :bookmark: |
New feature | :sparkles: |
Bugfix | :bug: |
This entire guide is based on an old version of Homebrew/Node and no longer applies. It was only ever intended to fix a specific error message which has since been fixed. I've kept it here for historical purposes, but it should no longer be used. Homebrew maintainers have fixed things and the options mentioned don't exist and won't work.
I still believe it is better to manually install npm separately since having a generic package manager maintain another package manager is a bad idea, but the instructions below don't explain how to do that.
Installing node through Homebrew can cause problems with npm for globally installed packages. To fix it quickly, use the solution below. An explanation is also included at the end of this document.
Install X11.app (it's on the OS X install disk or something.)
Install dwm
. You have to customize config.h
a bit:
{ MODKEY|ShiftMask, XK_q, quit, {0} },
with { MODKEY|ControlMask, XK_q, quit, {0} },
to avoid colliding with the Log Out shortcut in the Apple menu.If you install dwm
from Homebrew, brew install dwm
, this is done automatically.