Recent projects

g

C · an anonymous user
23 hours ago
#include <stdio.h> #include <math.h> int risolvi(double a, double b, double c, double *x1, double *x2) { double d = b * b - 4 * a * c; if (d < 0) return 0; *x1 = (-b + sqrt(d)) / (2 * a); *x2 = (-b - sqrt(d)) / (2 * a); return d

🏀Hoopz script | BETA⛹️

Lua · an anonymous user
23 hours ago
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "🏀Hoopz script | BETA⛹️", LoadingTitle = "🏀Hoopz script | BETA⛹️", LoadingSubtitle = "by HELP ME", ConfigurationSa

g

C · an anonymous user
23 hours ago
#include <stdio.h> #include <math.h> int risolvi(double a, double b, double c, double *x1, double *x2) { double d = b * b - 4 * a * c; if (d < 0) return 0; *x1 = (-b + sqrt(d)) / (2 * a); *x2 = (-b - sqrt(d)) / (2 * a); return d

a

Octave · an anonymous user
23 hours ago
% ATV03 - Fluxo de Potencia % Aluno: Lucas Monte Bravo % Programa: GNU Octave / MATLAB compativel % % IMPORTANTE NO OCTAVE ONLINE: % 1) Cole este codigo inteiro em um arquivo chamado, por exemplo: % Fluxo_Potencia_Lucas_Monte_Bravo.m % 2) Cliq

행동계산

Python · an anonymous user
23 hours ago
from math import pow class Character: def __init__(self, name, speed, skills): """ skills : 사용할 스킬들의 필요 게이지 리스트 예) [1000, 700, 1500] """ self.name = name

행동계산

Python · an anonymous user
23 hours ago
from math import pow class Character: def __init__(self, name, speed, skills): """ skills : 사용할 스킬들의 필요 게이지 리스트 예) [1000, 700, 1500] """ self.name = name

SIATS

Octave · an anonymous user
23 hours ago
% ========================================================================= % SIATS 2.0 - Sistema Inteligente de Alerta Temprana de Tsunamis % Archivo: principal.m - SECUENCIA DE ARRANQUE Y CARGA VISUAL % ============================================

Eje Y invertido

Lua · an anonymous user
23 hours ago
-- name: Eje Invertido y Vuelo Libre -- description: Mod estricto de vuelo libre con eje Y normalizado (Arriba=Subir). Requiere triple salto. local FLIGHT_SPEED = 32.0 -- Velocidad constante hacia adelante al volar local VERTICAL_SPEED = 20.0 --

AFS

Lua · an anonymous user
23 hours ago
if game.PlaceId == 100429474155186 then local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "Anime fighting simulator", Icon = 0, -- Icon in Topbar. Can use Lucide Icons (

user input simple

C · an anonymous user
23 hours ago
#include <stdio.h> #define MAXUSERIP 5000 // //---------------------------------------- // simple user input void userip(char words[]) { // userip( words); int i=0; int ch; // getchar returns int, use int to // handle EOF correctly

Eje Y invertido

Lua · an anonymous user
23 hours ago
-- name: Eje Invertido y Vuelo Libre (ALGORITMO SUPER COSMICISIMO) -- description: Vuelo 3D vectorial cuántico (Arriba=Subir). Hiper-Velocidad con A, Supernova con B, Levitación Estacionaria e Inmunidad Absoluta. Capa con L. local FLIGHT_SPEED = 40

user input simple

C · an anonymous user
23 hours ago
#include <stdio.h> #define MAXUSERIP 5000 // // simple user input void userip(char words[]) { // userip( words); int i=0; int ch; // getchar returns int, use int to // handle EOF correctly // Read until EOF, newline, or buffer limit reached

test pyth

Python · an anonymous user
23 hours ago
print('Hello world!')

user input simple

C · an anonymous user
23 hours ago
#include <stdio.h> #define MAXUSERIP 5000 // // simple user input void userip(char words[]) { // userip( words); int i=0; int ch; // getchar returns int, use int to // handle EOF correctly // Read until EOF, newline, or buffer limit reached

Trackphone.py

Python · an anonymous user
23 hours ago
import phonenumbers from text import number from phonenumbers import geocoder ch_number = phonenumbers.parse(number, "CH") print(geocoder.description_for_number(ch_number, "en")) from phonenumbers import carrier service_provider = phonenumbers.par

Trackphone.py

Python · an anonymous user
23 hours ago
import phonenumbers from phonenumbers import geocoder phone_number1 = phonenumbers.parse("+919381785867") phone_number2 = phonenumbers.parse("+918309310196") phone_number3 = phonenumbers.parse("+919010117337") phone_number4 = phone

Eje Y invertido

Lua · an anonymous user
1 day ago
-- name: Eje Invertido y Vuelo Libre -- description: Eje Y normalizado (Arriba=Subir) para vuelo y nado. Presiona L para alternar la Capa Alada. local FLIGHT_SPEED = 30.0 -- Velocidad horizontal de vuelo local ASCEND_SPEED = 20.0 -- Velocidad verti

animal hospital

Lua · pinkyup
1 day ago
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "Animal Hospital 💜", Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to use no ic

Punto 1

R · an anonymous user
1 day ago
# --- Paso 1: indices de capacidad --- EI <- 19.8; ES <- 20.2; xbar <- 19.9; s <- 0.1 Cp <- (ES - EI) / (6 * s) Cps <- (ES - xbar) / (3 * s) Cpi <- (xbar - EI) / (3 * s) Cpk <- min(Cps, Cpi) cat("Cp =", Cp, "\nCpk =", Cpk, "\n") # --- Paso 2: limi

pharmacy

SQL · an anonymous user
1 day ago
CREATE TABLE users ( id INT AUTO_INCREMENT PRIMARY KEY, username VARCHAR(50), password VARCHAR(255), role ENUM('ADMIN','PHARMACIST','STORE_KEEPER') ); CREATE TABLE drugs ( id INT AUTO_INCREMENT PRIMARY KEY, drug_name VARCHAR(