This file contains 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
// ==UserScript== | |
// @name Piss off the tab rail bar | |
// @namespace Violentmonkey Scripts | |
// @match https://app.slack.com/client/* | |
// @grant GM_addStyle | |
// @version 1.0 | |
// @author spacepants | |
// @description 07/09/2023, 10:24:39 | |
// ==/UserScript== |
This file contains 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
openapi: 3.0.0 | |
servers: | |
- description: Firefly III demo site | |
url: https://demo.firefly-iii.org | |
info: | |
title: Firefly III API v1.5.5 | |
description: | | |
This is the documentation of the Firefly III API. You can find accompanying documentation on the website of Firefly III itself (see below). Please report any bugs or issues. You may use the "Authorize" button to try the API below. This file was last generated on 2022-01-26T17:41:44+11:00 | |
version: "1.5.5" | |
contact: |
This file contains 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, { useRef, useEffect } from 'react'; | |
import { useHistory } from 'react-router-dom'; | |
let prevPathName: string | null = null; | |
export const FocusOnRouteChange: React.FC = ({ children }) => { | |
const history = useHistory(); | |
const ref = useRef<HTMLDivElement>(null); |
This file contains 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
declare @tableName varchar(200) | |
declare @columnName varchar(200) | |
declare @nullable varchar(50) | |
declare @datatype varchar(50) | |
declare @maxlen int | |
declare @pos int | |
declare @Stype varchar(50) | |
declare @isnullable varchar(1) | |
declare @Sproperty varchar(200) |