I hereby claim:
- I am ceccode on github.
- I am francesco_f (https://keybase.io/francesco_f) on keybase.
- I have a public key ASCDY4VyVZkXCEZEUozpem57VoYYFntntqeTu5vMsT47gAo
To claim this, I am signing this object:
ClassId | SignName | |
---|---|---|
0 | Speed limit (20km/h) | |
1 | Speed limit (30km/h) | |
2 | Speed limit (50km/h) | |
3 | Speed limit (60km/h) | |
4 | Speed limit (70km/h) | |
5 | Speed limit (80km/h) | |
6 | End of speed limit (80km/h) | |
7 | Speed limit (100km/h) | |
8 | Speed limit (120km/h) |
I hereby claim:
To claim this, I am signing this object:
// See https://medium.com/@chrispointon/default-files-in-s3-subdirectories-using-cloudfront-and-lambda-edge-941100a3c629 | |
// Register this as the viewer-request trigger handler | |
'use strict'; | |
exports.handler = (event, context, callback) => { | |
// Extract the request from the CloudFront event that is sent to Lambda@Edge | |
var request = event.Records[0].cf.request; | |
// Extract the URI and params from the request | |
var olduri = request.uri; |
Using the -ldflags
parameter can help set variable values at compile time.
Using the example provided here:
make build
will create a build
executable. Running it will result in:$> ./build
no version (Mon YYYY)
$>
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.
Please note we have a code of conduct, please follow it in all your interactions with the project.
const fs = require('fs'); | |
const solc = require('solc'); | |
const Web3 = require('web3'); | |
// Connect to local Ethereum node | |
const web3 = new Web3(new Web3.providers.HttpProvider("http://localhost:8545")); | |
// Compile the source code | |
const input = fs.readFileSync('Token.sol'); | |
const output = solc.compile(input.toString(), 1); |
Homebrew build logs for opencv on macOS 10.12.6 | |
Build date: 2017-11-07 14:50:59 |
exists=`git show-ref refs/heads/<branch-name>` | |
if [ -n "$exists" ]; then | |
echo 'branch exists!' | |
fi |