Get Mystery Box with random crypto!

WeeB.Dev 🔰

Telegram kanalining logotibi weebuz — WeeB.Dev 🔰 W
Telegram kanalining logotibi weebuz — WeeB.Dev 🔰
Kanal manzili: @weebuz
Toifalar: Bloglar
Til: Oʻzbek tili
Obunachilar: 116
Kanalning ta’rifi

New Business Company©
--------------------------------------------------
Universal WeeB DevolopmeNT↩️
---------------------------------------------------
🤖Botimiz: @WeebMurojaat_bot
——————————————————-
🌐 Saytimiz: http://weebuz.netlify.app

Ratings & Reviews

2.67

3 reviews

Reviews can be left only by registered users. All reviews are moderated by admins.

5 stars

0

4 stars

1

3 stars

1

2 stars

0

1 stars

1


Oxirgi xabar

2023-01-07 09:38:44
Python'da matematik funksiyalardan foydalanish

Python'da math moduli orqali bir nechta matematik funksiyalardan foydalanish ko'rib chiqamiz.

Ba'zi funksiyalardan math modulisiz foydalanish mumkin ammo trigonometrik va koddagi 3 ta funksiya har doim math bilan ishlatiladi.

• sqrt — Sonning ildizi
• ceil — Sonni yuqoriga yaxlitlaydi
• trunc — Sonning butun qismini qaytaradi
• sin — Sonning sinusi
• cos — Sonning kosinusi
• tan — Sonning tangensi

Kanalimizga a'zo bo'lishni unutmang
@WeeBUz
14 views🅆🄴🄴🄱.🄳🄴🅅, 06:38
Ochish/sharhlash
2023-01-07 08:43:41 # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # Dinis Marques # # Snake Python # # # # # # # # # # # # # # # # # # # # # # # # # # #…
12 views🅆🄴🄴🄱.🄳🄴🅅, 05:43
Ochish/sharhlash
2023-01-07 08:43:32 # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# Dinis Marques #
# Snake Python #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
import turtle
import random

#head orientation
h = [0]

#score
a = [0]
b = [0]

#food coord
fcoord = [0,0,0]

#position
pos = []


def home(x,y):
x = 0
y = 0
a[0] = 0
b[0] = 0
h[0] = 0
fcoord[2] = 0
pos[:] = []
turtle.hideturtle()
turtle.clear()
turtle.pu()
turtle.color("black")
turtle.goto(0,0)
turtle.write("Play")
turtle.title("Snake")
turtle.onscreenclick(start)
turtle.mainloop()

def level_1():
turtle.clear()
turtle.pu()
turtle.speed(0)
turtle.pensize(20)
turtle.color("grey")
turtle.goto(-220,220)
turtle.pd()
turtle.goto(220,220)
turtle.goto(220,-220)
turtle.goto(-220,-220)
turtle.goto(-220,220)
turtle.pu()
turtle.goto(0,0)

def start(x,y):
turtle.onscreenclick(None)

level_1()

tfood = turtle.Turtle()
tfood.hideturtle()
tfood.pu()
tfood.speed(0)
tfood.shape("square")
tfood.color("red")

tscore = turtle.Turtle()
tscore.hideturtle()
tscore.pu()
tscore.speed(0)
tscore.goto(100,-250)
tscore.write("Score:" + str(a[0]), align="center",font=(10))

while x > -210 and x < 210 and y > -210 and y <210:
if fcoord[2] == 0:
food(tfood)
fcoord[2] = 1
turtle.onkey(u,"Up")
turtle.onkey(l,"Left")
turtle.onkey(r,"Right")
turtle.onkey(d,"Down")
turtle.listen()
move()
x = turtle.xcor()
y = turtle.ycor()
if x > fcoord[0]*20-5 and x < fcoord[0]*20+5 and y > fcoord[1]*20-5 and y < fcoord[1]*20+5:
fcoord[2] = 0
tfood.clear()
a[0] += 1
tscore.clear()
tscore.write("Score:" + str(a[0]), align="center",font=(10))

if len(pos) > 1:
for i in range(1,len(pos)):
if x < pos[i][0]+5 and x > pos[i][0]-5 and y < pos[i][1]+5 and y > pos[i][1]-5:
tscore.clear()
tfood.clear()
gameover()
tscore.clear()
tfood.clear()
gameover()


#Food
def food(tfood):
x = random.randrange(-8,8,1)
y = random.randrange(-8,8,1)
fcoord[0] = x
fcoord[1] = y
tfood.hideturtle()
tfood.pu()
tfood.shape("square")
tfood.color("red")
tfood.goto(x*20,y*20)
tfood.stamp()

#Up
def u():
if h[0] == 270:
pass
else:
h[0] = 90
#Down
def d():
if h[0] == 90:
pass
else:
h[0] = 270
#Left
def l():
if h[0] == 0:
pass
else:
h[0] = 180
#Right
def r():
if h[0] == 180:
pass
else:
h[0] = 0

