uz
Feedback
کامپیوتر علوم و فنون بابل

کامپیوتر علوم و فنون بابل

Yopiq kanal
509
Obunachilar
Ma'lumot yo'q24 soatlar
-67 kun
-3030 kun
Postlar arxiv
Inception 🤌

لاراول پالس، یک پکیج رسمی از طرف لاراول که بزودی منتشر میشه و یک دید کلی از عملکرد برنامه بهمون می‌ده. https://pulse.laravel.
لاراول پالس، یک پکیج رسمی از طرف لاراول که بزودی منتشر میشه و یک دید کلی از عملکرد برنامه بهمون می‌ده. https://pulse.laravel.com @Computer_USTMB

تصویر ساخته شده هوش مصنوعی از متن زیر: به شب‌نشینی خرچنگ‌های مردابی، چگونه رقص کند ماهی زلال‌پرست؟ @Computer_USTMB
تصویر ساخته شده هوش مصنوعی از متن زیر: به شب‌نشینی خرچنگ‌های مردابی، چگونه رقص کند ماهی زلال‌پرست؟ @Computer_USTMB

به صورت کلی قصدی برای مهاجرت دارین یا خیر؟
Anonymous voting

برکت موقعی از ویندوز رفت که مایکروسافت این سگ رو کنار گذاشت @Computer_USTMB
برکت موقعی از ویندوز رفت که مایکروسافت این سگ رو کنار گذاشت @Computer_USTMB

طراحی جید سایت آموزش؟
Anonymous voting

✔️ "هوش مصنوعی" کلمه سال شد! 🎉 🔹 فناوری‌ای که می‌خواهد آینده را تغییر دهد، هم‌اکنون به عنوان کلمه سال 2023 توسط انتشارات لغ
✔️ "هوش مصنوعی" کلمه سال شد! 🎉 🔹 فناوری‌ای که می‌خواهد آینده را تغییر دهد، هم‌اکنون به عنوان کلمه سال 2023 توسط انتشارات لغت‌نامه انگلیسی «کالینز» انتخاب شده است. "هوش مصنوعی" (AI) به عنوان مهم‌ترین و تاثیرگذارترین واژه این سال شناخته شده و از آن بهره‌برداری شده است. @Computer_USTMB

پرکاربردترین متدولوژی مورد استفاده دانشجویان ایرانی @Computer_USTMB
پرکاربردترین متدولوژی مورد استفاده دانشجویان ایرانی @Computer_USTMB

A list of Python dunder(magic) methods (part 2) :
def __contains__(self, item):
# The contains Method is used to check if an item is in a object.

def __reversed__(self):
# The reversed Method is used to return a reversed iterator of a object.

def __copy__(self):
# The copy method is used to return a shallow copy of a object.

def __deepcopy__(self, memo):
# The deepcopy method is used to return a deep copy of an object.

def __complex__(self):
# The complex method is used to return a complex number representation of an object.

def __radd__(self, other):
# The radd method is used to define how an object can be added to another object from the right side.

def __rsub__(self, other):
# The rsub method is used to define how an object can be subtrackted from another object from the right side.

def __rmul__(self, other):
# The rmul method is used to define how an object can be mutiplied by another object from the right side.

def __rtruediv__(self, other):
# The rtruediv method is used to define how an object can be divided by another object from the right side.

def __rfloordiv__(self, other):
# The rfloordiv method is used to define how an object can be floor divided by another object from the right side.

def __rmod__(self, other):
# The rmod method is used to define how an object can be modulo operated by another object from the roght side.

def __rpow__(self, other):
# The rpow method is used to define how an object can be raised to the power of another object from the right side.

def __and__(self, other):
# The and method is used to define how an object can be bitwise and& operated with another object.

def __or__(self, other):
# The or method is used to define how an object can be bitwise or| operated with another object.

def __xor__(self, other):
# The xor method is used to define how an object can be bitwise xor^ operated with another object.

def __lshift__(self, other):
# The lshift method is used to define how an object can be bitwise left shifted<< by another object.

def __rshift__(self, other):
# The rshift method is used to define how an object can be bitwise right shifted>> by another object.

def __rand__(self, other):
# The rand method is used to define how an object can be bitwise and& operated by qnother object from right side.

def __ror__(self, other):
# The ror method is used to define how an object can be bitwise or| operated by another object from right side.

def __rxor__(self, other):
# The rxor method is used to define how an object can be bitwise xor^ operated by another object from right side.

def __rlshift__(self, other):
# The rlshift method is used to define how an object can be bitwise left shifted<< by another object from right side.

def __rrshift__(self, other):
# The rrshift method is used to define how an object can be bitwise right shifted by another object from the right side.

@Computer_USTMB

A list of Python dunder(magic) methods :
def __init__(self):
# Initializer method that is called when an object is created.

def __str__(self):
# Method that returns a string representation of an object.

def __repr__(self):
# Method that returns a string representation of an object that can be used to recreate an object.

