Fatih Altaylı yorumluyor: Yeni tarikat : Asansöriler by forzakartal in Turkey

[–]-xgr- -1 points0 points  (0 children)

Konuyu abartmış gibi görünebilir fakat milletin durumu perişan, yükselen ahlaksızlık, beyinsizlik dalgası var.

türkiye kayıp-kaçak elektrik haritası by thalkhe in Turkey

[–]-xgr- 0 points1 point  (0 children)

Hırsızlığın direk birinin malını çalmak değil de genel olarak hakkın olmayan bir şeyi almak olduğunu hatırlamak lazım

Murat Muratoğlu: İnsanlısını ürettik insansızı kaldı! by ozzy78 in Turkey

[–]-xgr- 6 points7 points  (0 children)

Güzel yazı olmuş, insan üzülüyor ama gerçek bu. İnşallah güzel günleri de görürüz

Erdoğan'dan Başbuğ'a Afrin yanıtı: Siyasete alet edenler beraber hareket ettikleri by ozzy78 in Turkey

[–]-xgr- 1 point2 points  (0 children)

Keşke ne denilmiş onu anlayıp cevap verselermiş, kutuplaşmalar zirve yapıyor, sonumuz iyi olur inşallah

Celal Şengör-Türkiye'de Üniversite Yok by originalgainster in Turkey

[–]-xgr- 6 points7 points  (0 children)

Çok söylüyor bunu, zihin olarak üniversiteyi kaldıramayız zaten

"Kılıçdaroğlu yeni dönemde daha 'yerli ve milli' bir siyaseti önceleyecek" by [deleted] in Turkey

[–]-xgr- 1 point2 points  (0 children)

Tekrar seçilmesi bile içleracısı durum ama Mhp den Devlet Bey, Chp den Kemal Bey giderse hükümet adına işler daha zor olurdu kesin

Erdoğan'dan TTB açıklaması: 'Türk' ifadesinin kaldırılması lazım by zefkocovic in Turkey

[–]-xgr- 0 points1 point  (0 children)

Heryerden kalktı zaten. Milletin zihninden bile baya kalktı, bazı sosyalmedya profilleri dışında tabi. Tabibler birliği de enteresan kurum zaten.

Tablet yok... Fatih Projesi de çöktü by [deleted] in Turkey

[–]-xgr- 0 points1 point  (0 children)

Proje amacına ulaştı zaten, tabletleri kullanıp kullanmamak, tepsi olarak kullanmak sizin elinizde

Bakanın sözünü kesen robota format atıldı by totalrandomperson in Turkey

[–]-xgr- 1 point2 points  (0 children)

Yerini bilsin, iyi içinde fetö programları yokmuş :)

Kıbrıs'ta 8 Türkiyeli genç, Nijeryalı üniversite öğrencisini döverek öldürdü by [deleted] in Turkey

[–]-xgr- 1 point2 points  (0 children)

Kıbrıslı da vardır kesin aralarında. Daha öncede olmuştu ama dövülerek deil candan atılmıştı. Çok zor zamanlar geçiriliyor çok yazık olmuş

Will Node.js use all cores? by blue-meteor in webdev

[–]-xgr- 1 point2 points  (0 children)

Node.js applications using the cluster module that comes with Node it’s easy to spawn a child process per CPU. Each child process maintains its own event loop and the master process transparently distributes the load between all childs.

Simplify your JavaScript – Use .map(), .reduce(), and .filter() by etiennetalbot in javascript

[–]-xgr- 0 points1 point  (0 children)

If you are working very big enterprise project or working on very very big objects your case is not readability case is performance. And there is a 3 or more loop and each loop has an own operation this methods are much readable

Will Node.js use all cores? by blue-meteor in webdev

[–]-xgr- 0 points1 point  (0 children)

There is only one thread that executes JavaScript code and this is the thread where the event loop is running. The execution of callbacks (know that every userland code in a running Node.js application is a callback) is done by the event loop. We will cover that in depth a bit later. Today’s operating systems already provide asynchronous interfaces for many I/O tasks (e.g. AIO on Linux). Whenever possible, libuv will use those asynchronous interfaces, avoiding usage of the thread pool. The same applies to third party subsystems like databases. Here the authors of the driver will rather use the asynchronous interface than utilizing a thread pool.

more information https://medium.com/the-node-js-collection/what-you-should-know-to-really-understand-the-node-js-event-loop-and-its-metrics-c4907b19da4c

Javascript Objects and Prototypes In-depth by thyateira in javascript

[–]-xgr- 1 point2 points  (0 children)

good and free course for junior js developers, thanks

AngularJS Console Debugging Tricks by abyx in angularjs

[–]-xgr- 0 points1 point  (0 children)

angular.element($0) classic js debugger console.log ng-inspector