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
'use strict'; | |
const aws_exports = require('./aws-export').default; | |
// CONFIG | |
const AppSync = { | |
"graphqlEndpoint": aws_exports.graphqlEndpoint, | |
"region": aws_exports.region, | |
"authenticationType": aws_exports.authenticationType, | |
"apiKey": aws_exports.apiKey, | |
}; | |
const ApiId = aws_exports.ApiId; |
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
'use strict'; | |
const aws_exports = require('./aws-export').default; | |
// CONFIG | |
const AppSync = { | |
"graphqlEndpoint": aws_exports.graphqlEndpoint, | |
"region": aws_exports.region, | |
"authenticationType": aws_exports.authenticationType, | |
"apiKey": aws_exports.apiKey, | |
}; | |
const ApiId = aws_exports.ApiId; |
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
'use strict'; | |
const aws_exports = require('./aws-export').default; | |
// CONFIG | |
const AppSync = { | |
"graphqlEndpoint": aws_exports.graphqlEndpoint, | |
"region": aws_exports.region, | |
"authenticationType": aws_exports.authenticationType, | |
"apiKey": aws_exports.apiKey, | |
}; | |
const ApiId = aws_exports.ApiId; |
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
'use strict'; | |
const aws_exports = require('./aws-export').default; | |
// CONFIG | |
const AppSync = { | |
"graphqlEndpoint": aws_exports.graphqlEndpoint, | |
"region": aws_exports.region, | |
"authenticationType": aws_exports.authenticationType, | |
"apiKey": aws_exports.apiKey, | |
}; | |
const ApiId = aws_exports.ApiId; |
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
console.log('hello'); |
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
Write a program which when given links to two images on the Internet, finds out how similar they are. [Bonus points if it ranks images on a similarity scale from 0 - very different to 100 - exactly the same] | |
program | |
#include <stdlib.h> | |
#include <stdio.h> | |
#include "cv.h" | |
#include "highgui.h" | |
#include "fftw3.h" | |
void phase_correlation( IplImage *ref, IplImage *tpl, IplImage *poc ); | |
int main( int argc, char** argv ) |
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
Write a program which when given links to two images on the Internet, finds out how similar they are. [Bonus points if it ranks images on a similarity scale from 0 - very different to 100 - exactly the same] | |
program | |
#include <stdlib.h> | |
#include <stdio.h> | |
#include "cv.h" | |
#include "highgui.h" | |
#include "fftw3.h" | |
void phase_correlation( IplImage *ref, IplImage *tpl, IplImage *poc ); | |
int main( int argc, char** argv ) |