- Adopted from: https://stubby4j.com/docs/admin_portal.html
- Inspired by Swagger API docs style & structure: https://petstore.swagger.io/#/pet
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
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ | |
// © Fr3d0C0rl30n3 | |
//@version=4 | |
study("Fr3d0's Volume Profile Visible Range", "VPVR", overlay=true, max_boxes_count=500) | |
DEFAULT_COLOR = color.new(color.gray, 0) | |
BORDER_COLOR = color.new(color.black, 80) | |
BUY_COLOR = color.new(color.green, 0) | |
SELL_COLOR = color.new(color.red, 0) |
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
# https://www.github.com/telugu-boy/ | |
import youtube_dl | |
import getopt | |
import sys | |
import os | |
# https://www.youtube.com/watch?v=obLq6k3clHo | |
ydl_opts = { |
This will convert an ISO 8601 date such as: 2018-03-19T10:18:08.137747874Z
to a timestamp with milliseconds resolution: 1521454688137,00
Please note that the decimal part (,00
) can be stripped away, milliseconds are the last three digits.
=(((DATEVALUE(LEFT(A1;10))+TIMEVALUE(MID(A1;12;8)))-DATE(1970;1;1))*86400000)+VALUE(MID(A1;FIND(".";A1)+1;3))
Simple helper file for standard text sizes in material design. The sizes are provided by the material design documentation https://www.google.com/design/spec/style/typography.html#typography-roboto
Too many type sizes and styles at once can wreck any layout. A typographic scale is a limited set of type sizes that work well together, along with the layout grid. The basic set of styles are based on a typographic scale of 12, 14, 16, 20, and 34.