A Pen by Michael SALIHI on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Project Policy | |
This policy provides a single, authoritative, and machine-readable source of truth for AI coding agents and humans, ensuring that all work is governed by clear, unambiguous rules and workflows. It aims to eliminate ambiguity, reduce supervision needs, and facilitate automation while maintaining accountability and compliance with best practices. | |
# 1. Introduction | |
> Rationale: Sets the context, actors, and compliance requirements for the policy, ensuring all participants understand their roles and responsibilities. | |
## 1.1 Actors |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { resolve } = require('path'); | |
const { readdir } = require('fs').promises; | |
const { exec } = require('child_process'); | |
const DIRECTORY = 'docs'; | |
async function* getFiles(dir) { | |
const dirents = await readdir(dir, { withFileTypes: true }); | |
for (const dirent of dirents) { | |
const res = resolve(dir, dirent.name); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ENV | |
on: [push] | |
jobs: | |
create-envfile: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Make secrets envfile | |
uses: SpicyPizza/create-envfile@v2.0 | |
with: |
A project created by Hatem Hosny on LiveCodes.
An embeddable code editor for the browser 🍯
A Pen by Anton Medvedev on CodePen.
A Pen by Koen Vendrik on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function notify(message) { | |
return new Promise((resolve, reject) => { | |
try { | |
let response = NotificationService.send(message); | |
resolve(response); | |
} catch (err) { | |
reject(err); | |
} | |
}); | |
} |
A project created by Hatem Hosny on LiveCodes.
A project created by Hatem Hosny on LiveCodes.
NewerOlder