This UserScript adds a floating button that enables Picture-in-Picture (PIP) mode for videos on mobile devices.
Discover gists
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <openssl/sha.h> | |
#include <roaring/roaring.h> | |
#include <time.h> | |
#define EVENT_ID_SIZE 32 | |
#define KEY_SIZE 8 | |
#define SALT_SIZE 16 |
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
DROP DATABASE IF EXISTS AULA; | |
CREATE DATABASE AULA; | |
USE AULA; | |
CREATE TABLE IF NOT EXISTS DEPARTAMENTOS ( | |
id_departamento INT UNSIGNED NOT NULL AUTO_INCREMENT, | |
sigla VARCHAR(10) NOT NULL UNIQUE, | |
nome VARCHAR(50) NOT NULL UNIQUE, | |
PRIMARY KEY (id_departamento) | |
) ENGINE=InnoDB; |
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
defmodule ISHYGDDT.Multiset do | |
@moduledoc """ | |
An unordered multiplicitous container type. | |
""" | |
defstruct [counts: %{}] | |
defmodule Multiplicities do | |
@type t(element) :: %{optional(element) => pos_integer()} | |
@type t() :: t(term()) | |
@moduledoc """ |
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
UxhQUFAAAAAAAAD1WOqw9VgAAAAAAAAAAQAAAjJGCIbrwfqsAAAAAAAAAAARxwAACgEAABoZKQCI+eD1nfwB/zT3egAAAAAAAAoBAAAeFB4ARAAAAET7NQAA+mgAAAAAAAAMAQAAAR4eCZf3vvatAAAAAAAAAAAiIgAACgEAAAEeHvZp9772rf+8AAAAAAAA3d3//woBAAACMkb3euvB+qz/eAAAAAAAAO43//8KAQAAUFBQAAAAAAAA9VjqsPVYAAAAAAAAAAEAAFB4KAAAAAAAAPVYAAD6rAAAAAAAAAEBAAAeHjH8ARmTAzIAAAAAAADgtQAAAAASAQAAGBkvAVUBEApj/3j/NAAA+ZgAAAAAEwEAABQVL/+8AAAKYwBEAAAAAAT6AAAAABQBAAASES8AAADMCQ4AiACIAAAQWgAAAAAVAQAADgovAAAAzAkOARAB3QAAEFoAAAAAFgEAAAEULQHd/vAJDgEQAd0AAAAAAAAAABcBAABQeCgAAAAAAAD1WAAA+qwAAAAAAAABAQAAHngoAAAAAAAA/Vb6rPqsAAAAAAAAAgEAAB54KAAAAAAAAP1W+qz6rAAAAAAAAAIBAAAeeCgAAAAAAAD6rPqs+qwAAAAAAAADAQAAHngoAAAAAAAA+qz6rPqsAAAAAAAAAwEAACh4KAAAAAAAAPqsAAD6rAAAAAAAAAQBAAAoeCgAAAAAAAD6rAAA+qwAAAAAAAAEAQAAKHgoAAAAAAAA+qwAAPqsAAAAAAAABQEAACh4KAAAAAAAAPqsAAD6rAAAAAAAAAUBAAABAQAF1JgEAV4BXs2YBIlQTkcNChoKAAAADUlIRFIAAAK8AAACvAgGAAAADbpsQwABDBRJREFUeF5jZBjhQEND4z9yEHz9+hXMhdHowcPKyooixMzMjJf/9+9fsDyMJja4Yeaim49uDjr/9+/fWK3g5uYGi8NomCJc/hwpyeLx48cjPg+M5CIAV/6nNF3IysqCyxX0/P/y5Uu86U1cXBysDz3/U8s9 |
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
<?xml version="1.0" encoding="utf-8"?> | |
<fileSnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<files> | |
<file path="C:\ProgramData\chocolatey\lib\dashlane\dashlane.nupkg" checksum="088824693CFF9D04A281C29F0A9BD46A" /> | |
<file path="C:\ProgramData\chocolatey\lib\dashlane\dashlane.nuspec" checksum="8B7BFF6E9975556549BD56A9B30501CB" /> | |
<file path="C:\ProgramData\chocolatey\lib\dashlane\tools\chocolateyinstall.ps1" checksum="DA3FF2C13451DCBC29C78687D2A6A1F0" /> | |
<file path="C:\ProgramData\chocolatey\lib\dashlane\tools\chocolateyuninstall.ps1" checksum="08373B31E5D176C968358225814F2E71" /> | |
</files> | |
</fileSnapshot> |
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
workspace { | |
model { | |
customer = person "Cliente" "Usuário que realiza pedidos através do sistema" | |
group "Sistema de Pedidos" { | |
// Sistemas de Software | |
mobileApp = softwareSystem "Aplicativo Móvel" "Permite aos clientes fazerem pedidos via smartphone" { | |
mobileUI = container "Interface Móvel" "Interface do usuário mobile" "React Native" | |
} | |
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
-- AH POST-SERVER LOGS -- | |
-- ServerID: ff933527-fbc1-46c9-bc2f-ea159aa02dd7 | |
-- Server started: February 06, 2025 11:01 PM UTC | Server uptime: 799 seconds | |
------------------ LOADB LOGS ------------------ | |
{ | |
} |
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 { Application } from "@hotwired/stimulus"; | |
import CalendarController from "controllers/calendar_controller"; | |
describe("CalendarController", () => { | |
let application; | |
let calendarPopup; | |
let closeButton, dayButton1, dayButton2, dayButton3, dayButton4, addSpecificsDatesButton, pickedDates, specificDatesContainer; |
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
code --install-extension Extensions installed on WSL: Ubuntu: | |
code --install-extension batisteo.vscode-django | |
code --install-extension bradlc.vscode-tailwindcss | |
code --install-extension codeium.codeium | |
code --install-extension danielsanmedium.dscodegpt | |
code --install-extension dbaeumer.vscode-eslint | |
code --install-extension donjayamanne.python-environment-manager | |
code --install-extension donjayamanne.python-extension-pack | |
code --install-extension eamodio.gitlens | |
code --install-extension editorconfig.editorconfig |