I hereby claim:
- I am theetrain on github.
- I am etrain (https://keybase.io/etrain) on keybase.
- I have a public key whose fingerprint is D631 4099 55FC 75B4 2A11 9612 C93C E149 0D5B ECA4
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| # Global .gitignore for all git projects | |
| [core] | |
| excludesFile = ~/.gitignore | |
| # Project-specific Settings | |
| [includeIf "gitdir:~/repos/projectgroup/"] | |
| path = ~/.gitconfig-projectgroup |
Here is an example of a code block that contains a code block:
This is a code block, and below is some code:
```js
var someVar = 'hello'
```
And now this will appear as a code block. (view raw output)
| # Port 3000 is for manually logging in and using `netlify dev` if you use the CLI for leveraging secrets | |
| # This includes --livereload to refresh the page when there are file changes | |
| # Runs on localhost:4000 | |
| version: "3.8" | |
| services: | |
| dev: | |
| image: jekyll/jekyll:4 | |
| ports: | |
| - 4000:4000 |
| // NextJS custom server with HTTPS | |
| // Note, you must generate certificates on your own | |
| const express = require('express') | |
| const nextJs = require('next') | |
| const https = require('https') | |
| const fs = require('fs') | |
| const APP_ENV = process.env.APP_ENV || 'development' | |
| const port = parseInt(process.env.PORT, 10) || 3000 |
| FROM node:18.12.1-alpine3.16 as nodebuilder | |
| WORKDIR /app | |
| COPY . . | |
| RUN npm i | |
| RUN npm run build | |
| CMD npm i && npm start |
| <svelte:options tag="my-app" /> | |
| <workgroup-page /> |
Here are some ways to enable live captioning on your devices.
| { | |
| "root": true, | |
| "extends": ["prettier", "standard"], | |
| "plugins": ["@typescript-eslint"], | |
| "parser": "@typescript-eslint/parser", | |
| "rules": { | |
| "arrow-parens": ["error", "as-needed"], | |
| "operator-linebreak": ["error", "before"], | |
| "no-trailing-spaces": [ | |
| "error", |