aşağıdaki adresden konuyla ilgili epey detay alabilirsiniz. tabii eski telefonları desteklemeyi unutmadan hareket etmekde fayda var dimi:) http://www.passani.it/gap/
Next (2007) izlemesi zevkli sonu merakla biten bir film oldu benim için. nicolas cage gene bön bön oynamış ama bu sefer role uymuş rol çünkü bön durmayı gerektiriyor. geleceği görme filmi eğlenceli. merakla biten kısmıda şuki bombayı nasıl bulduğunu göremedik aşk konusunu uzun tutmuşlar.
at the end of any product there will be a reporting interfaces for counts. let say you build a advertisement site which gives people to publish their products on the site. they will want to see how many people visited their product in daily basis or weekly. I used to do this in mysql like this SELECT create_time as Date, count(id) as 'Count', FROM views_of_product group by date_format(create_time, '%d %m %Y') order by date_format(create_time, '%Y-%m-%d') desc limit 7 this will nicely show last seven days views. but I needed to do same thing in postgresql. and like other days its not easily to find. I should check other report codes from project but no I allways research on google :) anyway here is my code: select to_char(created, 'YYYY-MM-DD') ,count(id) from videos_capture group by to_char(created, 'YYYY-MM-DD') order by to_char(created, 'YYYY-MM-DD') desc limit 7 its not bad actually works like a charm but understanding this
I have been using springboot remote command runner from ozkanpakdil/CommandRunner around 2 years. And last week I had a chance to play with quarkus. And I really like the startup time and speed of development is two times faster. So I decided to write same command runner with quarkus and see how it works. ozkanpakdil/quarkus-command-runner Only difference is in spring I used hazelcast and in quarkus I used ehcache. Because hazelcast configuration was not easy as in spring-boot. Then I decided to install haproxy and run these 2 microservices behind it. You can see the configuration here I must say the "command" running at linux side sometimes takes longer then 60 seconds so I gave haproxy longer timeout instructions. here is the haproxy admin According to numbers spring having downtimes. actually those are times when springboot responds slower then expected. and quarkus has longer uptime. Conclusion: Quarkus is nice and reliable fast solution for mi
Comments