Load playlists into Youtube player
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 { promisify } from "node:util"; | |
import { pipeline as _p, Transform } from "node:stream"; | |
import request from "got"; | |
import { log, sleep } from "./util.mjs"; | |
const pipeline = promisify(_p); | |
const transform = new Transform({ | |
transform: function (chunk, enc, cb) { |
A TinyMCE editor
I hereby claim:
- I am d0ruk on github.
- I am doruk (https://keybase.io/doruk) on keybase.
- I have a public key ASCuOzH8ohg0nUp5sk7QDS_HZLcEExixYOhGGaGG58GnGAo
To claim this, I am signing this object:
Apply any one of 998 Google fonts on a text.
Randomising CSS variables to change hsl(), font-size, and rotation.
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
<!-- | |
Copyright 2016 Google Inc. All rights reserved. | |
Licensed under the Apache License, Version 2.0 (the "License"); | |
you may not use this file except in compliance with the License. | |
You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 | |
Unless required by applicable law or agreed to in writing, software | |
distributed under the License is distributed on an "AS IS" BASIS, | |
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
See the License for the specific language governing permissions and |
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
// unify because compliance | |
module.exports = { | |
on: function(el, eventType, func) { | |
if (window.addEventListener) { | |
el.addEventListener(eventType, func, false); | |
} else { | |
el.attachEvent("on" + eventType, func); | |
} | |
}, |
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
# Instructions: | |
# 1. Check all "TODO" comments and make changes if required for your environment | |
# 2. Provide values for all required parameters and any optional parameters desired | |
AWSTemplateFormatVersion: '2010-09-09' | |
Description: Verdaccio - NPM cache / private registry | |
Parameters: | |
# REQUIRED PARAMETERS | |
Ami: | |
Type: AWS::EC2::Image::Id |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge" /> | |
<title>react app</title> | |
<link href="https://fonts.googleapis.com/css?family=Black+Ops+One&display=swap" rel="stylesheet"> | |
<link rel="stylesheet" href="https://unpkg.com/[email protected]/assets/bootstrap_white.css"> | |
<style> |
NewerOlder