Inspired by these two images from Pinterest:
DAY - https://www.pinterest.com/pin/563018696560636/
NIGHT - https://www.pinterest.com/pin/9359111719946054/
class Smoothmq < Formula | |
desc "Real-time message queue with persisted topics" | |
homepage "https://github.com/poundifdef/smoothmq" | |
url "https://github.com/poundifdef/smoothmq.git", | |
tag: "v0.2.3", | |
revision: "a023548ff08a8a8fab18b4e1011c81b56288a814" | |
license "MIT" | |
head "https://github.com/poundifdef/smoothmq.git", branch: "main" | |
depends_on "go" => :build |
FROM php:8.2-apache | |
RUN apt-get update && apt-get install -y \ | |
libfreetype-dev \ | |
libjpeg62-turbo-dev \ | |
libpng-dev \ | |
&& docker-php-ext-configure gd --with-freetype --with-jpeg \ | |
&& docker-php-ext-install -j$(nproc) gd | |
RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini" | |
Inspired by these two images from Pinterest:
DAY - https://www.pinterest.com/pin/563018696560636/
NIGHT - https://www.pinterest.com/pin/9359111719946054/
[ | |
{ | |
"action": "order", | |
"team": "bussers", | |
"description": "Clear all dirty plates, glasses, and utensils from tables and take to the kitchen" | |
}, | |
{ | |
"action": "ask", | |
"team": "servers", | |
"description": "Assist bussers in clearing tables if needed" |
--- | |
name: 'deploy' | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: |
import React, { useMemo, useState } from "react"; | |
import { Meta } from "@storybook/react"; | |
import { AgGridReact } from "ag-grid-react"; | |
import { ColDef } from "ag-grid-community"; | |
import "ag-grid-community/styles/ag-grid.css"; | |
import "ag-grid-community/styles/ag-theme-alpine.css"; | |
export default { | |
title: __filename.replace(".stories.tsx", "") |
<div id="typewriter"> | |
<span id="typewriter-text"></span><span class="blinking-cursor">|</span> | |
</div> | |
<script src="https://cdn.twind.style" crossorigin></script> | |
<script> | |
function type(index, text) { | |
const typewriter = document.getElementById('typewriter-text'); | |
if (index < text.length) { | |
typewriter.__run = () => type(index + 1, text) | |
typewriter.innerHTML = text.slice(0, index); |
registry-github: &docker | |
username: username | |
password: | |
- DOCKER_TOKEN | |
registry-internal: &internal | |
server: registry.example.com | |
username: testuser | |
password: testpassword123 | |
# This uses YAML magic and Ruby template language to select registry on the fly | |
registry: *<%= ENV["MRSK_REGISTRY"] || 'internal' %> |
This documentation adds important additions to the docs for mrsk deploy tool (see github.com/mrsked/mrsk)
You can use mrsk deploy --destination staging
This will read config/deploy.yml and config/deploy.staging.yml files, and also will read .env.staging file if it exists.
import { Server } from "http"; | |
import { Socket } from "net"; | |
import { NextApiRequest, NextApiResponse } from "next"; | |
import { Server as SocketServer } from "socket.io"; | |
interface NextSocket extends Socket { | |
server?: Server & { io?: SocketServer }; | |
} | |
/** |