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
BEGIN:VCALENDAR | |
VERSION:2.0 | |
PRODID:-//ChatGPT Calendar Generator//EN | |
CALSCALE:GREGORIAN | |
METHOD:PUBLISH | |
BEGIN:VEVENT | |
UID:evt-20240703@example.com | |
DTSTAMP:20240627T120000Z | |
SUMMARY:Wakeboard Training |
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 * as ts from "typescript"; | |
import * as fs from "fs"; | |
import * as path from "path"; | |
// Directory containing TypeScript files | |
const dirPath = "./"; // Change this to the path of your repository to REP packages (keep as is if `extractApiKeyMap.js` script is in `packages`) | |
const map = {}; | |
function extractKeysFromFile(filePath) { |
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
function mPatch(object, fnProperty, { onBefore, onAfter }) { | |
const originFn = object[fnProperty]; | |
object[fnProperty] = (...args) => { | |
if (typeof onBefore === 'function') { | |
onBefore(...args); | |
} | |
const returnValue = originFn(...args); |
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
Root | |
Inactive* | |
reviewRegions -> Regions | |
reviewTwoOptions -> TwoOptions | |
Active | |
Question | |
Regions | |
RegionsReview* | |
close -> Inactive |
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
Wizard | |
new -> Input | |
Input | |
Onboarding* | |
next -> Import | |
Media | |
Import | |
back -> Onboarding | |
next -> Upload & Choose |
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
WEBVTT FILE | |
1 | |
00:00:03.500 --> 00:00:05.000 D:vertical A:start | |
Everyone wants the most from life | |
2 | |
00:00:06.000 --> 00:00:09.000 A:start | |
Like internet experiences that are rich <b>and</b> entertaining | |
3 | |
00:00:11.000 --> 00:00:14.000 A:end | |
Phone conversations where people truly <c.highlight>connect</c> |
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 NOTIFICATION_GRUNTED = "granted"; | |
const NOTIFICATION_DENIED = "denied"; | |
const NOTIFICATION_DENIED_MESSAGE = "Notification permission denied"; | |
const NOTIFICATION_UNSUPPORTED_MESSAGE = | |
"Desktop notifications not available in your browser. Try Chromium."; | |
function initNotifications() { | |
return new Promise((resove, reject) => { | |
switch (Notification && Notification.permission) { | |
case undefined: |
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 React, { Component } from 'react'; | |
import ReactDOM from 'react-dom'; | |
// NOTE: `transition-duration` for modal css-animation is less then 500 ms | |
const MODAL_TRANSITION_DELAY = 500; | |
class ModalWithState extends Component { | |
constructor(props) { | |
super(props); |
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 { | |
isAbsoluteURL, | |
isTrustedURL, | |
appendParamsToURL, | |
redirectToURL | |
} from '../url-fns'; | |
class LoginController { | |
/*@ngInject*/ | |
constructor($rootScope, $log, $state, commonAuthUser) { |
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
{ | |
"context": "/PATH_TO_MY_APP/node_modules/PATH_TO_LIB/site", | |
"node": { | |
"__filename": true | |
}, | |
"entry": { | |
"main": "/PATH_TO_MY_APP/node_modules/PATH_TO_LIB/site/.cache/develop-static-entry" | |
}, | |
"debug": true, | |
"target": "node", |
NewerOlder