Recent projects

hello.sql

MySQL · an anonymous user
6 minutes ago
create table empl( id number(10) primary key, ename varchar2(20) not null, gender char(1), age number(2) check (age>20 and age<60), salary decimal(7,2), doj date ); desc empl; insert into empl values(2,'Aritra Ghosh', 'M', 21, 99999.99, to_Date('12-

Practical 3

Octave · an anonymous user
7 minutes ago
A=[1,2,5,6,8]; B=[2,4,6,10,11]; C=[1,3,5,6,11,12]; D=union(A,B) LHS1=union(D,C) E=union(B,C) RHS1=union(A,E) F=intersect(A,B) LHS2=intersect(F,C) G=intersect(B,C)

动漫Python基础

Python · bobfs
8 minutes ago
# 第一章 薛定谔python之旅 荷兰Guidovan rossum 20+90年代设计 """python developers guide PEP python enhancement proposals,pep20 python之禅;monty python喜剧演员 特点:代码易读易懂 定义变量不需要指定数据类型,动态类型dynamic typing """ main_text = "hello world!" print(main_text)

122p 예제

C · godks
12 minutes ago
#include <stdio.h> int main() { printf("literal int size: %d \n", sizeof(7)); printf("literal double size: %d \n", sizeof(7.14)); printf("literal char size: %d \n", sizeof('A')); return 0; }

newton

Octave · an anonymous user
12 minutes ago
% Parameters T0 = 90; % Initial temperature of tea (°C) Ts = 25; % Room temperature (°C) k = 0.08; % Cooling constant % Time in minutes t = linspace(0, 60, 200); % Newton's Law of Cooling T = Ts + (T0 - Ts) * exp(-k * t);

Vettre

R · muthuvijaya
15 minutes ago
hi<-"S. Vettre Darshini " print(hi)

ㅁㄴㅇㄴㅇㄴㅁㅇㅁㄴㅇㄴㅁ

Lua · MINEMINYEE
27 minutes ago
-- ============================================================ -- Anti-Cheat Bypass (extracted from Lunara) -- ============================================================ -- Features: -- 1. setmetatable hook -> breaks MiscellaneousController weak-

Sudoku

C · an anonymous user
33 minutes ago
#include <stdio.h> #include <stdlib.h> #include <stdbool.h> void display(int a, int b,int tableau[][b]){ for(int p = 0; p<=37; p++){ printf("_"); } printf("\n"); for(int i = 1; i<=9; i++){

bar chart

R · an anonymous user
34 minutes ago
sales_data<-data.frame(Category=c("Electronics","Clothing","Home Decor","Groceries","Books"),Revenue=c(25000,18000,12000,31000,7000)) print(sales_data) barplot(height=sales_data$Revenue,names.arg=sales_data$Category,main="Monthly Revenue by product

Sudoku

C · an anonymous user
39 minutes ago
#include <stdio.h> #include <stdlib.h> #include <stdbool.h> void display(int a, int b,int tableau[][b]){ for(int p = 0; p<=37; p++){ printf("_"); } printf("\n"); for(int i = 1; i<=9; i++){

Gopollyp.org

Octave · an anonymous user
39 minutes ago
"kingarthurthe1stoforkneypaidjustnowforlifetimeownershippaidto:godaddy.com::forthisdomain:gopollyp.org= pi:88777.77666EE760.18:pi;"

mm2

Lua · an anonymous user
40 minutes ago
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "MM2 script", Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to use no icon (def

Cpp

C++ · an anonymous user
45 minutes ago
#include <iostream> int main() { std::cout << "httpyoutu.be1234.co.ukfb.co.ukwww.facebook.comwww.google.co.ukandroid.orgapple.co.uk mtv.com godaddy.com firmware cardandprofileandhistorydatabasesuperadminforhttp!" << std::endl; return 0; }

C++

C++ · an anonymous user
48 minutes ago
#include<iostream> using namespace std; // these are comments! int main() { float P , R , T ; cout<<"Enter Principle= "<<endl ; cin>>P ;

Apprentissage

C · an anonymous user
51 minutes ago
#include <stdio.h> int main() { printf ("hier j’ai réussi le message de ma fameuse fille\n deuxième option 😅\n"); int age = 21; printf("%d ans. " ,age); printf("elle s’appelle\n"); char prenom[] = "Vicory"; printf("%s", prenom); return 0 ; }

Training

MySQL · an anonymous user
51 minutes ago
CREATE DATABASE users ;

TP Langage C

C · an anonymous user
54 minutes ago
#include <stdio.h> #include "point.h" int main() { printf("Hello world!\n"); struct Point a; a.x = 3.0; a.y = 5.0;

Hex Hub v1.1

Lua · an anonymous user
56 minutes ago
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "Sex Hub v1.1", LoadingTitle = "Sex Hub v1.1", LoadingSubtitle = "by hex", ConfigurationSaving = { Enabled =

spherical coordinate

Octave · an anonymous user
58 minutes ago
clc; clear; close all; %% Point A - Spherical Coordinate System rA = 7; thetaA = 40; phiA = 30; thetaA = deg2rad(thetaA);

Python · an anonymous user
58 minutes ago
print('Hello world!') import struct import base64 class SimpleMIDIWriter: def __init__(self, bpm=160, ticks_per_beat=480): self.bpm = bpm self.ticks = ticks_per_beat self.tracks = []