Privacy Policy for CthulhuBot on Discord
Last Updated: 9/24/2023
- Introduction
This Privacy Policy outlines how we collect, use, and protect your information when you use CthulhuBot on the Discord platform.
- Information We Collect
Privacy Policy for CthulhuBot on Discord
Last Updated: 9/24/2023
This Privacy Policy outlines how we collect, use, and protect your information when you use CthulhuBot on the Discord platform.
Terms of Service for CthulhuBot on Discord | |
Last Updated: 9/24/2023 | |
# Introduction | |
Welcome to the Terms of Service (ToS) for CthulhuBot, a bot service on the Discord platform. By inviting or using CthulhuBot in your server or interacting with it in any manner, you agree to these terms. | |
# Acceptance of Terms |
type Unsubscribe = () => void | |
type EffectId = string | symbol | |
type EffectFn = () => Unsubscribe | undefined | |
class SideEffects implements ReactiveController { | |
private effectDeps: Record<EffectId, unknown[]> = {} | |
private effectUnsubscribes: Record<EffectId, Unsubscribe | undefined> = {} | |
public constructor(private host: ReactiveControllerHost & Element) { |
// NOTE: Adapted from TS code, stripped types out | |
import React, { useRef, useState, useEffect } from 'react' | |
/** | |
* A custom hook that uses a resizeObserver to change dimension state | |
* @param defaultDimensions { width: number, height: number} | |
*/ | |
export function useDimensions(defaultDimensions) { | |
const [dimensions, setDimensions] = useState(defaultDimensions) |
[email protected] |
const { fromGlobalId, toGlobalId } = require("graphql-relay"); | |
import {FindOptions} from "sequelize"; | |
export interface ICursorPageable { | |
// Backward Paging Arguments | |
before?: string; | |
last?: number; | |
// Forward Paging Arguments | |
after?: string; |
#!/bin/sh | |
CWD=`pwd` | |
TMP=`mktemp -d` | |
trap "rm -rf $TMP" EXIT | |
pushd $TMP | |
split -l5000 $1 | |
popd | |
for file in $TMP/* |
node test.js | |
ERROR: { [MissingParameter: Source group ID missing.] | |
message: 'Source group ID missing.', | |
code: 'MissingParameter', | |
time: Mon Nov 24 2014 21:10:59 GMT-0800 (PST), | |
statusCode: 400, | |
retryable: false, | |
retryDelay: 30 } |
ctx = $('#canvas')[0].getContext("2d") | |
palette = {Gray:'#E8E8E8', Black:'#000000'} | |
point = (xVal, yVal) -> {x: xVal, y: yVal} | |
line = (from, to) -> | |
ctx.moveTo(from.x, from.y) | |
ctx.lineTo(to.x, to.y) | |
ctx.stroke() | |
class Chain | |
constructor: -> |