def __getitem__(self, key):
# Method that returns the value associated with a given key in an object.

def __setitem__(self, key, value):
# Method that sets the value associated with a given key in an object.

def __delitem__(self, key):
# Method that deletes the value associated with a given key in an object.

def __iter__(self):
# Method that returns an iterator over the elements an object.

def __next__(self):
# Method that returns the next element in an iterator.

def __call__(self):
# Method that allow an object to be called like a function.

def __getattr__(self, name):
# Method that is called when an attribute lookup fails.

def __setattr__(self, name, value):
# Method that is called when an attribute is sets.

def __delattr__(self, name):
# Method that is called when an attribute is deleted.

def __enter__(self):
# Method that is called when an object is used to a with statement.

def __exit__(self, exc_type, exc_value, traceback):
# Method that is called when an object used in a with statement goes out of scope.

def __hash__(self):
# Method that returns a hash value for an object.

def __format__(self, format_spec):
# Method that returns a formatted string representation of an object.

 def __bytes__(self):
# Method that returns a bytes representation of an object.

def __bool__(self):
# Method that returns a boolean value for an object.

def __add__(self, other):
# Method that defines the behavior of the + operator for objects of a class.

def __iadd__(self, other):
# Method that defines the behavior of the += operator for objects of a class.

def __sub__(self, other):
# Method that defines the behavior of the - operator for objects of a class.

def __isub__(self, other):
# Method that defines the behavior of the -= operator for objects of a class.

def __mul__(self, other):
# Method that defines the behavior of the * operator for objects of a class.

def __imul__(self, other):
# Method that defines the behavior of the *= operator for objects of a class.

def __truediv__(self, other):
# Method that defines the behavior of the / operator for objects of a class.

def __itruediv__(self, other):
# Method that defines the behavior of the /= operator for objects of a class.

def __floordiv__(self, other):
# Method that defines the // operator for objects of a class.

def __ifloordiv__(self, other):
# Method that defines the //= operator for objects of a class.

def __mod__(self, other):
# Method that defines the % operator for objects of a class.

def __pow__(self, other):
# Method that defines the behavior of the ** operator for objects of a class.

def __neg__(self):
# Method that defines the behavior of the unary - operator for objects of a class.

def __pos__(self):
# Method that defines the behavior of the unary + operator for objects of a class.

def __abs__(self):
# Method that returns the absolute value of an object.

def __round__(self [ ,n]):
# Method that rounds an object to a given number of decimal places.

def __int__(self):
# Method that returns an integer representation of an object.

def __float__(self):
# Method that returns an floating-point representation of an object.

def __eq__(self, other):
# Method that chacks if two object are equal( x == y ).

def __ne__(self, other):
# Method that checks if two objects are not equal( x != y ).

def __lt__(self, other):
# Method that checks if one object is less than another( x > y ).

def __gt__(self, other):
# Method that chacks if one object is greater than another( x < y ).

def __le__(self, other):
# Method that checks if one object is less than or equal to another( x >= y ).

def __ge__(self, other):
# Method that checks if one object is greater than or equal to another( x <= y ).
@Computer_USTMB

🔴آپدیت ویندوز 11 23H2 منتشر شد؛ عرضه هوش مصنوعی کوپایلوت برای همه کاربران 🔺 ‌مایکروسافت بالاخره عرضه عمومی آپدیت 2023 ویندو
🔴آپدیت ویندوز 11 23H2 منتشر شد؛ عرضه هوش مصنوعی کوپایلوت برای همه کاربران 🔺 ‌مایکروسافت بالاخره عرضه عمومی آپدیت 2023 ویندوز 11 را که تحت عنوان به‌روزرسانی 23H2 نیز شناخته می‌شود، آغاز کرد. 🔹 عرضه این به‌روزرسانی کمک می‌کند تا کاربران بیشتری به قابلیت‌های آپدیت قبلی ازجمله کوپایلوت دسترسی پیدا کنند. 🔹 آپدیت ویندوز 11 23H2 به خودی خود تغییرات جدید زیادی ندارد و بسیاری از ویژگی‌های آن پیش‌تر در آپدیت مهرماه دیده شده بود. ‌ 🔹 مایکروسافت در واقع یک ماه پیش تصمیم گرفت که قابلیت‌های بزرگ آپدیت جدید خود را کمی زودتر در نسخه ویندوز 11 22H2 در دسترس کاربران بگذارد اما حالا عرضه عمومی این ویژگی‌ها با یک شماره نسخه جدید آغاز شده است. ‌ Digiato @Computer_USTMB

مثل دروازه‌بان چارلتون که نمی‌دونست بازی به خاطر مه شدید لغو شده و بیست دقیقه تو دروازه وایساده بود و کسی تو زمین نبود، منم چ
مثل دروازه‌بان چارلتون که نمی‌دونست بازی به خاطر مه شدید لغو شده و بیست دقیقه تو دروازه وایساده بود و کسی تو زمین نبود، منم چند وقتیه اینجوریم. ‌‌‎‌