repo stringclasses 341
values | file_path stringlengths 29 173 | language stringclasses 2
values | file_type stringclasses 4
values | code stringlengths 2 1.66M | tokens int64 2 598k |
|---|---|---|---|---|---|
synttx/oss | synttx-oss-bfa2a71/packages/scythe/benchmarks/01_Instantiation.bench.luau | luau | .luau | --!nocheck
--!optimize 2
--[[
Scope / Object Instantiation & Immediate Destruction Benchmark
Measures the overhead of instantiating and destroying 1,000 empty cleanup objects/scopes.
Lower execution time is better.
Contenders:
- Scythe (by checcerr | fridayqx)
- Janitor (by howmanysmall)
... | 570 |
synttx/oss | synttx-oss-bfa2a71/packages/scythe/benchmarks/02_AddFunctions.bench.luau | luau | .luau | --!nocheck
--!optimize 2
--[[
Add Functions Benchmark
Measures the efficiency of tracking and invoking 100 function cleanup callbacks per scope.
Lower execution time is better.
Contenders:
- Scythe (by checcerr | fridayqx)
- Janitor (by howmanysmall)
- Maid (by Quenty)
- Trove (by sl... | 589 |
synttx/oss | synttx-oss-bfa2a71/packages/scythe/benchmarks/03_AddConnections.bench.luau | luau | .luau | --!nocheck
--!optimize 2
--[[
Add Connections Benchmark
Measures the efficiency of tracking and disconnecting 100 mock RBXScriptConnections per scope.
Lower execution time is better.
Contenders:
- Scythe (by checcerr | fridayqx)
- Janitor (by howmanysmall)
- Maid (by Quenty)
- Trove ... | 633 |
synttx/oss | synttx-oss-bfa2a71/packages/scythe/benchmarks/04_AddDestroyables.bench.luau | luau | .luau | --!nocheck
--!optimize 2
--[[
Add Destroyables Benchmark
Measures the efficiency of tracking and destroying 100 mock Instances / destroyable objects per scope.
Lower execution time is better.
Contenders:
- Scythe (by checcerr | fridayqx)
- Janitor (by howmanysmall)
- Maid (by Quenty)
... | 628 |
synttx/oss | synttx-oss-bfa2a71/packages/scythe/benchmarks/05_MixedWorkload.bench.luau | luau | .luau | --!nocheck
--!optimize 2
--[[
Mixed Workload Benchmark
Measures performance under a realistic mixed workload (functions, connections, instances, threads - 200 items total) cleaned and destroyed.
Lower execution time is better.
Contenders:
- Scythe (by checcerr | fridayqx)
- Janitor (by howma... | 862 |
synttx/oss | synttx-oss-bfa2a71/packages/scythe/benchmarks/06_Clean1000.bench.luau | luau | .luau | --!nocheck
--!optimize 2
--[[
Bulk Cleanup (1,000 items) Benchmark
Measures hot-loop cleanup throughput when disposing a large batch of 1,000 tracked items in a single scope.
Lower execution time is better.
Contenders:
- Scythe (by checcerr | fridayqx)
- Janitor (by howmanysmall)
- Maid ... | 643 |
synttx/oss | synttx-oss-bfa2a71/packages/scythe/benchmarks/07_SteadyState.bench.luau | luau | .luau | --!nocheck
--!optimize 2
--[[
Steady-State Short-Lived Scope Benchmark
Measures handle pooling and buffer reuse overhead across 100 rapid allocation and cleanup cycles (10 items each).
Lower execution time is better.
Contenders:
- Scythe (by checcerr | fridayqx)
- Janitor (by howmanysmall)
... | 679 |
synttx/oss | synttx-oss-bfa2a71/packages/scythe/benchmarks/08_SelectiveRemoval.bench.luau | luau | .luau | --!nocheck
--!optimize 2
--[[
Selective Item Removal Benchmark
Measures the performance of untracking 250 items out of 500 without triggering cleanup.
Lower execution time is better.
Contenders:
- Scythe (by checcerr | fridayqx)
- Janitor (by howmanysmall)
- Trove (by sleitnick)
- cr... | 640 |
synttx/oss | synttx-oss-bfa2a71/packages/scythe/src/scythe.luau | luau | .luau | --!strict
--!optimize 2
--[=[
@name Scythe
@desc A data-oriented cleanup library for Luau.
Unlike Janitor/Maid/Trove, Scythe has no objects, no metatables and no
per-instance allocation cost. A scope is just an integer handle into
module-level Structure-of-Arrays storage:
scopeItems : { {unknown} } -- payloa... | 6,411 |
synttx/oss | synttx-oss-bfa2a71/packages/vow/benchmarks/01_Instantiation.bench.luau | luau | .luau | --!strict
--!optimize 2
--[[
Instantiation & Immediate Resolution Benchmark
Measures the overhead of creating and resolving 1,000 asynchronous values.
Lower execution time is better.
Contenders:
- Vow (by checcerr | fridayqx)
- Promise (by evaera)
- Future (by RedBlox)
- Future (by YetAnotherClown)
Note: ... | 493 |
synttx/oss | synttx-oss-bfa2a71/packages/vow/benchmarks/02_Chaining.bench.luau | luau | .luau | --!strict
--!optimize 2
--[[
Chaining & Transformation Benchmark
Measures the overhead of attaching fulfillment callbacks (`andThen` / `After`)
to a resolved value to transform it 1,000 times.
Contenders:
- Vow (by checcerr | fridayqx)
- Promise (by evaera)
- Future (by RedBlox)
- Future (by YetAnotherClown)... | 571 |
synttx/oss | synttx-oss-bfa2a71/packages/vow/benchmarks/03_Aggregation.bench.luau | luau | .luau | --!strict
--!optimize 2
--[[
Aggregation Benchmark (All / JoinAll)
Measures the overhead of grouping 100 pending asynchronous tasks into
a single aggregate value that resolves when all inputs resolve.
Contenders:
- Vow (by checcerr | fridayqx)
- Promise (by evaera)
- Future (by YetAnotherClown)
RedBlox's Fu... | 484 |
EgoMoose/gravity-camera | EgoMoose-gravity-camera-f03b2cc/src/init.luau | luau | .luau | --!strict
local Packages = script.Parent
local PlayerModulePackage = require(Packages.PlayerModule)
local module = {}
local patched = PlayerModulePackage.getCopy(true) :: any
local modifiers = require(patched.Modifiers) :: any
-- Adjustments
for _, modifier in script.Modifiers:GetChildren() do
modifiers.add(modifi... | 116 |
SecondNewtonLaw/VEngine | SecondNewtonLaw-VEngine-8833e1c/src/EngineRuntime/ReplicatedFirst/Runner.client.luau | luau | .luau | -- No check required due to require(module_)
--!native
--!nocheck
--[[
ReplicatedFirst modules are not meant to have dependencies, and therefore we won't push the modules we load into the environment,
nor will we use the EngineEnvironmentManager at all on this section.
]]
local oPrint = print
local oWarn = warn
loc... | 687 |
SecondNewtonLaw/VEngine | SecondNewtonLaw-VEngine-8833e1c/src/EngineRuntime/Shared/EngineAntiTamper.luau | luau | .luau | --!nocheck
local module =
require(game:GetService("ReplicatedFirst"):WaitForChild("EngineShared"):WaitForChild("EngineModule")).new()
local Types = require(game:GetService("ReplicatedFirst"):WaitForChild("EngineShared"):WaitForChild("EngineTypes"))
local function getXor()
local xorKey = os.time() + os.clock() / tas... | 548 |
SecondNewtonLaw/VEngine | SecondNewtonLaw-VEngine-8833e1c/src/EngineRuntime/Shared/EngineAudioManager.luau | luau | .luau | --!strict
local ReplicatedFirst = game:GetService("ReplicatedFirst")
local TweenService = game:GetService("TweenService")
local LoggerModule = require(ReplicatedFirst.EngineShared.Logger)
local EngineTypes = require(game:GetService("ReplicatedFirst"):WaitForChild("EngineShared"):WaitForChild("EngineTypes"))
local mod... | 1,229 |
SecondNewtonLaw/VEngine | SecondNewtonLaw-VEngine-8833e1c/src/EngineRuntime/Shared/EngineEnumItem.luau | luau | .luau | --!strict
local Types = require(game:GetService("ReplicatedFirst"):WaitForChild("EngineShared"):WaitForChild("EngineTypes"))
local b
b = {
[""] = {
Value = 0,
Name = "",
EnumType = b,
},
} :: Types.EngineEnum
local enumBase = {}
function enumBase:CreateEnumItem(name: string, value: number, enumType: Types.E... | 134 |
SecondNewtonLaw/VEngine | SecondNewtonLaw-VEngine-8833e1c/src/EngineRuntime/Shared/EngineKeybinds.luau | luau | .luau | --!strict
local DataStoreService = game:GetService("DataStoreService")
local PlayerService = game:GetService("Players")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local ReplicatedFirst = game:GetService("ReplicatedFirst")
local RunService = game:GetService("RunService")
local Red = require(Replica... | 1,781 |
SecondNewtonLaw/VEngine | SecondNewtonLaw-VEngine-8833e1c/src/EngineRuntime/Shared/EngineModule.luau | luau | .luau | --!strict
local moduleConstructor = {}
local Types = require(game:GetService("ReplicatedFirst"):WaitForChild("EngineShared"):WaitForChild("EngineTypes"))
function moduleConstructor.new(): Types.BaseEngineModule
--- The base of a module in VEngine, containing the minimum required methods and properties to initialize... | 195 |
SecondNewtonLaw/VEngine | SecondNewtonLaw-VEngine-8833e1c/src/EngineRuntime/Shared/EngineRequire.luau | luau | .luau | --!strict
local t = {}
local Types = require(game:GetService("ReplicatedFirst"):WaitForChild("EngineShared"):WaitForChild("EngineTypes"))
--- Require engine modules in a protected fashion. This is assumed to ONLY be used on Engine modules.
--- @param module ModuleScript The module script that will be required
--- @r... | 225 |
SecondNewtonLaw/VEngine | SecondNewtonLaw-VEngine-8833e1c/src/EngineRuntime/Shared/EngineUtilities.luau | luau | .luau | --!strict
local module = {}
function module.DeepClone(t: { any }): { any }
if typeof(t) ~= "table" then
return {}
end
local nTable = {}
for idx, member in t do
if typeof(member) == "table" then
nTable[idx] = module.DeepClone(member)
else
nTable[idx] = member
end
end
return nTable
end
return mod... | 95 |
SecondNewtonLaw/VEngine | SecondNewtonLaw-VEngine-8833e1c/src/EngineRuntime/Shared/StateMachine/EngineState.luau | luau | .luau | --!strict
--[[
Copyright 2023 Dottik - All Rights Reserved
This script is a module of the State Machine.
This module aims to represent a possible state on a state machine.
]]
local State = {}
local Types = require(game:GetService("ReplicatedFirst"):WaitForChild("EngineShared"):WaitForChild("EngineTypes"))
funct... | 236 |
SecondNewtonLaw/VEngine | SecondNewtonLaw-VEngine-8833e1c/src/EngineRuntime/Shared/StateMachine/EngineStateMachine.luau | luau | .luau | --!strict
--[[
Copyright 2023 Dottik - All Rights Reserved
This script is a module of the State Machine.
This module represents the main runtime of the State Machine.
]]
local ReplicatedFirst = game:GetService("ReplicatedFirst")
local LoggerModule = require(ReplicatedFirst:WaitForChild("EngineShared"):WaitForCh... | 1,391 |
SecondNewtonLaw/VEngine | SecondNewtonLaw-VEngine-8833e1c/src/Game/Client/__Init__.luau | luau | .luau | --!strict
local ReplicatedFirst = game:GetService("ReplicatedFirst")
local engineKeybinds
local EngineTypes = require(ReplicatedFirst.EngineShared.EngineTypes)
local moduleBaseConstructor = require(ReplicatedFirst:WaitForChild("EngineShared"):WaitForChild("EngineModule"))
local module = moduleBaseConstructor.new()
... | 161 |
SecondNewtonLaw/VEngine | SecondNewtonLaw-VEngine-8833e1c/src/Game/Server/__Init__.luau | luau | .luau | --!strict
local Players = game:GetService("Players")
local ReplicatedFirst = game:GetService("ReplicatedFirst")
local EngineKeybinds = require(ReplicatedFirst.EngineShared.EngineKeybinds) :: any
local EngineTypes = require(ReplicatedFirst.EngineShared.EngineTypes)
local moduleBaseConstructor = require(ReplicatedFirst... | 141 |
SecondNewtonLaw/VEngine | SecondNewtonLaw-VEngine-8833e1c/src/Game/Shared/Enums/GameKeybinds.luau | luau | .luau | --!strict
local keybindMap
keybindMap = {
Running = {
Value = 1,
Name = "Running",
EnumType = keybindMap,
},
TiltRight = {
Value = 2,
Name = "TiltRight",
EnumType = keybindMap,
},
TiltLeft = {
Value = 3,
Name = "TiltLeft",
EnumType = keybindMap,
},
}
function keybindMap.GetDefaultKeybinds()
r... | 152 |
SecondNewtonLaw/VEngine | SecondNewtonLaw-VEngine-8833e1c/src/Game/Shared/Managers/ExampleManager.luau | luau | .luau | --!strict
local ReplicatedFirst = game:GetService("ReplicatedFirst")
local EngineTypes = require(ReplicatedFirst.EngineShared.EngineTypes)
local ModuleBaseConstructor = require(ReplicatedFirst.EngineShared.EngineModule)
local module = ModuleBaseConstructor.new()
module.ModuleName = "Shared/Managers/ExampleManager"
... | 111 |
SecondNewtonLaw/VEngine | SecondNewtonLaw-VEngine-8833e1c/src/Game/Shared/Structures/ExampleStructure.luau | luau | .luau | --!strict
local ReplicatedFirst = game:GetService("ReplicatedFirst")
local GameTypes = require(ReplicatedFirst.Shared.GameTypes)
local struct = {} :: GameTypes.ExampleStructureFactory
function struct.new(ferris: string, foo: number): GameTypes.ExampleStructure
return table.freeze({
Ferris = ferris,
Foo = foo,
... | 88 |
AlexanderLindholt/PacketPlus | AlexanderLindholt-PacketPlus-e844b14/source/Task.luau | luau | .luau | --!optimize 2
local threads = {}
local function reusableThreadCall(callback, thread, ...)
callback(...)
table.insert(threads, thread)
end
local function reusableThread()
while true do
reusableThreadCall(coroutine.yield())
end
end
return {
Spawn = function(callback, ...)
local length = #threads
if length ==... | 334 |
AlexanderLindholt/PacketPlus | AlexanderLindholt-PacketPlus-e844b14/source/Types.luau | luau | .luau | --!optimize 2
--!native
--[[
S8 Minimum: -128 Maximum: 127
S16 Minimum: -32768 Maximum: 32767
S24 Minimum: -8388608 Maximum: 8388607
S32 Minimum: -2147483648 Maximum: 2147483647
U8 Minimum: 0 Maximum: 255
U16 Minimum: 0 Maximum: 65535
U24 Minimum: 0 Maximum: 16777215
U32 Minimum: 0 Ma... | 9,376 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/PluginComponents/Toolbar.luau | luau | .luau | local Plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:FindFirstChild("Fusion", true))
local Hydrate = Fusion.Hydrate
local COMPONENT_ONLY_PROPERTIES = {
"Name",
}
type ToolbarProperties = {
Name: string,
[any]: any,
}
return function(props: ToolbarProperties): PluginToolbar
loc... | 135 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/PluginComponents/ToolbarButton.luau | luau | .luau | local Plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:FindFirstChild("Fusion", true))
local PluginComponents = script.Parent
local StudioComponents = PluginComponents.Parent:FindFirstChild("StudioComponents")
local StudioComponentsUtil = StudioComponents:FindFirstChild("Util")
local ... | 310 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/PluginComponents/Widget.luau | luau | .luau | local Plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:FindFirstChild("Fusion", true))
local Hydrate = Fusion.Hydrate
local COMPONENT_ONLY_PROPERTIES = {
"Id",
"InitialDockTo",
"InitialEnabled",
"ForceInitialEnabled",
"FloatingSize",
"MinimumSize",
"Plugin"
}
type PluginGuiPro... | 314 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/Background.luau | luau | .luau | local Plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:FindFirstChild("Fusion", true))
local StudioComponents = script.Parent
local StudioComponentsUtil = StudioComponents:FindFirstChild("Util")
local themeProvider = require(StudioComponentsUtil.themeProvider)
local stripProps = requi... | 307 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/BaseButton.luau | luau | .luau | -- Roact version by @sircfenner
-- Ported to Fusion by @YasuYoshida
local Plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:FindFirstChild("Fusion", true))
local StudioComponents = script.Parent
local StudioComponentsUtil = StudioComponents:FindFirstChild("Util")
local BoxBorder = req... | 818 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/BaseScrollFrame/ScrollArrow.luau | luau | .luau | -- Roact version by @sircfenner
-- Ported to Fusion by @YasuYoshida
local Plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:FindFirstChild("Fusion", true))
local StudioComponents = script.Parent.Parent
local StudioComponentsUtil = StudioComponents:FindFirstChild("Util")
local themePro... | 1,261 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/BaseScrollFrame/ScrollBar.luau | luau | .luau | -- Writen by @boatbomber
-- Modified by @mvyasu
local Plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:FindFirstChild("Fusion", true))
local StudioComponents = script.Parent.Parent
local StudioComponentsUtil = StudioComponents:FindFirstChild("Util")
local ScrollArrow = require(script... | 1,999 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/BaseScrollFrame/init.luau | luau | .luau | -- Written by @boatbomber
-- Modified by @mvyasu
local Plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:FindFirstChild("Fusion", true))
local StudioComponents = script.Parent
local StudioComponentsUtil = StudioComponents:FindFirstChild("Util")
local Background = require(StudioCompone... | 1,208 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/BoxBorder.luau | luau | .luau | local Plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:FindFirstChild("Fusion", true))
local StudioComponents = script.Parent
local StudioComponentsUtil = StudioComponents:FindFirstChild("Util")
local themeProvider = require(StudioComponentsUtil.themeProvider)
local constants = requir... | 487 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/Button.luau | luau | .luau | -- Roact version by @sircfenner
-- Ported to Fusion by @YasuYoshida
local Plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:FindFirstChild("Fusion", true))
local StudioComponents = script.Parent
local StudioComponentsUtil = StudioComponents:FindFirstChild("Util")
local BaseButton = re... | 158 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/Checkbox.luau | luau | .luau | -- Roact version by @sircfenner
-- Ported to Fusion by @YasuYoshida
local Plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:FindFirstChild("Fusion", true))
local StudioComponents = script.Parent
local StudioComponentsUtil = StudioComponents:FindFirstChild("Util")
local BoxBorder = req... | 1,495 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/ClassIcon.luau | luau | .luau | -- Written by @boatbomber
local StudioService = game:GetService("StudioService")
local Plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:FindFirstChild("Fusion", true))
local StudioComponents = script.Parent
local StudioComponentsUtil = StudioComponents:FindFirstChild("Util")
local st... | 324 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/ColorPicker.luau | luau | .luau | -- Roact version by @sircfenner
-- Ported to Fusion by @YasuYoshida
local Plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:FindFirstChild("Fusion", true))
local StudioComponents = script.Parent
local StudioComponentsUtil = StudioComponents:FindFirstChild("Util")
local BoxBorder = req... | 2,123 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/Dropdown/Constants.luau | luau | .luau | return {
RowHeight = 25,
TextPaddingLeft = 5,
TextPaddingRight = 3,
MaxVisibleRows = 6,
} | 32 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/Dropdown/DropdownItem.luau | luau | .luau | local Plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:FindFirstChild("Fusion", true))
local StudioComponents = script.Parent.Parent
local StudioComponentsUtil = StudioComponents:FindFirstChild("Util")
local themeProvider = require(StudioComponentsUtil.themeProvider)
local getModifier... | 693 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/Dropdown/init.luau | luau | .luau | -- Roact version by @sircfenner
-- Ported to Fusion by @YasuYoshida
local Plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:FindFirstChild("Fusion", true))
local StudioComponents = script.Parent
local StudioComponentsUtil = StudioComponents:FindFirstChild("Util")
local ScrollFrame = r... | 3,384 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/IconButton.luau | luau | .luau | local Plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:FindFirstChild("Fusion", true))
local StudioComponents = script.Parent
local StudioComponentsUtil = StudioComponents:FindFirstChild("Util")
local BoxBorder = require(StudioComponents.BoxBorder)
local getMotionState = require(Stud... | 893 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/Label.luau | luau | .luau | -- Roact version by @sircfenner
-- Ported to Fusion by @YasuYoshida
local Plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:FindFirstChild("Fusion", true))
local StudioComponents = script.Parent
local StudioComponentsUtil = StudioComponents:FindFirstChild("Util")
local getMotionState ... | 476 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/Licenses/StudioComponents.luau | luau | .luau | --[[
MIT License
Copyright (c) 2021 sircfenner
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publ... | 236 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/LimitedTextInput.luau | luau | .luau | local Plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:FindFirstChild("Fusion", true))
local StudioComponents = script.Parent
local StudioComponentsUtil = StudioComponents:FindFirstChild("Util")
local TextInput = require(StudioComponents.TextInput)
local getState = require(StudioComp... | 636 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/Loading.luau | luau | .luau | -- Written by @boatbomber
local Plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:FindFirstChild("Fusion", true))
local StudioComponents = script.Parent
local StudioComponentsUtil = StudioComponents:FindFirstChild("Util")
local getMotionState = require(StudioComponentsUtil.getMotionSt... | 1,036 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/MainButton.luau | luau | .luau | -- Roact version by @sircfenner
-- Ported to Fusion by @YasuYoshida
local Plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:FindFirstChild("Fusion", true))
local StudioComponents = script.Parent
local StudioComponentsUtil = StudioComponents:FindFirstChild("Util")
local Button = requir... | 205 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/ProgressBar.luau | luau | .luau | -- Written by @boatbomber
local Plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:FindFirstChild("Fusion", true))
local StudioComponents = script.Parent
local StudioComponentsUtil = StudioComponents:FindFirstChild("Util")
local getMotionState = require(StudioComponentsUtil.getMotionSt... | 422 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/ScrollFrame.luau | luau | .luau | -- Written by @boatbomber
-- Modified by @mvyasu
local Plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:FindFirstChild("Fusion", true))
local StudioComponents = script.Parent
local StudioComponentsUtil = StudioComponents:FindFirstChild("Util")
local BaseScrollFrame = require(StudioCo... | 759 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/Shadow.luau | luau | .luau | -- Written by @boatbomber
type ShadowProperties = {
Side: string,
Transparency: number?,
[any]: any,
}
local Plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:FindFirstChild("Fusion", true))
local StudioComponents = script.Parent
local StudioComponentsUtil = StudioComponents:Fin... | 576 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/Slider.luau | luau | .luau | -- Roact version by @sircfenner
-- Ported to Fusion by @YasuYoshida
local Plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:FindFirstChild("Fusion", true))
local StudioComponents = script.Parent
local StudioComponentsUtil = StudioComponents:FindFirstChild("Util")
local BoxBorder = req... | 1,521 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/TextInput.luau | luau | .luau | -- Roact version by @sircfenner
-- Ported to Fusion by @YasuYoshida
local Plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:FindFirstChild("Fusion", true))
local StudioComponents = script.Parent
local StudioComponentsUtil = StudioComponents:FindFirstChild("Util")
local BoxBorder = req... | 970 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/TextInputAccented.luau | luau | .luau | -- Roact version by @sircfenner
-- Ported to Fusion by @YasuYoshida
local Plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:FindFirstChild("Fusion", true))
local StudioComponents = script.Parent
local StudioComponentsUtil = StudioComponents:FindFirstChild("Util")
local BoxBorder = req... | 1,028 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/TextInputHighlighted.luau | luau | .luau | local PluginDebugService = game:GetService("PluginDebugService")
-- Roact version by @sircfenner
-- Ported to Fusion by @YasuYoshida
local Plugin = script.Parent.Parent.Parent --script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:WaitForChild("Packages"):WaitForChild("Fusion"))
local Highlighter =... | 1,343 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/Title.luau | luau | .luau | -- Written by @boatbomber
local Plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:FindFirstChild("Fusion", true))
local StudioComponents = script.Parent
local StudioComponentsUtil = StudioComponents:FindFirstChild("Util")
local getState = require(StudioComponentsUtil.getState)
local t... | 452 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/Util/constants.luau | luau | .luau | return {
CurvedBoxes = true,
CornerRadius = UDim.new(0, 2),
TextSize = 14,
} | 28 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/Util/getDragInput.luau | luau | .luau | -- Roact version by @sircfenner
-- Ported to Fusion by @YasuYoshida
--[[
1. onInputBegan
setState({ Dragging = true })
if widget then
globalConnection = RunService.Heartbeat(() => onInput(widget.relativePosition))
else
globalConnection = InputService.InputChanged(() => onInput(input.Position))
2. onInpu... | 1,267 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/Util/getModifier.luau | luau | .luau | local Plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:FindFirstChild("Fusion", true))
local Computed = Fusion.Computed
local unwrap = require(script.Parent.unwrap)
local types = require(script.Parent.types)
type modifierInput = {
Enabled: types.CanBeState<boolean>?,
Hovering: type... | 298 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/Util/getMotionState.luau | luau | .luau | local Plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:FindFirstChild("Fusion", true))
local Computed = Fusion.Computed
local unwrap = require(script.Parent.unwrap)
local types = require(script.Parent.types)
-- this technically could be changed later on in a way that
-- allows people... | 275 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/Util/getSelectedState.luau | luau | .luau | local unwrap = require(script.Parent.unwrap)
local types = require(script.Parent.types)
type GetSelectedStateProperties = {
Value: types.Value<any>?,
Options: types.CanBeState<{any}>?,
OnSelected: ((selectedOption: any)->nil)?,
}
return function(props: GetSelectedStateProperties): ()->any
return function()
loca... | 159 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/Util/getState.luau | luau | .luau | local Plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:FindFirstChild("Fusion", true))
local unwrap = require(script.Parent.unwrap)
local types = require(script.Parent.types)
type stateOrAny = types.StateObject<any> | any
return function(inputValue: stateOrAny, defaultValue: stateOrA... | 182 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/Util/stripProps.luau | luau | .luau | return function(props, exclude)
local export = table.clone(props)
for _, k in ipairs(exclude) do
export[k] = nil
end
return export
end
| 41 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/Util/themeProvider.luau | luau | .luau | local types = require(script.Parent.types)
type styleStyleGuideColor = Enum.StudioStyleGuideColor | types.StateObject<Enum.StudioStyleGuideColor>
type styleGuideModifier = Enum.StudioStyleGuideModifier | types.StateObject<Enum.StudioStyleGuideModifier>
type computedOrValue = types.Computed<Color3> | types.Value<Color3... | 860 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/Util/types.luau | luau | .luau | --!strict
-- This is a duplicate of Fusion's PubTypes module because for whatever reason type checking doesn't like :FindFirstAncestorWhichIsA()
-- While not a pretty solution, it's the easier solution without causing a huge mess within the components
-- If the components are updated to use a newer version of Fusion,... | 1,149 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/Util/unwrap.luau | luau | .luau | return function(x: any, useDependency: boolean?): any
if typeof(x)=="table" and x.type=="State" then
return x:get(useDependency)
end
return x
end | 41 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/VerticalCollapsibleSection.luau | luau | .luau | -- Roact version by @sircfenner
-- Ported to Fusion by @YasuYoshida
local Plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:FindFirstChild("Fusion", true))
local StudioComponents = script.Parent
local StudioComponentsUtil = StudioComponents:FindFirstChild("Util")
local VerticalExpandi... | 1,539 |
Ultrasonic1209/Zappy | Ultrasonic1209-Zappy-2577109/src/Components/StudioComponents/VerticalExpandingList.luau | luau | .luau | -- Roact version by @sircfenner
-- Ported to Fusion by @YasuYoshida
local Plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(Plugin:FindFirstChild("Fusion", true))
local StudioComponents = script.Parent
local StudioComponentsUtil = StudioComponents:FindFirstChild("Util")
local Background = re... | 514 |
seaofvoices/luau-character | seaofvoices-luau-character-5225cac/src/__tests__/casing.test.luau | luau | .luau | local jestGlobals = require('@pkg/@jsdotlua/jest-globals')
local character = require('../character')
local expect = jestGlobals.expect
local it = jestGlobals.it
local describe = jestGlobals.describe
local TO_UPPER_CASES = {
{ 'a', 'A' },
{ 'i', 'I' },
{ 'á', 'Á' },
{ 'ã', 'Ã' },
{ 'ç', 'Ç' },
... | 932 |
seaofvoices/luau-character | seaofvoices-luau-character-5225cac/src/init.luau | luau | .luau | local character = require('./character')
return character
| 10 |
seaofvoices/luau-character | seaofvoices-luau-character-5225cac/src/slice.luau | luau | .luau | local function binarySeachBy<T>(array: { T }, fn: (value: T) -> number): { ok: boolean, index: number }
local size = #array
if size == 0 then
return { ok = false, index = 1 }
end
local base = 1
while size > 1 do
local half = math.floor(size / 2)
local mid = base + half
... | 287 |
AsynchronousAI/chess-roblox | AsynchronousAI-chess-roblox-6eed745/src/client/controllers/GuiController.tsx | roblox-ts | .tsx | import { Controller, OnStart } from "@flamework/core";
import React from "@rbxts/react";
import { useAtom } from "@rbxts/react-charm";
import { createPortal, createRoot } from "@rbxts/react-roblox";
import { Players } from "@rbxts/services";
import Atoms from "client/ui/atoms";
import Board from "client/ui/board";
// i... | 319 |
AsynchronousAI/chess-roblox | AsynchronousAI-chess-roblox-6eed745/src/client/controllers/gameplay.ts | roblox-ts | .ts | import { Controller, OnStart } from "@flamework/core";
import { useInterval } from "@rbxts/pretty-react-hooks";
import { RefObject, useState } from "@rbxts/react";
import { Players, SoundService } from "@rbxts/services";
import { Events, Functions } from "client/network";
import Atoms from "client/ui/atoms";
import { C... | 2,449 |
AsynchronousAI/chess-roblox | AsynchronousAI-chess-roblox-6eed745/src/client/ui/atoms.ts | roblox-ts | .ts | import { atom } from "@rbxts/charm";
import { Square } from "shared/board";
import { Move } from "shared/engine/bitboard";
const Atoms = {
Dragging: atom<boolean>(false),
CurrentMove: atom<Square>(0),
CheckedSquare: atom<Square>(-1),
HoldingPiece: atom<Square | undefined>(undefined),
PossibleMoves: atom<Mov... | 107 |
AsynchronousAI/chess-roblox | AsynchronousAI-chess-roblox-6eed745/src/client/ui/board/Board.tsx | roblox-ts | .tsx | import React, {
forwardRef,
useImperativeHandle,
useRef,
useState,
} from "@rbxts/react";
import {
Color,
FILES,
IsSquareBlack,
RANKS,
Piece as PieceType,
Square,
} from "shared/board";
import { BitBoard } from "shared/engine/bitboard";
import { IconPack } from "./images";
import { Promotion } from ... | 2,184 |
AsynchronousAI/chess-roblox | AsynchronousAI-chess-roblox-6eed745/src/client/ui/board/EvaluationBar.tsx | roblox-ts | .tsx | import React, {
useEffect,
useState,
forwardRef,
useImperativeHandle,
} from "@rbxts/react";
import { useMotion } from "@rbxts/pretty-react-hooks";
import { usePx } from "../hooks/usePx";
import { useFlameworkDependency } from "@rbxts/flamework-react-utils";
import { Gameplay } from "client/controllers/gameplay... | 950 |
AsynchronousAI/chess-roblox | AsynchronousAI-chess-roblox-6eed745/src/client/ui/board/Piece.tsx | roblox-ts | .tsx | import React, { useEffect } from "@rbxts/react";
import { Color, Piece as PieceType } from "shared/board";
import { useAtom } from "@rbxts/react-charm";
import { useMotion, useMouse } from "@rbxts/pretty-react-hooks";
import { generatePosition } from "./shared";
import { IconPack } from "./images";
import { useFlamewo... | 1,133 |
AsynchronousAI/chess-roblox | AsynchronousAI-chess-roblox-6eed745/src/client/ui/board/Player.tsx | roblox-ts | .tsx | import { useEffect, useState } from "@rbxts/react";
import { Color, Piece, PieceValues } from "shared/board";
import { Players } from "@rbxts/services";
import React from "@rbxts/react";
import { IconPack, Vector } from "./images";
import { Object } from "@rbxts/luau-polyfill";
import { useInterval } from "@rbxts/prett... | 2,161 |
AsynchronousAI/chess-roblox | AsynchronousAI-chess-roblox-6eed745/src/client/ui/board/Promotion.tsx | roblox-ts | .tsx | import React, { Binding } from "@rbxts/react";
import { Color, Piece as PieceType } from "shared/board";
import { useAtom } from "@rbxts/react-charm";
import { useMotion } from "@rbxts/pretty-react-hooks";
import { Motion } from "@rbxts/ripple";
import { generatePosition } from "./shared";
import { BitBoard } from "sh... | 982 |
AsynchronousAI/chess-roblox | AsynchronousAI-chess-roblox-6eed745/src/client/ui/board/index.tsx | roblox-ts | .tsx | import React, { useState, useRef, useEffect } from "@rbxts/react";
import {
Color,
GetPieceValues,
IsPromotion,
Piece as PieceType,
Square,
} from "shared/board";
import { useAtom } from "@rbxts/react-charm";
import { Vector, Wood } from "./images";
import { BitBoard } from "shared/engine/bitboard";
import {... | 1,720 |
AsynchronousAI/chess-roblox | AsynchronousAI-chess-roblox-6eed745/src/client/ui/components/button.tsx | roblox-ts | .tsx | import React from "@rbxts/react";
import { usePx } from "../hooks/usePx";
import { useMotion } from "@rbxts/pretty-react-hooks";
const DEFAULT_BORDER = new Color3(0.5, 0.5, 0.5);
const FOCUSED_BORDER = new Color3(1, 1, 1);
export function Button({
title,
image,
callback,
aspectRatio,
size,
}: {
title: str... | 666 |
AsynchronousAI/chess-roblox | AsynchronousAI-chess-roblox-6eed745/src/client/ui/components/image.tsx | roblox-ts | .tsx | import React, { Binding } from "@rbxts/react";
import { useBindingState } from "@rbxts/pretty-react-hooks";
import { usePx } from "../hooks/usePx";
export interface ImageProps<T extends Instance = ImageLabel>
extends React.PropsWithChildren {
// FrameProps
anchorPoint?: React.Binding<Vector2> | Vector2;
backgr... | 1,124 |
AsynchronousAI/chess-roblox | AsynchronousAI-chess-roblox-6eed745/src/client/ui/hooks/usePlayer.ts | roblox-ts | .ts | import { useEffect, useState } from "@rbxts/react";
import { Players } from "@rbxts/services";
export function usePlayer(userId: number) {
const [name, setName] = useState("Loading..");
const [thumbnail, setThumbnail] = useState("");
useEffect(() => {
if (userId > 0) {
setName(Players.GetNameFromUserI... | 154 |
AsynchronousAI/chess-roblox | AsynchronousAI-chess-roblox-6eed745/src/client/ui/hooks/usePx.ts | roblox-ts | .ts | import {
useCamera,
useDebounceState,
useEventListener,
useInterval,
} from "@rbxts/pretty-react-hooks";
import { useMemo } from "@rbxts/react";
interface ScaleFunction {
/**
* Scales `pixels` based on the current viewport size and rounds the result.
*/
(pixels: number): number;
/**
* Scales `pi... | 532 |
AsynchronousAI/chess-roblox | AsynchronousAI-chess-roblox-6eed745/src/client/ui/stories/board.story.tsx | roblox-ts | .tsx | import React from "@rbxts/react";
import ReactRoblox from "@rbxts/react-roblox";
import Board from "../board";
const controls = {};
const story = {
react: React,
reactRoblox: ReactRoblox,
controls: controls,
story: (props: { controls: typeof controls }) => {
const component = <Board />;
return compon... | 89 |
AsynchronousAI/chess-roblox | AsynchronousAI-chess-roblox-6eed745/src/server/bot/ActorTemplate/main.server.luau | luau | .luau | --!native
--!optimize 2
local actor = script:GetActor()
local name = actor.Name
if name == "ActorTemplate" then return end
local libs = require(script.Parent.Parent.Parent.import)
local minimax = libs.Minimax
-- In actor script
actor:BindToMessageParallel("Minimax", function(tbl: SharedTable)
local board = libs.... | 211 |
AsynchronousAI/chess-roblox | AsynchronousAI-chess-roblox-6eed745/src/server/bot/import.luau | luau | .luau | -- This library works as a importer from bot to shared/engine,
-- from when the engine used to be more mixed with typescript.
--
-- This will eventually be eradicated.
local TS = require(game:GetService("ReplicatedStorage"):WaitForChild("rbxts_include"):WaitForChild("RuntimeLib"))
local BitBoard = TS.import(script, g... | 324 |
AsynchronousAI/chess-roblox | AsynchronousAI-chess-roblox-6eed745/src/server/bot/init.luau | luau | .luau | --!native
--!optimize 2
local libs = require(script.import)
local DEPTH = 5
local TIME_LIMIT_MS = 1500
return {
GetBestMove = function(board)
local start = os.clock()
local score, bestMove, nodes, _, depthReached, maxPly = libs.Minimax(
board,
board.side_to_move == 1,
{ depth = DEPTH, timeLimitMs = TIM... | 220 |
AsynchronousAI/chess-roblox | AsynchronousAI-chess-roblox-6eed745/src/server/serialization.ts | roblox-ts | .ts | import {
createBinarySerializer,
DataType,
} from "@rbxts/flamework-binary-serializer";
interface PlayerData {
rating: {
elo: DataType.u8;
rd: DataType.f32;
vol: DataType.f32;
};
opponents: {
elo: DataType.u8;
rd: DataType.f32;
score: 0 | 0.5 | 2;
gameId: string;
}[];
}
interfac... | 196 |
AsynchronousAI/chess-roblox | AsynchronousAI-chess-roblox-6eed745/src/server/services/datastore.ts | roblox-ts | .ts | import { OnStart, Service } from "@flamework/core";
import { t } from "@rbxts/t";
import { Players } from "@rbxts/services";
import { Event } from "shared/lifecycles";
import { createCollection, Document } from "@rbxts/lapis";
import { Color } from "shared/board";
const playerStore = createCollection("players4", {
d... | 845 |
AsynchronousAI/chess-roblox | AsynchronousAI-chess-roblox-6eed745/src/server/services/gameplay.ts | roblox-ts | .ts | import { Service } from "@flamework/core";
import { HttpService } from "@rbxts/services";
import { Event } from "shared/lifecycles";
import { Events } from "server/network";
import getOpening from "server/openings/getOpening";
import { Color, IsPromotion, Piece, Square } from "shared/board";
import { BitBoard } from "s... | 1,133 |
AsynchronousAI/chess-roblox | AsynchronousAI-chess-roblox-6eed745/src/shared/engine/attacks.luau | luau | .luau | --!native
--!optimize 2
local Magics = require("./magics")
local Utils = require("./utils")
local attacks_init = require("./attacks_init")
local WHITE = Utils.WHITE
local get_bit = Utils.get_bit
local set_bit = Utils.set_bit
local NOT_FILE_A = Utils.NOT_FILE_A
local NOT_FILE_H = Utils.NOT_FILE_H
local NOT_FILE_AB = ... | 2,352 |
AsynchronousAI/chess-roblox | AsynchronousAI-chess-roblox-6eed745/src/shared/engine/attacks_init.luau | luau | .luau | --!native
--!optimize 2
local Utils = require("./utils")
-- Standard 64-bit Magic Indexing
local function magic_index(occ: integer, magic: integer, bits: number): number
-- (occ * magic) >> (64 - bits)
local mul = integer.mul(occ, magic)
local shift = integer.create(64 - bits) :: integer
return integer... | 1,391 |
AsynchronousAI/chess-roblox | AsynchronousAI-chess-roblox-6eed745/src/shared/engine/bitboard.luau | luau | .luau | --!native
--!optimize 2
--!strict
local Utils = require("./utils")
local MoveGen = require("./move_gen").MoveGen
local Zobrist = require("./zobrist")
local Encoding = require("./encoding")
local FEN = require("./fen")
local MoveOps = require("./move_ops")
local WHITE, BLACK, PAWN, KNIGHT, BISHOP, ROOK, QUEEN, KI... | 1,650 |
AsynchronousAI/chess-roblox | AsynchronousAI-chess-roblox-6eed745/src/shared/engine/encoding.luau | luau | .luau | --!native
--!optimize 2
--!strict
local Utils = require("./utils")
local PIECE_STRIDE = Utils.PIECE_STRIDE
local ATK_STRIDE = Utils.ATK_STRIDE
local WHITE, BLACK, PAWN, KING = Utils.WHITE, Utils.BLACK, Utils.PAWN, Utils.KING
local Encoding = {}
function Encoding.to_buffer(board: Utils.Board): buffer
local b = bu... | 775 |
AsynchronousAI/chess-roblox | AsynchronousAI-chess-roblox-6eed745/src/shared/engine/eval.luau | luau | .luau | --!native
--!optimize 2
--!strict
local Utils = require("./utils")
local PAWN, KNIGHT, BISHOP, ROOK, QUEEN, KING =
Utils.PAWN, Utils.KNIGHT, Utils.BISHOP, Utils.ROOK, Utils.QUEEN, Utils.KING
local WHITE, BLACK = Utils.WHITE, Utils.BLACK
local PIECE_STRIDE = 6
local COLOR_STRIDE = 64
local PST = table.create(64 * 6... | 621 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.