A minimal multi-agent system with an orchestrator, a planner, a coder, and a designer working together providing orchestration between Claude, Codex and Gemini.
Install all agents listed below into VS Code Insiders...
| Title | Type | Description |
|---|
For some reason, it is surprisingly hard to create a bootable Windows USB using macOS. These are my steps for doing so, which have worked for me in macOS Monterey (12.6.1) for Windows 10 and 11. After following these steps, you should have a bootable Windows USB drive.
You can download Windows 10 or Windows 11 directly from Microsoft.
After plugging the drive to your machine, identify the name of the USB device using diskutil list, which should return an output like the one below. In my case, the correct disk name is disk2.
| name: Check NextJs build | |
| on: | |
| # Runs on pushes targeting the default branch | |
| push: | |
| branches: ["main"] | |
| # Runs on any open or reopened pull request | |
| pull_request: | |
| types: [opened, reopened] # you can change this according to https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/triggering-a-workflow#using-multiple-events |
| import { Prisma, PrismaClient } from '@prisma/client'; | |
| import { exec } from 'child_process'; | |
| import * as util from 'util'; | |
| const execPromisify = util.promisify(exec); | |
| const prisma = new PrismaClient(); | |
| const tables = Prisma.dmmf.datamodel.models | |
| .map((model) => model.dbName) | |
| .filter((table) => table); |
| // SPDX-License-Identifier: MIT OR Apache-2.0 | |
| pragma solidity ^0.8.4; | |
| import "@openzeppelin/contracts/utils/Counters.sol"; | |
| import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; | |
| import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; | |
| import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; | |
| contract NFT is ERC721URIStorage { | |
| using Counters for Counters.Counter; |
| import React from 'react'; | |
| import * as FlexWebChat from "@twilio/flex-webchat-ui"; | |
| import PreEngagementForm from './PreEngagementForm'; | |
| class App extends React.Component { | |
| state = {}; | |
| constructor(props) { | |
| super(props); |
| # First, we need to find our device. BEFORE inserting your USB drive, run the | |
| # following: | |
| diskutil list | |
| # This will output a bunch of info about all of the disk drives connected to | |
| # your Mac. Each entry will have a header in the form "/dev/diskX", where X is | |
| # some number starting at 0. Now, insert your USB drive and run the command | |
| # again. You should see a new entry. Make note of the name (ie, /dev/diskX). | |
| diskutil list |
| @function columns($i) { | |
| @return calc(#{$i} * var(--column-unit)); | |
| } | |
| @function gutters($i) { | |
| @return calc(#{$i} * var(--gutter-unit)); | |
| } | |
| @function column-spans($i) { | |
| @return calc(#{$i} * var(--column-and-gutter-unit) - var(--gutter-unit)); |
obtained from atom/markdown-preview#289
Yep, have a look at http://pandoc.org/ or markdown-it https://github.com/markdown-it
It now depends, whether you want to merge the HTMl files or not:
# Single output files
for f in *.md ; do pandoc ${f} -f markdown -t html -s -o ${f}.html ; done| # Use envFrom to load Secrets and ConfigMaps into environment variables | |
| apiVersion: apps/v1beta2 | |
| kind: Deployment | |
| metadata: | |
| name: mans-not-hot | |
| labels: | |
| app: mans-not-hot | |
| spec: | |
| replicas: 1 |