Skip to content

Instantly share code, notes, and snippets.

View taskinoz's full-sized avatar

taskinoz

View GitHub Profile
@taskinoz
taskinoz / _gauntlet.gnut
Created October 1, 2021 14:49
When you start the gauntlet it sets your speed to 0
global function Gauntlet_ServerInit
global function EnableAllGauntlets
global function DisableAllGauntlets
global function EnableGauntlet
global function DisableGauntlet
global function Gauntlet_HideLeaderboard
global function Gauntlet_ShowLeaderboard
global function Gauntlet_NPC_PostSpawn
global function ClientCommand_Gauntlet_PlayerRestartedFromMenu
global function Gauntlet_StartGhostPlayback
@taskinoz
taskinoz / Accordian.jsx
Created August 19, 2022 14:08
Styled text container
import styled from 'styled-components'
const AccordianContain = styled.div`
padding: 20px;
border-style: solid;
border-width: 3px;
transition: 0.3s;
transform: translate(0, 0);
${props => props.colors &&
`box-shadow: ${props.colors.map((c, index) =>