Additional information or tag line
A brief description of your project, what it is used for.
A quick introduction of the minimal setup you need to get a hello world up &
| {"tags":[],"lastModified":1518080816555} |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Document</title> | |
| <style> | |
| .bg { | |
| position: absolute; | |
| top: 0; | |
| left: 0; |
Preferences | Profiles > Snazzyyarn global add pure-prompt# .zshrc| function ConvertToD(rawData) { | |
| var du = "0"; | |
| if (rawData.indexOf("°") != -1) { | |
| du = rawData.substring(0, rawData.indexOf("°")); | |
| } | |
| var fen = "0"; | |
| if (rawData.indexOf("′") != -1) { | |
| var fen = rawData.substring(rawData.indexOf("°") + 1, rawData.indexOf("′")); | |
| } | |
| var miao = "0"; |
| function distance(latlng1, latlng2) { | |
| var rad = Math.PI / 180, | |
| lat1 = latlng1.lat * rad, | |
| lat2 = latlng2.lat * rad, | |
| a = Math.sin(lat1) * Math.sin(lat2) + | |
| Math.cos(lat1) * Math.cos(lat2) * Math.cos((latlng2.lng - latlng1.lng) * rad); | |
| // 地球半径 | |
| return 6371000 * Math.acos(Math.min(a, 1)); | |
| } |
| // | |
| // DiskPermissionManager.swift | |
| // uPic | |
| // | |
| // Created by Svend Jin on 2021/01/19. | |
| // Copyright © 2021 Svend Jin. All rights reserved. | |
| // | |
| // entitlements 文件加入 | |
| // <key>com.apple.security.files.user-selected.read-only</key> |
| var objectsToExclude = [point]; | |
| viewer.scene.postRender.addEventListener(function () { | |
| var position = point.position.getValue(viewer.clock.currentTime); | |
| point.position = viewer.scene.clampToHeight(position, objectsToExclude); | |
| }); |
| import { Decoder, tools, Reader } from './EBML.js' | |
| // EBML: https://www.webrtc-experiment.com/EBML.js | |
| /** | |
| * @param {Blob} file - File or Blob object. | |
| * @param {function} callback - Callback function. | |
| * @example | |
| * getSeekableBlob(blob or file, callback); |
| module.exports = { | |
| env: { | |
| browser: true, | |
| es2021: true, | |
| node: true, | |
| }, | |
| extends: [ | |
| 'eslint:recommended', | |
| 'plugin:react/recommended', | |
| 'plugin:react/jsx-runtime', |