Skip to content

Instantly share code, notes, and snippets.

View tminhduc2811's full-sized avatar
😷
Stay safe

Duc Ta tminhduc2811

😷
Stay safe
View GitHub Profile
@tminhduc2811
tminhduc2811 / mac-docker-withot-docker-destop.md
Created February 29, 2024 03:49 — forked from juancsr/mac-docker-withot-docker-destop.md
Use docker in mac without docker-
@tminhduc2811
tminhduc2811 / hyper-config.js
Created November 13, 2022 14:32
hyper-config
"use strict";
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
opacity: 0.85,
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: 'stable',
@tminhduc2811
tminhduc2811 / gist:e52d07aa1be590828a8f4ee82fc8e1a9
Created July 27, 2021 02:51 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@tminhduc2811
tminhduc2811 / Dockerfile
Created July 24, 2020 00:59 — forked from krazyjakee/Dockerfile
Razzle Docker Container
FROM node:alpine
ENV NODE_ENV production
ENV HOST 0.0.0.0
ENV PORT 80
ENV RAZZLE_CUSTOM_VARIABLE x
# Bundle APP files
COPY build .