Skip to content

Instantly share code, notes, and snippets.

@DZuz14
DZuz14 / fin.csv
Last active February 25, 2024 15:59
ARQT 2023 Cheat Sheet
Item 9/30/2023 6/30/2023 3/31/2023 12/31/2022
Revenue (Operating) 8.1m 4.77m 2.78m 2.96m
QoQ Growth 70% 71.5% - -
Cost Of Revenue 1.18m 776k 783k 485k
Gross Profit 6.927m 4.414m 1.998m 2.476m
Gross Margin 85% 92.5% 71.8% 83%
Operating Expenses 73.831m 71.77m 78.263m 37.023m
EBITDA -63.796m -63.256m -72.695m -64.757m
@DZuz14
DZuz14 / pizzas.json
Created April 30, 2022 17:33
Pizza flavors
[
"Cheese",
"Pepperoni",
"Hamburger",
"Pineapple",
"Margarita"
]
@DZuz14
DZuz14 / index.js
Created April 14, 2022 15:01
lucky integer skeleton
/**
* @param {number[]} nums
* @return {number}
*/
const findLuckyNumber = (nums) => {
// do stuff here.
}
@DZuz14
DZuz14 / index.js
Created December 5, 2021 18:00
Invoice 8
/** @jsx jsx */
import { useMemo, useState } from 'react'
import { css, jsx } from '@emotion/react'
import { Container, Row, Col, Form, Table } from 'react-bootstrap'
const customers = ['Jack', 'Sally', 'Jane', 'Mark']
const itemInitializer = {
description: '',
qty: '',
@DZuz14
DZuz14 / index.js
Created December 5, 2021 17:48
Invoice 7
/** @jsx jsx */
import { useState } from 'react'
import { css, jsx } from '@emotion/react'
import { Container, Row, Col, Form, Table } from 'react-bootstrap'
const customers = ['Jack', 'Sally', 'Jane', 'Mark']
const itemInitializer = {
description: '',
qty: '',
@DZuz14
DZuz14 / index.js
Created December 5, 2021 16:39
Invoice 6
/** @jsx jsx */
import { useState } from 'react'
import { css, jsx } from '@emotion/react'
import { Container, Row, Col, Form, Table } from 'react-bootstrap'
const customers = ['Jack', 'Sally', 'Jane', 'Mark']
const itemInitializer = {
description: '',
qty: '',
@DZuz14
DZuz14 / index.js
Created December 5, 2021 16:28
Invoice 5
/** @jsx jsx */
import { useState } from 'react'
import { css, jsx } from '@emotion/react'
import { Container, Row, Col, Form, Table } from 'react-bootstrap'
const customers = ['Jack', 'Sally', 'Jane', 'Mark']
const itemInitializer = {
description: '',
qty: '',
@DZuz14
DZuz14 / index.js
Created December 5, 2021 16:17
Invoice 4
/** @jsx jsx */
import { useState } from 'react'
import { css, jsx } from '@emotion/react'
import { Container, Row, Col, Form, Table } from 'react-bootstrap'
const customers = ['Jack', 'Sally', 'Jane', 'Mark']
const itemInitializer = {
description: '',
qty: '',
@DZuz14
DZuz14 / index.js
Last active December 5, 2021 16:08
Invoice 3
/** @jsx jsx */
import { useState } from 'react'
import { css, jsx } from '@emotion/react'
import { Container, Row, Col, Form, Table } from 'react-bootstrap'
const customers = ['Jack', 'Sally', 'Jane', 'Mark']
const itemInitializer = {
description: '',
qty: '',
@DZuz14
DZuz14 / index.js
Last active December 5, 2021 16:09
Invoice Two Table
/** @jsx jsx */
import { useState } from 'react'
import { css, jsx } from '@emotion/react'
import { Container, Row, Col, Form, Table } from 'react-bootstrap'
const customers = ['Jack', 'Sally', 'Jane', 'Mark']
const Invoice = () => {
const [customer, setCustomer] = useState('')
const [title, setTitle] = useState('')