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
{"version":1,"resource":"file:///Users/lex/Projects/UNICORNWARE/rithm-cs-fundamentals/src/02/01-searching/exercise/binary-search-recursive.ts","entries":[{"id":"KcUa.ts","timestamp":1648362108795},{"id":"eVMZ.ts","timestamp":1648362355092},{"id":"2PDk.ts","source":"searchReplace.source","timestamp":1648365918916},{"id":"Z7Qr.ts","source":"searchReplace.source","timestamp":1648365940635},{"id":"HbtR.ts","source":"moved.source","timestamp":1648365954136},{"id":"53rM.ts","source":"moved.source","timestamp":1648604398033},{"id":"LWYB.ts","source":"Workspace Edit","timestamp":1648604418822}]} |
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
// Packages | |
const { BadRequest, NotFound } = require('@feathersjs/errors') | |
/** | |
* Class for interacting with the Firebase Realtime Database. | |
* | |
* @todo Handle realtime changes | |
* | |
* @class Database | |
* @module database |
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
# Git Configuration | |
# See: http://michaelwales.com/articles/make-gitconfig-work-for-you/ | |
# Git Helpers | |
[alias] | |
# Git add and commit - all in one step | |
ac = "!f() { git add .; git cm \"$@\"; }; f" | |
# Add new git remote | |
ar = "!f() { git remote add \"$0\" \"$1\"; }; f" |
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
/** | |
* @file Type Definitions - GlobalEventHandlers mixin | |
* @author Lexus Drumgold <[email protected]> | |
* @see {@link https://developer.mozilla.org/docs/Web/API/GlobalEventHandlers} | |
*/ | |
/** | |
* The GlobalEventHandlers mixin describes the event handlers common to several | |
* interfaces like HTMLElement, Document, or Window. | |
* |
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
# PATH | |
# | |
# $HOME/node_modules/.bin | |
# $PWD/node_modules/.bin | |
# curl | |
# homebrew | |
# homebrew's "sbin" | |
# java | |
# npm | |
# php |
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 path = require('path') | |
const implementation = require('sass') | |
/** | |
* @file Webpack Sass Loader Options | |
* @see {@link https://webpack.js.org/loaders/sass-loader/} | |
*/ | |
module.exports = { | |
/** |
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 { | |
AriaAttributes, | |
CSSProperties, | |
DOMAttributes, | |
RefAttributes | |
} from 'react' | |
import { ContainerProps, IconProps } from './atoms' | |
/** | |
* Aria attributes and event handlers. |
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 merge = require('lodash').merge | |
/** | |
* @file Next.js Configuration | |
* @see https://firebase.google.com/docs/web/setup | |
* @see https://nextjs.org/docs/api-reference/next.config.js/introduction | |
*/ | |
const { | |
FIREBASE_API_KEY, |
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
/// <reference types='mdx-js__react' /> | |
declare module 'mdx-scoped-runtime' { | |
import { FC, ReactNode } from 'react' | |
type AnyObject = Record<string, any> | |
interface MDXProps extends MDXProviderProps { | |
children?: ReactNode | |
components?: MDXProviderComponents |
OlderNewer