Martin Konecny

Results 6 issues of Martin Konecny

Is this widget for Awesome 3.5 only? Currently running 3.4 (latest on Debian Jessie 8.4), and seeing this error.

Seems like this feature/branch was removed even though I can still find it here: https://code.google.com/p/andengine/source/browse/src/org/anddev/andengine/ui/fragment/compat/BaseGameFragment.java?r=0d0d2bcda2941e5b6bf6b56a42dffbc4693fb96e Any reason for it's removal?

Polling is the act of checking for new data every x seconds, and immediately discovering whether it's available or not (server immediately responds even if no data). Long polling is...

Sinatra has a great module for allowing you to rename your route names while still maintaining backward compatibility for older clients: http://www.sinatrarb.com/contrib/multi_route.html

enhancement

APNS appears to close the connection after each message (or group of messages). From the APNS [documentation](https://developer.apple.com/library/ios/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Chapters/CommunicatingWIthAPS.html#//apple_ref/doc/uid/TP40008194-CH101-SW1): > Keep your connections with APNs open across multiple notifications; don’t repeatedly open...

Consider the following: ``` z = [{"x" => 5}, 2, 3].lazy.map{ |i| i} #=> #:map> z.first #=> {"x"=>5} ``` Encoding hash `z` returns the following unexpected chunk: > # =>...