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
### Keybase proof | |
I hereby claim: | |
* I am morcmarc on github. | |
* I am morcmarc (https://keybase.io/morcmarc) on keybase. | |
* I have a public key ASBoBF07UFIUvrFqZPD-39kBTKn0nVwYbjIVLDYFTcl4LQo | |
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
package main | |
import ( | |
"context" | |
"github.com/aws/aws-lambda-go/lambda" | |
"github.com/aws/aws-sdk-go/service/dynamodb" | |
"github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute" | |
) |
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
type Square struct { | |
program uint32 | |
vbo uint32 | |
vao uint32 | |
vertices []float32 | |
vrtx uint32 | |
} | |
const ( | |
squareVS = `#version 330 |
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
def configure | |
Deprecations.new.call | |
configurator = Configurator.new | |
paths = Rails.application.config.paths | |
paths.add "config/database", :with => configurator.config | |
paths.add "db/migrate", :with => configurator.migrate_dir | |
paths.add "db/seeds", :with => configurator.seeds | |
end |
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
.grid { | |
background-color: #222222; | |
background-image: -webkit-linear-gradient(#444444 1px, transparent 1px), -webkit-linear-gradient(0deg, #444444 1px, transparent 1px); | |
background-image: linear-gradient(#444444 1px, transparent 1px), linear-gradient(90deg, #444444 1px, transparent 1px); | |
background-size: 10px 10px, 10px 10px; | |
border: 1px solid #444444; | |
border-width: 0 1px 1px 0; | |
} |