Skip to content

Instantly share code, notes, and snippets.

@reuben
reuben / userChrome.css
Last active August 22, 2024 02:14
Firefox userChrome.css for compact layout with Sideberry extension — add a "Flexible Space" on the left side of the toolbar to prevent navigation controls overlapping with macOS window controls
:root {
--uc-toolbar-height: 32px;
}
:root:not([uidensity="compact"]) {
--uc-toolbar-height: 34px;
}
#TabsToolbar > * {
visibility: collapse !important;
@BMorearty
BMorearty / ETradeAPI.ts
Created October 17, 2023 20:30
My E*Trade API files
// Partial response types for E*Trade API
// See https://apisb.etrade.com/docs/api/market/api-quote-v1.html
// and https://apisb.etrade.com/docs/api/market/api-market-v1.html
/*
* Quote API
*/
export type Message = {
description: string;