نظرات مطالب
نحوه شبیه سازی سرعت‌های اتصال پایین جهت آزمایش یک وب سایت
به روز رسانی
در developer tools نگارش‌های اخیر فایرفاکس و کروم، قابلیت توکار throttling وجود دارد و برای اینکار، نیازی به نصب هیچ افزونه‌ی جداگانه‌ای نیست:
در فایرفاکس:


در کروم:

نظرات مطالب
شروع به کار با AngularJS 2.0 و TypeScript - قسمت دهم - کار با فرم‌ها - قسمت اول
- به console مربوط به developer tools مرورگر خود مراجعه کنید، علت در آنجا لاگ می‌شود.
+ نگارش آخر آزمایش شده‌ی این سری را از اینجا دریافت کنید و شروع کنید به بررسی و انطباق تغییرات، با نمونه‌ای که دارید.
نظرات مطالب
نحوه استفاده از افزونه Firebug برای دیباگ برنامه‌های ASP.NET مبتنی بر jQuery
ممنون آقای نصیری - برای کروم چطور، آیا developer tools کفایت میکند یا ابزار بهتری سراغ دارید؟
البته من گاهی که نیاز به دستکاری ریسپانس و ریکوئست باشه از فیدلر استفاده میکنم
نظرات مطالب
ASP.NET MVC #13
احتمالا اسکریپت‌های شما درست load نشده.
به web developer tools مرورگر خودتون مراجعه کرده و خطاهای اسکریپتی رو بررسی کنید.
نظرات مطالب
آموزش فایرباگ - #4 - JavaScript Development
با سلام
می خواستم بپرسم فایرباگ چه محاسنی نسبت به developer tool مرورگر کروم داره؟ به نظر خیلی شبیه به هم می‌آیند.
با تشکر از زحمات شما
اشتراک‌ها
طراحی و پیاده سازی Domain Events در DDD
In short, domain events help you to express, explicitly, the domain rules, based in the ubiquitous language provided by the domain experts. Domain events also enable a better separation of concerns among classes within the same domain. It's important to ensure that, just like a database transaction, either all the operations related to a domain event finish successfully or none of them do. Domain events are similar to messaging-style events, with one important difference. With real messaging, message queuing, message brokers, or a service bus using AMQP, a message is always sent asynchronously and communicated across processes and machines. This is useful for integrating multiple Bounded Contexts, microservices, or even different applications. However, with domain events, you want to raise an event from the domain operation you are currently running, but you want any side effects to occur within the same domain. The domain events and their side effects (the actions triggered afterwards that are managed by event handlers) should occur almost immediately, usually in-process, and within the same domain. Thus, domain events could be synchronous or asynchronous. Integration events, however, should always be asynchronous.
طراحی و پیاده سازی Domain Events در  DDD