Recent projects

task2

Octave · an anonymous user
21 hours ago
clc; clear; close all; bit_stream = [0 1 1 0 0 0 0 1 0 1 1 1]; no_bits = length(bit_stream); bit_rate = 2000; % 2 kbps samples_per_bit = 500; samples_half = samples_per_bit/2;

buck sort 5-7-26b

C · an anonymous user
22 hours ago
//========================================= //buck sort 5~4-7-26b 1v tested works //========================================= // //---------------------------------------- #include <stdio.h> #include <string.h> #include <ctype.h> //-----------------

mohasebat

R · an anonymous user
22 hours ago
beta0 = 0.57 beta1 = 5 n = 50 x1 = rnorm(n,2.45,1.85) epsilon = rnorm(n,mean = 0, sd=sqrt(1.64)) y = beta0 + beta1*x1+ epsilon data = data.frame(x1,y) head(data)

task 1

Octave · an anonymous user
22 hours ago
clc; clear; close all; % 12-bit stream from ID 23-51617-2 % E = 6 -> 0110 % F = 1 -> 0001 % G = 7 -> 0111 bit_stream = [0 1 1 0 0 0 0 1 0 1 1 1];

index.html

Python · an anonymous user
22 hours ago
print('Hello world!')<!DOCTYPE html> <html lang="pl"> <head> <meta charset="UTF-8"> <title>Mini City Drive</title> <style> body{ margin:0; overflow:hidden; background:#3fa34d;

test

Lua · an anonymous user
22 hours ago
print 'hello world!' local name = "小白" local age = 18 local flag = true local empty = nil print(type(name), type(age), type(empty))

Nauka funkcje Def name

Python · an anonymous user
22 hours ago
def domyslna(): #tworzenie funkcji poprzez def nazwa() print("Cialo funkcji main") if __name__=='__main__': domyslna() #zapisuje jako calosc i wywoluje

Nauka funkcje Def name

Python · an anonymous user
22 hours ago
def domyslna(): #tworzenie funkcji poprzez def nazwa() print("Cialo funkcji main") if __name__=='__main__': domyslna() #zapisuje jako calosc i wywoluje

odd and even signals

Octave · plumberry
22 hours ago
clc; clear; close all; n = -10:.5:10; x = n.^2; % example signal — try changing this x_reversed = fliplr(x); % this represents x(-t) since t is symmetric about 0 if isequal(x, x_reversed)

ROBLOX

Lua · an anonymous user
22 hours ago
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "Canopy Engine / Speed Clicker", Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0

ROBLOX

Lua · an anonymous user
22 hours ago
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "Canopy Engine / Speed Clicker", Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0

تمرین اول محاسبات

R · an anonymous user
22 hours ago
beta0 = 0.57 beta1 = 5 n = 50 x1 = rnorm(n,2.45,1.85) epsilon = rnorm(n,mean = 0, sd=sqrt(1.64)) y = beta0 + beta1*x1+ epsilon

buck sort 5~4-7-26b

C · an anonymous user
22 hours ago
//========================================= //buck sort 5~4-7-26a 1v tested works //========================================= // //---------------------------------------- #include <stdio.h> #include <string.h> #include <ctype.h> //-----------------

buck sort 5~4-7-26a

C · an anonymous user
22 hours ago
//========================================= //buck sort 5~4-7-26a 1v tested works //========================================= // //---------------------------------------- #include <stdio.h> #include <string.h> #include <ctype.h> //-----------------

A

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

strlen

C · kaano3bai
22 hours ago
#include <stdio.h> size_t mystrlen(const char* a){ size_t i=0; while(a[i]!='\0'){ i++; } return i; } int main(){ char a[1001];

tortas

Python · an anonymous user
22 hours ago
import matplotlib matplotlib.use('Agg') # Backend sin interfaz gráfica, para entornos web import matplotlib.pyplot as plt # Datos de las preguntas data = [ {"title": "1. ¿Te gusta el mango?", "values": [83, 7], "labels": ["Sí", "No"], "colors

Flatten_arr

NodeJS · chandan1826
22 hours ago
const arr = [1, [2, [3, 4]], 5]; function flattenArr(arr){ let fArr = []; for(const a of arr){ if(Array.isArray(a)){ fArr = fArr.concat(flattenArr(a)) } else{ fArr.push(a);

buck sort 5~4-7-26a

C · an anonymous user
22 hours ago
//========================================= //buck sort 5~4-7-26a 1v tested works //========================================= // //---------------------------------------- #include <stdio.h> #include <string.h> #include <ctype.h> //-----------------

:D 행복한 뭐뭐(<-뭐뭐는, 그냥 쓸게 없어서) 되세요! 아하ㅏㅏㅏ

C++ · AMY_KANG
22 hours ago
#include <iostream> #include <vector> #include <string> using namespace std; int main() { string s; cin>>s; vector<string>s1={'T','E','A','K','C','R'}; vector<string>s2={'1','00','0010','0110','1010','1110'};