Skip to content

Instantly share code, notes, and snippets.

echo '
define powmod(b, e, m) {
auto r, s, old_scale
old_scale = scale
scale = 0
r = 1 % m
b = b % m
if (b < 0) b += m
s = e
while (s > 0) {
-- [[ NARAK GANG | Ultimate Multi-Pattern Spammer (All Credits) ]] --
local Players = game:GetService("Players")
local LocalPlayer = Players.LocalPlayer
local TextChatService = game:GetService("TextChatService")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
-- ScreenGui Setup
local ScreenGui = Instance.new("ScreenGui")
ScreenGui.Name = "EndlessSpammerUI_V5"
ScreenGui.Parent = game.CoreGui
@opragmatico
opragmatico / gist:e0979d54dc4c738713f547b948f6d8c7
Created September 19, 2026 07:44
MCP Server controller in Elixir
defmodule CRWeb.McpController do
use CRWeb, :controller
alias CRWeb.McpTools
require Logger
plug :accepts, ["json"]
plug CRWeb.McpAuth
local ScreenGui = Instance.new("ScreenGui")
local MainFrame = Instance.new("Frame")
local Title = Instance.new("TextLabel")
local SubTitle = Instance.new("TextLabel") -- Script By Nameless ke liye
local Instagram = Instance.new("TextLabel")
local TargetBox = Instance.new("TextBox")
local DelayBox = Instance.new("TextBox")
local StartBtn = Instance.new("TextButton")
local MenuBtn = Instance.new("TextButton")
local UIStroke = Instance.new("UIStroke")
public static bool ContainsAtIndex(int[] array, int[] subArray, int i)
{
for (int j = 0; j < subArray.Length; j++)
{
if (array[i + j] != subArray[j]) return false;
}
return true;
}
-- SCRIPT BY AMANE👑
local Players = game:GetService("Players")
local TextChatService = game:GetService("TextChatService")
local RunService = game:GetService("RunService")
local SoundService = game:GetService("SoundService")
local player = Players.LocalPlayer
local enabled = false
@Ranjit246
Ranjit246 / bayes_theorem_ASR.md
Created September 19, 2026 07:43
Bayes Theorem - ASR and External LM

The ultimate goal of an ASR system is to find the Posterior: what is the most likely sequence of words given the audio you just heard?

Using Bayes' Theorem, we can flip this complicated problem into two simpler pieces:

$$P(\text{Words} \mid \text{Audio}) = \frac{P(\text{Audio} \mid \text{Words}) \times P(\text{Words})}{P(\text{Audio})}$$

Because the actual audio recording doesn't change while the system is guessing different words, we can ignore the denominator (the probability of the audio). This leaves us with the fundamental equation of traditional ASR:

Posterior $\propto$ Likelihood $\times$ Prior

8a82aeae77cd54a564fe763d77aaaa73e332737f6027b33d35bfe12b4c735468 @ 1789803789.5667956
8a82aeae77cd54a564fe763d77aaaa73e332737f6027b33d35bfe12b4c735468 @ 1789803788.2403555
@0xsline
0xsline / README.md
Created September 19, 2026 07:43
cua-driver 0.28.2: browser_click deadlocks on any element that opens a page-owned JS dialog

cua-driver 0.28.2: browser_click cannot click an element that opens a JS dialog

Self-contained. Serves its own two-button fixture, launches a throwaway host Chrome, lets browser_prepare spawn a driver-owned isolated browser, then clicks one button that calls confirm() and one that does not.

python3 repro_browser_dialog.py   # exits 0 when the bug reproduces