Recent projects

ejercicio1

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

ejercicio1

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

hello

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

session 1

SQL · kareemohamed
22 hours ago
CREATE TABLE Customers ( CustomerID INT PRIMARY KEY, FirstName VARCHAR(50), LastName VARCHAR(50), City VARCHAR(50), Age INT, Email VARCHAR(100) ); INSERT INTO Customers VALUES

PRISON LIFE SCRIPT V3.2

Lua · an anonymous user
22 hours ago
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "prison life", LoadingTitle = "prison life hub", LoadingSubtitle = "by SFscript", ConfigurationSaving = { En

PRISON LIFE SCRIPT V3.2

Lua · an anonymous user
22 hours ago
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "prison life", LoadingTitle = "prison life hub", LoadingSubtitle = "by SFscript", ConfigurationSaving = { En

absulate value

Octave · an anonymous user
22 hours ago
true_value=50; approx_value=47; abs_error=abs(true_value-approx_value); rel_error=abs_error/abs(true_value); per_error=rel_error*100; disp(abs_error); disp(rel_error); disp(per_error);

CYRIL

MySQL · cyril6767
22 hours ago
-- create a table CREATE TABLE students ( id INTEGER PRIMARY KEY, name TEXT NOT NULL, gender TEXT NOT NULL ); -- insert some values INSERT INTO students VALUES (1, 'Ryan', 'M'); INSERT INTO students VALUES (2, 'Joanna', 'F'); -- fetch some val

ams

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

rlm

R · an anonymous user
22 hours ago
beta0<-0.2 beta1<-4 sigma<-sqrt(1.62) x1<-rnorm(n=25,mean=4,sd=1.1) epsilon<-rnorm(n=25,mean=0,sd=sigma) y<-beta0+beta1*x1+epsilon x1 y e<-summary(lm(y~x1))$residuals p<-((1:25)-0.5)/25

Two Sum

Java · sreebhavani_2325
22 hours ago
import java.util.*; import java.lang.*; import java.io.*; // The main method must be in a class named "Main". class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); int n=sc.nextInt(); i

anime astral

Lua · an anonymous user
22 hours ago
-- SCRIPT PRINCIPAL - BOT MASTER PARA ROBLOX -- Interface moderna com design limpo e profissional -- Sistema de Farm de Mobs e Dungeons/Raids local Players = game:GetService("Players") local RunService = game:GetService("RunService") local UserInpu

exp003

Octave · an anonymous user
22 hours ago
clc; clear; close all; % INPUT DATA SEQUENCES x = [1 2 3 4]; h = [1 2 3 4]; % FIND LENGTH OF SEQUENCES Nx = length(x);

exp003

Octave · an anonymous user
22 hours ago
clc; clear; close all; % INPUT DATA SEQUENCES x = [1 2 3 4]; h = [1 2 3 4]; % FIND LENGTH OF SEQUENCES Nx = length(x);

exp003

Octave · an anonymous user
22 hours ago
clc; clear; close all; % INPUT DATA SEQUENCES x = [1 2 3 4]; h = [1 2 3 4]; % FIND LENGTH OF SEQUENCES Nx = length(x);

SSAFY 사전교육

SQL · kanggyu
22 hours ago
-- create a table CREATE TABLE Reservation ( ID INT, Name VARCHAR(30), ReserveDate DATE, RoomNum INT ); ALTER TABLE Reservation MODIFY COLUMN RoomNum FLOAT;

exp003

Octave · an anonymous user
22 hours ago
clc; clear; close all; % INPUT DATA SEQUENCES x = [1 2 3 4]; h = [1 2 3 4]; % FIND LENGTH OF SEQUENCES Nx = length(x);

Project 15 (الوحدة 3)

Python · ra_1fh
23 hours ago
print("Welcome to the test 'Are you Syrian or not': ") print("You should use transportation, train, bus or taxi ") transportation = input("What will you choose? \n ").lower() if transportation == "train": print("Sorry, there is no train in Syria."

Result

C · albatross0706
23 hours ago
#include <stdio.h> int main() { int Bengali, English, Physics, Math, Chemistry, Biology; printf("Enter numbers for six subjects \n"); scanf("%d %d %d %d %d %d", &Bengali, &English, &Physics, &Math, &Chemistry, &Biology); int lowMarks =

网络用语分析工具

Python · an anonymous user
23 hours ago
# 网络用语库:词汇+释义+书面替换词 net_words = { "yyds": {"mean": "永远的神", "replace": "十分优秀、无可替代"}, "绝绝子": {"mean": "夸张夸赞/吐槽用语", "replace": "十分出色、不尽人意"}, "emo": {"mean": "情绪低落伤感", "replace": "内心惆怅、情绪低落"}, "栓Q": {"mean": "搞笑调侃式感谢", "replace": "十分感谢"}