def move():
turtle.pensize(1)
turtle.color("black")
turtle.pu()
turtle.speed(3)
turtle.setheading(h[0])
turtle.shape("square")
turtle.stamp()
turtle.fd(20)
x = turtle.xcor()
y = turtle.ycor()
if b[0] > a[0]:
turtle.clearstamps(1)
pos.insert(0,[round(x),round(y)])
pos.pop(-1)
else:
pos.insert(0,[round(x),round(y)])
b[0] += 1

def gameover():
turtle.onscreenclick(None)
turtle.speed(0)
turtle.pu()
turtle.goto(0,150)
turtle.color("red")
turtle.write("Game Over",align="center", font=(10))
turtle.goto(0,50)
turtle.write("Score:" + str(a[0]),align="center",font=(10))
turtle.goto(200,-200)
turtle.write("(Click anywhere to return to the main menu)",align="right",font=(0.0000001))
turtle.onscreenclick(home)
turtle.mainloop()


# # # # # # # # # # # # # # # # # # # # # #
# Main #
# # # # # # # # # # # # # # # # # # # # # #
if __name__ == '__main__':
home(0,0)
9 views🅆🄴🄴🄱.🄳🄴🅅, edited  05:43
Ochish/sharhlash
2023-01-05 07:21:12 Full-stack dasturchi bo'lmoqchimisiz

Bilamiz, biron bir sayt yoki dasturni tashqi yani bizga ko'rinib turadigan dizayn qismi Frontend - deb ataladi

Bizga ko'rinmaydigan orqa qismida murakkab algoritimlar orqali turli xil amallarni bajaradigan qismini Backend - dep ataladi

Hoʻsh qaysi yo'nalishda dasturchi boʻlish kerak

Koʻp ustozlarimiz tavsiya qilishadi bitta yoʻnalishni tanlab shu sohada dasturchi boʻlishni.

Sababi ikkalasini oʻrganishga 1 yil kamlik qilinishi mumkin va qiyinchilik tug'diradi

Full-stack - bu ikkala yoʻnalishdan ham xabari bor dasturchi. Agar siz shu sohada dasturchi boʻlmoqchi boʻlsangiz bir yoʻnalishni toʻliq oʻrganib keyin ikkinchisiga oʻtishingiz kerak

Web yoʻnalishiga qiziqsangiz va turli xil Hackerlik hujumlar haqida maʼlumotga ega boʻlmoqchi boʻlsangiz shu instagram sahifaga obuna boʻling

Full-stack instagram

@WeeBUz
12 views🅆🄴🄴🄱.🄳🄴🅅, 04:21
Ochish/sharhlash
2022-12-26 19:31:04
DarkNet tarmog‘ida 400 million Twitter foydalanuvchisining ma’lumotlari sotilgan.

Twitter tarixidagi eng yirik xavfsizlik buzilishlaridan birida ushbu ijtimoiy tarmoqning 400 million foydalanuvchisi haqidagi ma’lumotlar DarkNet'da sotuvga qo‘yildi.

Buzilish haqidagi xabar kecha Irlandiya ma’lumotlarini himoya qilish komissiyasi platformadagi so‘nggi ma’lumotlar buzilishi bo‘yicha tergov boshlaganini e’lon qilgan bir vaqtda keldi.

Misol uchun, xakerlar Ethereum asoschisi va Tramp kabi 1000 ta taniqli akkauntlardan ma’lumot almashishdi.

Oxirgi marta xakerlar 5,4 milliondan ortiq Twitter foydalanuvchisiga ma’lumotni 30 ming dollarga sotishgan.  Ushbu ma’lumotlarga ID, ism, login, manzil, elektron pochta manzili va telefon raqami kiradi.

@WeeBUz kanaliga obuna bo'ling!
45 views🅆🄴🄴🄱.🄳🄴🅅, 16:31
Ochish/sharhlash
2022-12-19 05:58:45 https://t.me/LineReferral_bot?start=1940578600
84 views...., 02:58
Ochish/sharhlash
2022-12-18 15:22:37
Ingliz tili yetarlimasda...
85 views...., 12:22
Ochish/sharhlash
2022-12-02 20:27:34
#instagram new post:
https://www.instagram.com/reel/Clpnr4AIkOs/?igshid=YmMyMTA2M2Y=
Link: @weebuz
70 views...., 17:27
Ochish/sharhlash
2022-12-01 05:54:24 Creative Button Effect
-----------------------------------
Link: @weeb.dev
----------------------------------

Tags: #coding #it #html #js #webdesign #webdeveloper #dev #devs #api #python #c++ #c #hacking #rels #trend #lifecoding #java #button #effect #respect #allah
https://www.instagram.com/reel/Clm-TwfotsC/?igshid=MDJmNzVkMjY=
51 views...., 02:54
Ochish/sharhlash
2022-11-30 19:52:30
Creative Button Effect
-----------------------------------
https://instagram.com/weeb.dev
https://github.com/weebhacker
......................................
Link: @weebuz
46 views...., 16:52
Ochish/sharhlash