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
alias computer='function _st_computer(){ gh copilot suggest -t shell "In the tone of the Star Trek computer, $@"; };_st_computer' | |
alias data='function _data(){ gh copilot suggest -t shell "In the tone of Lieutenant Commander Data from Star Trek, $@"; };_data' | |
alias HAL='function _hal_computer(){ gh copilot suggest -t shell "In the tone of HAL 9000, $@"; };_hal_computer' | |
alias jarvis='function _jarvis(){ gh copilot suggest -t shell "In the tone of J.A.R.V.I.S. from Iron Man, $@"; };_jarvis' | |
alias kitt='function _kitt(){ gh copilot suggest -t shell "In the tone of K.I.T.T. from Knight Rider, $@"; };_kitt' | |
alias gideon='function _gideon(){ gh copilot suggest -t shell "In the tone of Gideon from The Flash, $@"; };_gideon' | |
alias tars='function _tars(){ gh copilot suggest -t shell "In the tone of TARS from Interstellar, $@"; };_tars' | |
alias wopr='function _wopr(){ gh copilot suggest -t shell "In the tone of WOPR from WarGames, $@"; };_wopr' | |
alias mother='function _mother(){ gh copilot suggest -t shell "In the tone |
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
FROM node:16-alpine AS base | |
ARG PNPM_VERSION=6.14.3 | |
RUN npm --global install pnpm@${PNPM_VERSION} | |
WORKDIR /root/monorepo | |
FROM base AS dev | |
ARG PACKAGE_PATH | |
ENV CI=true | |
COPY ./meta . | |
RUN --mount=type=cache,id=pnpm-store,target=/root/.pnpm-store\ |
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
alias git-remove-merged="git-remove-merged.sh" |
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
syntax = "proto3"; | |
package Foo; | |
message FooRequest { | |
int32 limit = 4; | |
int64 from = 5; | |
} |
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
FROM sualeh/schemacrawler | |
COPY schemacrawler.config.properties config/schemacrawler.config.properties |
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
sodas.json | |
[ | |
{ | |
"name": "sparkling water", | |
"quantity": 10 | |
}, | |
{ | |
"name": "red bull zero", | |
"quantity": 10 | |
} |
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
class Page { | |
open(path = null) { | |
return browser.url(path || "/") | |
} | |
size(size) { | |
return browser.setViewportSize({ | |
width: size.width, | |
height: size.height | |
}) |
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
describe("blog", () => { | |
it(`has links to home and blog`, () => { | |
BlogPage.open() | |
expect(HeaderPage.home_link.isVisible()).to.be.true | |
expect(HeaderPage.blog_link.isVisible()).to.be.true | |
}) | |
} |