Recent projects

smart parking management system

NodeJS · an anonymous user
23 hours ago
// Smart Parking Management System - Fixed Version class Queue { constructor() { this.items = []; } enqueue(item) { this.items.push(item); } dequeue() { return this.items.shift(); } isEmpty() { return this.items.length === 0; } } cl

8x op menu

Lua · an anonymous user
23 hours ago
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "8X Mod Menu", Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to use no icon (de

exercicio 001.py

Python · victorestevaodev
23 hours ago
frase = 'olá mundo' print() print(frase.center(40), frase.title())

Intersezione

C · an anonymous user
23 hours ago
#include <stdio.h> #include <stdlib.h> struct nodoLista { int valore; struct nodoLista *nextPtr; }; typedef struct nodoLista Lista;

DELIVERABLE 2

MongoDB · an anonymous user
23 hours ago
db.createCollection("members"); db.createCollection("authors"); db.createCollection("books"); db.createCollection("borrowed_books"); db.createCollection("book_authors"); db.members.insertMany([ { memberID: "m01", firstName: "Thabo", lastName: "Nk

data r

R · an anonymous user
23 hours ago
# ============================================================================== # PROYECTO DE PROBABILIDAD Y ESTADÍSTICA - EPN (VERSIÓN ONLINE) # ============================================================================== # 1. GENERACIÓN DE LA

Atividade MAPA - WESLY

C · an anonymous user
1 day ago
#include <stdio.h> int main() { // a) Criar a estrutura e armazenar os dados struct Medicamento med; strcpy(med.nome, "Dipirona"); med.quantidade = 10; // b) Criar um ponteiro para a estrutura struct Medicamento *ptrMed;

graph

Octave · an anonymous user
1 day ago
clear; clc; close all; % --- 1. System Parameters --- reg_no = 6562; p.m1 = reg_no/10; % Mass 1 (kg) p.m2 = reg_no/20; % Mass 2 (kg) p.c1 = reg_no/10; % Damping 1 (Ns/m) p.c2 = reg_no/20; % Damping 2 (Ns/m) p.k1 = reg_no; % Stiffness

Cinema

SQL · an anonymous user
1 day ago
CREATE TABLE Filme ( id_filme SERIAL PRIMARY KEY, titulo VARCHAR(150) NOT NULL, genero VARCHAR(50), duracao INT, classificacao VARCHAR(10) ); CREATE TABLE Sala ( id_sala SERIAL PRIMARY KEY,

g

C · an anonymous user
1 day 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

g

C · an anonymous user
1 day 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
1 day 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
1 day 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
1 day 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
1 day ago
from math import pow class Character: def __init__(self, name, speed, skills): """ skills : 사용할 스킬들의 필요 게이지 리스트 예) [1000, 700, 1500] """ self.name = name

행동계산

Python · an anonymous user
1 day 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
1 day 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
1 day 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
1 day 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
1 day 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