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 { ApolloServer, gql } from "apollo-server-micro"; | |
import { makeExecutableSchema } from "graphql-tools"; | |
import { User } from "../../utils/db"; | |
const typeDefs = gql` | |
type User { | |
id: ID! | |
name: String! | |
email: String! | |
} |
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
// Usage | |
const cart = new Cart({ | |
priceTemplate: '{price} UAH', | |
completeOrder(order) { | |
return Promise.resolve({ success: true }); | |
}, | |
fetchTranslation(translation) { | |
return Promise.resolve({}); | |
}, |
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
<button type="button" id="share">Share</button> | |
<canvas id="myCanvas"></canvas> | |
<script> | |
var canvas = document.getElementById('myCanvas'), | |
ctx = canvas.getContext('2d'), | |
image = new Image(); | |
var file; |
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
<button> | |
Click | |
</button> |
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
// ==UserScript== | |
// @name Google Search Better Privacy | |
// @description Delete unnecessary params and add useful params on Google Search. | |
// @version 0.0.4 | |
// @include http://*.google.*/search* | |
// @include http://*.google.*/imgres* | |
// @include https://*.google.*/search* | |
// @include https://*.google.*/imgres* | |
// @exclude http://play.google.com/* | |
// @exclude http://mail.google.com/* |
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
<div class="section"> | |
<div class="container" style="--background-color: {{ background_color }}"> | |
<div class="slider" data-controller="slider"> | |
{{# slides_list }} | |
{{ name_text }} | |
{{/ slides_list }} | |
</div> | |
</div> | |
</div> |
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
{ | |
"title": "Welcome", | |
"options": { | |
"theme": "dark" | |
} | |
} |
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
body { | |
margin: 0; | |
font-family: sans-serif; | |
font-size: 16px; | |
} | |
.section { | |
position: relative; | |
align-content: center; | |
display: grid; |
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
body { background: transparent !important; margin: 0px auto; overflow: hidden; } | |
.rooms-header.tw-align-items-center.tw-border-b.tw-c-background-base.tw-flex.tw-flex-shrink-0.tw-full-width.tw-justify-content-center.tw-pd-l-1.tw-pd-r-1, | |
.chat-input.tw-block.tw-pd-b-1.tw-pd-x-1 { display: none !important; } | |
.chat-room.tw-flex.tw-flex-column.tw-flex-grow-1.tw-flex-shrink-1.tw-full-width { | |
background: transparent !important; | |
} | |
body { | |
font-size: 200% !important; | |
font-weight: bold !important; | |
} |
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
var square = | |
` +-+ | |
| | |
+-+-+ | |
| | - | |
+-+-+`; | |
var points = []; | |
var jumpers = []; | |
var relations = []; | |
square.split('\n').forEach((line, lineIndex) => { |