Full Stack Developer
@hamedesam_dev
Followers
50K
Following
4K
Media
3K
Statuses
5K
مؤسس موقع @albashmoparmeg| مهندس ذكاء اصطناعي |#مبرمج | #بايثون |#فلاتر| #laravel|تنفيذ مشاريع التخرج والخاصة الضخمة وجميع انواع المواقع والتطبيقات| تواصل
Egypt
Joined March 2017
تم الإنتهاء بفضل الله من شرح أساسيات 4 لغات برمجة وهم: 1. HTML👇 https://t.co/hUmkSfWc6N 2. CSS 👇 https://t.co/jQCJAr2bmC 3. Python👇 https://t.co/U2eyBtW240 4. json👇 https://t.co/Hen2SwSEhu\ ======= وهناك كورسات أخرى بإذن الله تحت العمل.✔ #الباشمبرمج ريتويت للإفادة.
35
365
2K
🧰 أدوات هتفيدك في مشروع التخرج جدًا: https://t.co/IPstp8r3Qa أو Lucidchart لعمل مخططات النظام (System Diagrams). Miro للعصف الذهني وتوزيع المهام. GitHub Projects عشان تتابع التيم لو شغالين مع بعض. Google Colab لو شغلك في ML أو AI. Postman لاختبار الـAPI بسهولة. دي الأدوات
0
1
41
Your thoughts can wage war against your peace. But when you resist the devil and rest in the Lord, even your memories start to heal. Rest is not an escape—it’s spiritual warfare won through peace.
0
4
16
🛠️ لو بتدور على slow queries استخدم Query Profiler قبل ما تقعد تهدر وقتك. RDS Performance Insights، MySQL slow query log، أو pg_stat_statements. لقيت استعلام تقيل؟ اعمل EXPLAIN، فكّر في rewrite أو index. ⏱️ في مشاريع حقيقية، استعلام واحد غلط ممكن يخلي whole API بطيء.
0
0
5
Denise Warino as Marie Antionette, "A Tale of Two Kingdoms" on Fatbones Productions 2
1
4
6
📊 SQL window functions مش لعبة جامدة، دي سلاح حقيقي. استخدم ROW_NUMBER() للـ dedup أو ranking. LAG()/LEAD() لتحليل time-series دون subqueries معقّدة. SUM() OVER(PARTITION BY ...) للتجميع المتحرك. 🧠 هتستخدمها صح هتوفرلك كتابة كود أبسط وأداء أحسن.
4
3
69
لو سرفرك بقى بيهتز تحت ضغط الـ load، جرب Rate Limiting ذكي مش تقليدي.⚙️ استخدم token bucket أو leaky bucket للـ APIs. طبّق limits على مستوى الـ IP أو الـ API key. ربط الـ limits بـ caching لتقليل حسابات متكررة. 💡 Rate limiting صح بيحمي الـ infra ومش بيضايق الـ users الصح.
0
0
3
The award-winning documentary that Sen. Adam Schiff demanded to have removed from Amazon Prime shows how metabolic and other natural cancer treatments work. "We're not giving cancer an opportunity to detour . . . to escape down one of its usual [biochemical] pathways."
22
73
276
📈 إزاي تحسّن JOINs في حالات big data؟ اختار الـ join type الصحيح (HASH vs NESTED LOOP). استخدم indexes على الأعمدة اللي في الـ JOIN. فكّر في denormalization لو الـ reads أعلى بكتير من الـ writes. ⚖️ أحيانًا تخفيف الـ normal form بيخلي الأداء عمليًا أفضل.
1
2
18
في Flutter، الفرق بين مطور مبتدئ ومحترف هو فهم الـ State Management فعلاً👍🏻 مش إنك تحفظ Provider أو Bloc… الموضوع إنك تفهم إمتى الحالة تتحدث، وازاي تمنع الـ rebuilds الزايدة. 🔥 راقب الـ widget tree، واشتغل بـ selectors أو https://t.co/Gi8Alk1s3R لما تحتاج أداء فعلاً محترم.
2
5
72
Cache Invalidation المشكلة الحقيقية مش التخزين، ده التخلص من القديم 🔁 • استخدم cache keys ذكية (include version). • عند تغيّر الداتا، قوم بـ invalidation محدد بدل flush كامل. • ضع TTLs معقولة للـ cached objects. 🧠 حل ذكي للـ invalidation يقلّل الـ bugs ويزود الـ
0
0
10
This November 29, one guest will experience the ultimate travel reward! Play all month and let your next adventure begin at FireKeepers.
0
18
43
إزاي تتعامل مع heavy lists بدون UI jank🤔 استخدم ListView.builder وconst widgets قدر الإمكان. lazy load للصور/وسائط باستخدام cached_network_image. افصل الـ business logic عن الـ UI (BLoC/Provider). ⚡ تجربة سلسة في الموبايل = تقييم أفضل وانتشار أعلى.
0
0
12
أفضل الأدوات لإدارة واجهة برمجة التطبيقات (API) 👨🏻💻🚀
1
0
4
Sola Scriptura is really nothing more than believing that because God spoke and preserved His Word, we should rely upon that as our sole infallible authority.
1
3
3
لو بتشتغل WebAuth، خد بالك من الـ JWT pitfalls 🔒 • ما تخزنش sensitive info داخل الـ token. • قلّل عمر الـ token واعمل refresh tokens آمنين. • تحقق من الـ algorithms واحذر من alg: none. 🛡️ أمن auth غلط = اختراق سهل.
0
2
22