Recent projects

MY SQL

MySQL · an anonymous user
21 seconds ago
-- -- DROP TABLE cats; CREATE TABLE cats( cat_id INT AUTO_INCREMENT PRIMARY KEY,name VARCHAR(100),breed VARCHAR(100),age INT); -- DESC cats; -- INSERT INTO cats(name, breed, age) -- VALUES ('Ringo', 'Tabby', 4),

test.html

NodeJS · an anonymous user
26 seconds ago
console.log("Hello world!");

pro_1

C · an anonymous user
46 seconds ago
#include <stdio.h> int main() { printf("Hello world!\n"); return 0; }

Proyecto con async

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

pro_1

C · an anonymous user
4 minutes ago
#include <stdio.h> int main() { printf("Hello world!\n"); return 0; }

matlab program 2

Octave · an anonymous user
4 minutes ago
function compute_autocorr() % Define the input sequence x = [1, 2, 3, 4]; % Determine the auto-correlation and corresponding lags [Rxx, lags] = xcorr(x); % Display the results in the command window disp('Input Sequence x(n)

Question 2.3

MongoDB · Rea21
5 minutes ago
use('EduvosLibrary'); db.createCollection('book'); print('book collection created'); db.createCollection('author'); print('author collection created'); db.createCollection('bookauthor'); print('bookauthor collection created');

pro1

C · an anonymous user
6 minutes ago
#include <stdio.h> int main() { printf("Hello world!\n"); return 0; }

tarea

C · an anonymous user
7 minutes ago
#include <stdio.h> int main() { int edad = 12, regalo_actual = 10, tr = 0; do { tr = tr + regalo_actual;

Question2

MongoDB · an anonymous user
7 minutes ago
db.createCollection("AUTHOR"); db.createCollection("BOOK"); db.createCollection("BOOKAUTHOR"); db.createCollection("MEMBER"); db.createCollection("BORROWEDBOOKS"); (GreeksforGreeks,2026) 2.2 db.AUTHOR.insertMany([ { authorID: 205,

Student.h

C++ · an anonymous user
8 minutes ago
#include "Student.h" #include "Student.cpp" int main() { Student Tarou; Tarou.year = 10; Tarou.num = 20; Tarou.show(); return 0; }

scanner

Lua · NotKing
9 minutes ago
--[[ ╔══════════════════════════════════════════════════════╗ ║ 🔍 ULTIMATE ROBLOX SCANNER v1.0 ║ ║ ⚔️ Weapons | ❤️ Health | 🪙 AC | 📍 Locations ║ ║ drag · tab · auto-rescan · console log ║ ╚════════════════════

Proyecto con async

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

del 2 itdsa

MongoDB · khsxcd
9 minutes ago
db.createCollection("AUTHOR"); db.createCollection("BOOKAUTHOR"); db.createCollection("BOOK"); db.createCollection("MEMBER"); db.createCollection("BORROWEDBOOKS");

student.h

C++ · an anonymous user
10 minutes ago
// main.cpp #include "Student.h" #include "Student.cpp" int main() { Student Tarou; Tarou.year = 10; Tarou.num = 20; Tarou.show(); return 0;

Proyecto con async

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

Question 2.1

MongoDB · an anonymous user
13 minutes ago
use('EduvosLibrary'); db.createCollection('book'); print('book collection created'); db.createCollection('author'); print('author collection created'); db.createCollection('bookauthor'); print('bookauthor collection created');

Scatter plot

R · gagz
15 minutes ago
# median x <-c(10,12,14,16,18,20,22) f <-c(2,5,12,20,10,7,3) N <-print(sum(f)) lcf <-print(cumsum(f)) df <-print(data.frame(x,f,lcf)) median_index <-print(which(lcf>=N/2)[1]) median <-print(x[median_index])

student.h

C++ · an anonymous user
17 minutes ago
// main.cpp #include "Student.h" int main() { Student Tarou; Tarou.year = 10; Tarou.num = 20; Tarou.show(); return 0; }

Deliverable 2

MongoDB · an anonymous user
18 minutes ago
db.createCollection("AUTHOR"); db.createCollection("BOOK"); db.createCollection("BOOKAUTHOR"); db.createCollection("MEMBER"); db.createCollection("BORROWEDBOOKS"); db.AUTHOR.insertMany([ {authorID: "au01", firstName: "Adewale", lastName: "Obaro"}