- Docker
- DotEnv
- file-icons (or similar alternative)
- GitLens (can get annoying, but worth having)
- Go (see below for more details)
- GraphQL
- Kubernetes
- LiveShare
This file contains 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
import { Data, Effect } from "effect"; | |
import { Prisma, PrismaClient } from "@prisma/client"; | |
import type { | |
PrismaClientKnownRequestError, | |
PrismaClientUnknownRequestError, | |
PrismaClientRustPanicError, | |
PrismaClientInitializationError, | |
PrismaClientValidationError, | |
} from "@prisma/client/runtime/library"; |
This file contains 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
package main | |
import ( | |
"fmt" | |
"math/rand" | |
"time" | |
) | |
// Board represents the game board | |
type Board struct { |
This file contains 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
package main | |
import ( | |
"fmt" | |
"io/ioutil" | |
"log" | |
"os" | |
"strconv" | |
"strings" | |
) |
This file contains 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
package main | |
import ( | |
"log" | |
"math" | |
"github.com/itchyny/volume-go" | |
"github.com/rakyll/portmidi" | |
) |
This file contains 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
/* | |
Copyright 2017 The Nuclio Authors. | |
Licensed under the Apache License, Version 2.0 (the "License"); | |
you may not use this file except in compliance with the License. | |
You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 | |
Unless required by applicable law or agreed to in writing, software |
This file contains 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
package subs | |
import ( | |
"context" | |
"encoding/json" | |
"log" | |
"github.com/gorilla/websocket" | |
uuid "github.com/satori/go.uuid" | |
) |
I hereby claim:
- I am adamgoose on github.
- I am artisangoose (https://keybase.io/artisangoose) on keybase.
- I have a public key ASBUEu40lV93K8LptbQRj2IxJBANfnpcck9ygW_L_XrSmAo
To claim this, I am signing this object:
This file contains 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
import cors from 'cors' | |
import dotenv from 'dotenv' | |
import express from 'express' | |
import getSchemas from './schemas' | |
import resolvers from './resolvers' | |
import bodyParser from 'body-parser' | |
import { mergeSchemas } from 'graphql-tools' | |
import { graphqlExpress } from 'apollo-server-express' | |
import { express as voyager } from 'graphql-voyager/middleware' | |
import expressPlayground from 'graphql-playground-middleware-express' |
This file contains 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
<template> | |
<div class="form-group" :class="errorClass"> | |
<label :for="slug">{{ title }}</label> | |
<textarea class="form-control" :id="slug" v-model="model" v-if="isTextarea" v-bind="attrs"></textarea> | |
<input :type="type" class="form-control" :id="slug" v-model="model" v-if="isInput" v-bind="attrs"> | |
<select class="form-control" :id="slug" v-model="model" v-if="isSelect" v-bind="attrs"> | |
<option :value="option" v-for="option in options">{{ option }}</option> | |
</select> | |
<span class="help-block" v-show="errors" v-text="errorText"></span> | |
</div> |
NewerOlder