Recent projects

exp 4

Octave · an anonymous user
11 hours ago
% BPSK modulation clc; clear all; close all; % Generate carrier signal Tb=1; t=0:Tb/100:Tb; fc=2; c=sqrt(2/Tb)*sin(2*pi*fc*t); % Generate message signal

sbs

SQL · an anonymous user
11 hours ago
-- create a table CREATE TABLE sbs ( id INTEGER PRIMARY KEY, name TEXT NOT NULL, gender TEXT NOT NULL ); -- insert some values INSERT INTO sbs VALUES (1, 'Ryan', 'M'); INSERT INTO sbs VALUES (2, 'Joanna', 'F'); -- fetch some values

sql

SQL · an anonymous user
11 hours ago
CREATE TABLE Cliente ( id_cliente INT AUTO_INCREMENT PRIMARY KEY, nombre VARCHAR(100), telefono VARCHAR(20), direccion VARCHAR(150), correo VARCHAR(100) ); CREATE TABLE Flor ( id_flor INT AUTO_INCREMENT PRIMARY KEY,

minimum

C · an anonymous user
11 hours ago
#include <stdio.h> int main(){ int i; for(i=0;i<=20;i++) printf("Je t'aime mon amour. \n"); return 0; }

Lua · an anonymous user
11 hours ago
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "스크립트", Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to use no icon (default).

Proyecto con async

Python · an anonymous user
11 hours ago
#core/CLI.py import subprocess import typer app = typer.Typer() try: @app.command() def up():

Proyecto con async

Python · an anonymous user
11 hours ago
#core/CLI.py import subprocess import typer app = typer.Typer() try: @app.command() def up():

transport_db2

SQL · an anonymous user
11 hours ago
-- No CREATE DATABASE or USE – assume you've already selected the right database CREATE TABLE IF NOT EXISTS users ( id INT AUTO_INCREMENT PRIMARY KEY, username VARCHAR(50) UNIQUE NOT NULL, password_hash VARCHAR(255) NOT NULL ); INSERT

psk

Octave · an anonymous user
11 hours ago
clc; clear all; close all; % Generate carrier signal Tb=1; t=0:Tb/100:Tb; fc=2;

Proyecto con async

Python · an anonymous user
11 hours ago
#core/CLI.py import subprocess import typer app = typer.Typer() try: @app.command() def up():

C · an anonymous user
11 hours ago
#include <stdio.h> int gcd(int a, int b) { if (b == 0) return a; else return gcd(b, a % b); }

C · an anonymous user
11 hours ago
#include <stdio.h> int gcd(int a, int b) { if (b == 0) return a; else return gcd(b, a % b); }

exp 4

Octave · an anonymous user
11 hours ago
% BPSK modulation clc; clear all; close all; % Generate carrier signal Tb=1; t=0:Tb/100:Tb; fc=2; c=sqrt(2/Tb)*sin(2*pi*fc*t); % Generate message signal

psk

Octave · an anonymous user
11 hours ago
clc; clear all; close all; % Generate carrier signal Tb=1; t=0:Tb/100:Tb; fc=2;

C · an anonymous user
11 hours ago
#include <stdio.h> void maxmin(int a, int b, int c, int *max, int *min) { *max = a; *min = a; if (b > *max) *max = b; if (c > *max)

exp 3

Octave · an anonymous user
11 hours ago
clear all; close all; N = 8; bit_stream = round(rand(1,N)); A1 = 3; A2 = 5;f = 3; fs = 100; t = 0: 1/fs : 1; time = []; ASK_signal = []; Digital_signal = [];

Proyecto con async

Python · an anonymous user
11 hours ago
#core/CLI.py import subprocess import typer app = typer.Typer() try: @app.command() def up():

exp4

Octave · an anonymous user
11 hours ago
clc;clear;close all; N = 10; Tb = 3; fc1 = 6; fc2 = 5; fs = 150; t = 0:1/fs:Tb-1/fs; m = randi([0 1],1,N); c1 = sqrt(2/Tb)*sin(2*pi*fc1*t); c2 = sqrt(2/Tb)*sin(2*pi*fc2*t);

Gerald2p

Java · an anonymous user
11 hours ago
public class Main { public static void main(String[] args) { double firstNum = 10; double secondNum = 3; System.out.println("Numbers:"); double add = firstNum + secondNum; double sub = f

exp 2

Octave · an anonymous user
11 hours ago
clc; close all; clear all; fm=input('Enter the message frequency (in Hz): '); fs=input('Enter the sampling frequency (in Hz): '); L=input('Enter the number of the quantization levels: '); n = log2(L); t=0:1/fs:1; % fs nuber of samples have tobe sele