CreativewiZ
418 subscribers
32 photos
31 videos
25 files
82 links
Download Telegram
CreativewiZ
Smiley :) Animation
Mathematical Logic Behind it.😊
😱4πŸ”₯2
This media is not supported in your browser
VIEW IN TELEGRAM
Hey Guys Finally We Reach 20K Subscriber on Our Youtube Channel. I Created a Small Code to celebrate this moment. Source Code will be shared Soon.
πŸ‘4
# Test_your_skill : Fix the error(s)

first_number = int(input()
operator = input()
second_number = int(input())

def Calculate(val1, operator, val2):
print(
f"{val1} {operator} {val2} ="+
val1 + val2 if operator == '+'
else val1 - val2 if operator == '-'
else val1 * val2 if operator == '*'
else val1 / val2 if operator == '/'
else val1 % val2 if operator == '%'
else if math_error
)

print(
Calculate(first_number, operator, second_numer)
)
πŸ‘5
// Language: JavaScript
// Task Description: Fix the error to reassign all the object values to 10.

const ob = {
key1: 'val1',
key2: 'val2',
key3: 'val3'
};

for (let [key, val] of Object.entries(ob)) {
val = 10;
}
πŸ‘1
def calculate(a, b=5, c=10):
return a + b * c
result = calculate(2, c=20) print(result)
Anonymous Quiz
18%
50
30%
202
41%
102
11%
52
πŸ”₯1
What will be the output?

console.log(!false == !'false');
Anonymous Quiz
30%
true
35%
false
15%
undefined
20%
SyntaxError
😱1
πŸ‘1
πŸ‘1
lv_0_20240728191926.mp4
9.5 MB
πŸ‘1
Matrix Rain Code.zip
6.3 KB
πŸ‘2
Media is too big
VIEW IN TELEGRAM
No two galaxy collisions are alike. This one has only 1 million stars but it’s just spectacular. Check out how fast that black hole is expelled from the resulting debris, and how it perturbs the stars on its way out. Can you spot it? ~= I guess I put too much dark matter in this one πŸ˜‚

Two galaxies and their supermassive black holes are orbiting each other as they succumb to the relentless pull of their mutual gravity. Inevitably, they will collide with fearsome violence and create a spectacular maelstrom of stars.

Programmed in C++ with OpenCV and CUDA. Although each point in this animation is moving according to Newton’s Law of Gravitation, it is not a scientifically accue simulation, and was created for its visuals. It took approximately 2h to simulate and render on an RTX4060ti GPU.
πŸ‘2