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
.container { | |
max-width: 600px; | |
} | |
.info { | |
height: 400px; | |
} | |
.ui { | |
text-align: left; |
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
{"name":"Error","stack":"Error: write EPROTO 140455755663232:error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure:../deps/openssl/openssl/ssl/s23_clnt.c:802:\n\n at _errnoException (util.js:992:11)\n at WriteWrap.afterWrite [as oncomplete] (net.js:864:14)","message":"write EPROTO 140455755663232:error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure:../deps/openssl/openssl/ssl/s23_clnt.c:802:\n"} |
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
[ | |
{ | |
serviceProviderID: 9, | |
specifics: "Egg sauce, Meat" | |
}, | |
{ | |
serviceProviderID: 7, | |
specifics: "Beans, Spaghetti" | |
}, | |
{ |
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
{"meal":{"frequency":"weekly","item":null,"qty":2,"service_day":"monday"},"laundry":{"frequency":"bi-weekly","item":"wash and fold","qty":2,"service_day":"tuesday"},"cleaning":{"frequency":"weekly","item":"light cleaning","qty":3,"service_day":"wednesday"},"ac":{"frequency":"quarterly","item":"ac","qty":3,"service_day":"thursday"}} |
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
import 'dotenv/config'; | |
import express from 'express'; | |
import axios from 'axios'; | |
import cors from 'cors'; | |
import crypto from 'crypto'; | |
const app = express(); | |
app.use(cors()); | |
app.use(express.json()); |
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
<?php | |
$payload = [ | |
'event' => 'customer.subscribed', | |
'data' => [ | |
'fullName': ‘olori baba’, | |
'email': ‘[email protected]’ , | |
'phoneNo': ‘08023975521’ , | |
'homeAddress': ‘7, Marlian HQ’ , | |
'landmark': ‘Near Mafo Studios’ , |
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
import 'dotenv/config'; | |
import express from 'express'; | |
import axios from 'axios'; | |
import cors from 'cors'; | |
import crypto from 'crypto'; | |
const app = express(); | |
app.use(cors()); | |
app.use(express.json()); |
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
<?php | |
$payload = [ | |
'event' => 'customer.created', | |
'data' => [ | |
'full_name' => 'Mark Fish', | |
'email' => '[email protected]' | |
] | |
]; |
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
const User = ({ id, children }) => { | |
<Query query={GET_USER} variables={{ userId }}> | |
{({ loading, data }) => (children({ user: data})) | |
</Query> | |
} | |
const UserStartup = ({ user: { email }, children }) => ( | |
<Query query={GET_HACKERNEWS_STARTUP} variables={{ email }}> | |
{({ loading, data: { startup } }) => ( | |
<Query query={GET_REPO} variables = {{ startup }}> |
NewerOlder