اشتراک‌ها
شتاب‌دهی JavaScript با GPU

Compiles JavaScript into shader language which can then be compiled and run on GPUs for significantly boosted performance in specific use cases (neural networks, raytracing..) 

شتاب‌دهی JavaScript با GPU
اشتراک‌ها
کتابخانه stickyElements

npm install stickyelements and insert dist/stickyelements-animate.js (or build your own bundle using src files)

Then, stick elements!  Demo

stickyElements('.item', {
  stickiness: 5,
  duration: 450
});
  
کتابخانه stickyElements
اشتراک‌ها
استفاده از WebSocket در دات نت

If you are working with .NET, then there are some very easy to consume libraries to help you host a WebSocket server or connect as a WebSocket client. 

استفاده از WebSocket در دات نت
اشتراک‌ها
تفاوت کدنویسی و برنامه نویسی
If builders built buildings the way programmers wrote programs, then the first woodpecker that came along would destroy civilization
– Gerald M. Weinberg, The Psychology of Computer Programming 1971
تفاوت کدنویسی و برنامه نویسی
نظرات مطالب
استفاده از توابع Scalar بجای case
در SQL server 2012 تابعی اضافه شده به اسم  IIF    که بجای 
SELECT CASE @GEN WHEN 0 THEN 'Male' ELSE 'Woman' AS Gender
 از این می‌توان استفاده کرد
SELECT IIF(Gen=0,'Male','Woman')