1. Use incomprehensible names of variables
Call variables X, Y, A, Thing. Abstraction is the key to confusion
def f(x, y, z=None):
a = x * 2
b = y + a if z else y - a
c = [i for i in range(a) if i % 2]
return sum(c) + b
2. Sake maximum logic in one line
Complex thornar expressions and nested List CompreHance - all in one line.
result = [x if x > 0 else (y if y < 0 else z) for x in data if x or y and not z]
3. Use Eval () and Exec ()
It is slow, unsafe and stupid - but spectacular.
eval("d['" + key + "']")
4. Reprint variables with different types
Let one variable be a line, and a number, and a list - a dynamic typification
value = "42"
value = int(value)
value = [value] * value
5. Use global variables
Change the condition of the application from anywhere. Especially from the inside of the functions.
counter = 0
def increment():
global counter
counter += 1
6. Use magic numbers and lines
Without explanation. Let colleagues guess why exactly 42 or "XYZ"
if user.role == "xyz" and user.level > 42:
access_granted()
7. Ignore style and indentation
No PEP8, no rules. Write as you want
def foo():print("start")
if True:
print("yes")
else:
print("no")
8. Copy the code from Stack Overflow without delving
Ctrl+C is also a development
def complex_logic(x):
return (lambda y: (lambda z: z**2)(y + 1))(x)
9. Invent abstraction unnecessary
Instead of a simple function - classes, factories and strategies
class HandlerFactory:
def get_handler(self):
class Handler:
def handle(self, x): return x
return Handler()
10. Add dead code
Never remove - suddenly comes in handy. And let it be loaded into every launch
def legacy_feature():
print("This feature is deprecated")
return
# нигде не вызывается
11. Do not write the documentation
Comments only interfere. Whoever wants to figure it out
def a(x): return x+1
#پایتون #Python
Please open Telegram to view this post
VIEW IN TELEGRAM
👍3❤1🫡1
Gremllm is an unusual Python class in which all methods and properties are created dynamically using LLM. You describe, *what kind of object do you want *, and then Gremllm decides what should happen when the methods are called or the fields are addressed.
pip install gremllm
🔧 Example:
from gremllm import Gremllm
counter = Gremllm('counter')
counter.value = 5
counter.increment()
print(counter.value) # → 6?
print(counter.to_roman_numerals()) # → VI?
- dynamic behavior: everything is determined "on the fly" using LLM
- Support Openai, Claude, Gemini, and local models
- Wet Mode: You can build challenges of calls (methods return objects)
- Verbose Mode: Bodes which code was generated
- smart processing of errors and setting through inheritance
#پایتون #Python
Please open Telegram to view this post
VIEW IN TELEGRAM
❤3
سباستین راشکا، محقق برجسته هوش مصنوعی با بیش از یک دهه تجربه در این لینک مفاهیم اصلی PyTorch را در فقط یک ساعت آموزش می دهد
این محتوا بر اساس کتاب او با عنوان
Build a Large Language Model (From Scratch)
است که به دلیل رویکرد عملی و کدمحور در توسعه مدلهای زبانی بزرگ مورد تحسین قرار گرفته
#پایتون #Python
Please open Telegram to view this post
VIEW IN TELEGRAM
https://www.kaggle.com/learn/python
https://www.kaggle.com/learn/pandas
https://www.kaggle.com/learn/data-visualization
https://www.kaggle.com/learn/intro-to-sql
https://www.kaggle.com/learn/advanced-sql
https://www.kaggle.com/learn/intro-to-machine-learning
https://www.kaggle.com/learn/intermediate-machine-learning
#پایتون #Python #علم_داده #یادگیری_ماشین
Please open Telegram to view this post
VIEW IN TELEGRAM
👍5
Media is too big
VIEW IN TELEGRAM
#پایتون #Python #یادگیری_ماشین
Please open Telegram to view this post
VIEW IN TELEGRAM
Forwarded from تهران دیتا-دانشگاه تهران
🔥 علم داده و هوش مصنوعی رو از بهترینها یاد بگیر✅
از مقدمات تا تسلط کامل | پروژهمحور | عملی | همراه با منتورینگ
اعتبار دانشگاه تهران
https://tehrandata.org/courses/datascience/
09377516759
09357516755
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
❤3
Forwarded from FaraDars_Course
🔥 فرصت محدود — ۷۰۰ آموزش منتخب در فرادرس، فقط ۸۹ هزار تومن 🔥
😉 برای یادگیری هیچ وقت دیر نیست؛ حتما به کارِت میاد 👇
◽️ یادگیری ماشین و پیاده سازی در پایتون
◽️ چت با هوش مصنوعی ChatGPT و جمینای
◽️ شناخت انواع هک و روش های مقابله با آن
◽️ ویندوز Windows 11 – جامع و کاربردی
◽️ طراحی لوگو با ایلوستریتور Illustrator
📚 لیست تمامی ۷۰۰ آموزش - [کلیک کنید]
🎁 سایر آموزشها هم ۵۰ درصد تخفیف دارن...
🔄 FaraDars - فرادرس
😉 برای یادگیری هیچ وقت دیر نیست؛ حتما به کارِت میاد 👇
◽️ یادگیری ماشین و پیاده سازی در پایتون
◽️ چت با هوش مصنوعی ChatGPT و جمینای
◽️ شناخت انواع هک و روش های مقابله با آن
◽️ ویندوز Windows 11 – جامع و کاربردی
◽️ طراحی لوگو با ایلوستریتور Illustrator
📚 لیست تمامی ۷۰۰ آموزش - [کلیک کنید]
🎁 سایر آموزشها هم ۵۰ درصد تخفیف دارن...
🔄 FaraDars - فرادرس
صدها الگوریتم محبوب پیاده سازی شده در پایتون از ابتدا.
https://github.com/TheAlgorithms/Python/tree/master
#پایتون #Python
Please open Telegram to view this post
VIEW IN TELEGRAM
❤1
#پایتون #Python
Please open Telegram to view this post
VIEW IN TELEGRAM
❤2👏1🙏1🫡1
Forwarded from تهران دیتا-دانشگاه تهران
دوره تحلیل دادههای کسبوکار و آمادگی آزمون IIBA®-CBDA
یعنی:
#تحلیل_داده #داده_محور #کسب_و_کار #دیتاساینس #علم_داده
Please open Telegram to view this post
VIEW IN TELEGRAM
Forwarded from کانال تبادلات پر جذب آرمیس
✅ لیستی از بهترین کانال های فعال تلگرامی : @Armisstab
〰️〰️〰️〰️〰️〰️〰️
⛳️برنامه نویسی و طراحی سایت
@Computer_IT_Engineering
@PythonForever
@AmoozeshWebsite
@Android0to100
@programmers_street
@Python4all_pro
@htmlcss_channels
@programmer_best
@hivaweb
〰️〰️〰️〰️〰️〰️〰️
⛳️آموزش فتوشاپ
@ipschannel
@VoxelLearn
@hashtagifyofficial
〰️〰️〰️〰️〰️〰️〰️
⛳️هک و امنیت
@hivashabake
@EngineeringReverse
@AMIRIHACK
@code_hacks85
@Hackers_Victor85
@Error_hack_31
〰️〰️〰️〰️〰️〰️〰️
⛳️کاریابی و استخدام
@prozhebegir_ir
〰️〰️〰️〰️〰️〰️〰️
⛳️پکیج و دوره رایگان
@PUBPLUSX
@PACKPUBLICX
@PARSPUBLIC
@wolfofws
@wolfofwsfile
〰️〰️〰️〰️〰️〰️〰️
⛳️فناوری و تکنولوژی
@clipbargh
〰️〰️〰️〰️〰️〰️〰️
⛳️هوش مصنوعی
@Max_academy
@pajoohehgroup
@homeai
〰️〰️〰️〰️〰️〰️〰️
⛳️پروکسی و کانفینگ
@FreeFilter1
@Proxysarver
@SourceFreeFilter
〰️〰️〰️〰️〰️〰️〰️
⛳️زبان خارجه و مهاجرت
@WritingandGrammar
@PTEnglishtest1
@Eng_Online
@usuk1
@Ellipsis50
@VR_LEARNING_ENGLISH2
@WritingandGrammar1
@EN_4_KIDS
@VR_LEARNING_ENGLISH
@BR_PODCAST
@En_tour
@EN_Listenings
@VR_ENGLISH_TEXT
@EN_Videos
@anime4english
@alllanguagescartoons
@EnglishListeningPractice1
@tactics4listening123
@learningenglishidiom
@collocationsin10m
@bestidioms4you
@en_quizztour
@movies4english
〰️〰️〰️〰️〰️〰️〰️
⛳️برق و مکانیک
@mech_engineering
@CAD_3D
@electronicghodrat
@M_E_TUTORIAL
@electricalnew
@engineersbargh
@automatsin
@proje_bargh
@electrical_new
@margarinepower
@electric_ir
@barghtamasha
@smartelectric
〰️〰️〰️〰️〰️〰️〰️
⛳️دانشجویی و دانشگاهی
@cofeeng
@jozve_finder
@BANK_KEETAB
@tephd5
@MOHANDESYAR
@Twitterjo
@twitterjoo
@tephd6
@PersianChemist
@tekhob
@Ketab_University
@journalacademic
@cafejoo
@tarjjommee
@mppphd
@med_article
@powerpointyar
@akhtar_electronic_group
@payan_name9606
@hamyarjozve
@daneshgram
〰️〰️〰️〰️〰️〰️〰️
⛳️موبایل و کامپیوتر
@Pc_IT_Mob
@Apkgold
@Android_best
@repairms
@asrehshabakeh1
〰️〰️〰️〰️〰️〰️〰️
معماری و عمران
@Voxel3DVray
@httpsart_creativity
@tarrahimemari
@Design_groooup
@Voxel3DDVray
@VoxelObjectRevit
〰️〰️〰️〰️〰️〰️〰️
🔑 دانلود فایل های PSD فتوشاپ
📍 https://www.tgoop.com/+Einv7PqJ1KI0MTM0
〰️〰️〰️〰️〰️〰️〰️
.
〰️〰️〰️〰️〰️〰️〰️
⛳️برنامه نویسی و طراحی سایت
@Computer_IT_Engineering
@PythonForever
@AmoozeshWebsite
@Android0to100
@programmers_street
@Python4all_pro
@htmlcss_channels
@programmer_best
@hivaweb
〰️〰️〰️〰️〰️〰️〰️
⛳️آموزش فتوشاپ
@ipschannel
@VoxelLearn
@hashtagifyofficial
〰️〰️〰️〰️〰️〰️〰️
⛳️هک و امنیت
@hivashabake
@EngineeringReverse
@AMIRIHACK
@code_hacks85
@Hackers_Victor85
@Error_hack_31
〰️〰️〰️〰️〰️〰️〰️
⛳️کاریابی و استخدام
@prozhebegir_ir
〰️〰️〰️〰️〰️〰️〰️
⛳️پکیج و دوره رایگان
@PUBPLUSX
@PACKPUBLICX
@PARSPUBLIC
@wolfofws
@wolfofwsfile
〰️〰️〰️〰️〰️〰️〰️
⛳️فناوری و تکنولوژی
@clipbargh
〰️〰️〰️〰️〰️〰️〰️
⛳️هوش مصنوعی
@Max_academy
@pajoohehgroup
@homeai
〰️〰️〰️〰️〰️〰️〰️
⛳️پروکسی و کانفینگ
@FreeFilter1
@Proxysarver
@SourceFreeFilter
〰️〰️〰️〰️〰️〰️〰️
⛳️زبان خارجه و مهاجرت
@WritingandGrammar
@PTEnglishtest1
@Eng_Online
@usuk1
@Ellipsis50
@VR_LEARNING_ENGLISH2
@WritingandGrammar1
@EN_4_KIDS
@VR_LEARNING_ENGLISH
@BR_PODCAST
@En_tour
@EN_Listenings
@VR_ENGLISH_TEXT
@EN_Videos
@anime4english
@alllanguagescartoons
@EnglishListeningPractice1
@tactics4listening123
@learningenglishidiom
@collocationsin10m
@bestidioms4you
@en_quizztour
@movies4english
〰️〰️〰️〰️〰️〰️〰️
⛳️برق و مکانیک
@mech_engineering
@CAD_3D
@electronicghodrat
@M_E_TUTORIAL
@electricalnew
@engineersbargh
@automatsin
@proje_bargh
@electrical_new
@margarinepower
@electric_ir
@barghtamasha
@smartelectric
〰️〰️〰️〰️〰️〰️〰️
⛳️دانشجویی و دانشگاهی
@cofeeng
@jozve_finder
@BANK_KEETAB
@tephd5
@MOHANDESYAR
@Twitterjo
@twitterjoo
@tephd6
@PersianChemist
@tekhob
@Ketab_University
@journalacademic
@cafejoo
@tarjjommee
@mppphd
@med_article
@powerpointyar
@akhtar_electronic_group
@payan_name9606
@hamyarjozve
@daneshgram
〰️〰️〰️〰️〰️〰️〰️
⛳️موبایل و کامپیوتر
@Pc_IT_Mob
@Apkgold
@Android_best
@repairms
@asrehshabakeh1
〰️〰️〰️〰️〰️〰️〰️
معماری و عمران
@Voxel3DVray
@httpsart_creativity
@tarrahimemari
@Design_groooup
@Voxel3DDVray
@VoxelObjectRevit
〰️〰️〰️〰️〰️〰️〰️
🔑 دانلود فایل های PSD فتوشاپ
📍 https://www.tgoop.com/+Einv7PqJ1KI0MTM0
〰️〰️〰️〰️〰️〰️〰️
.
Forwarded from کانال تبادلات پر جذب آرمیس
⭕️ دوستان بعدا نگید چرا پاک کردید دوباره... 😅
این فولدر کلی کانال خفن توشه کافیه بزنی روش ذخیره کنی تا گمش نکنی...
https://www.tgoop.com/addlist/RNsYMG-Fp5ViZGU8
.
این فولدر کلی کانال خفن توشه کافیه بزنی روش ذخیره کنی تا گمش نکنی...
https://www.tgoop.com/addlist/RNsYMG-Fp5ViZGU8
.