from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1lTjShx
via LifeLong Community
Chrome extensions that will let you focus on reading: Readability, Evernote Clearly, and MagicScroll Web Reader.
But, if user is behind a proxy server or access your web server through a load balancer (for example, in cloud hosting), the above code will get the IP address of the proxy server or load balancer server, not the original IP address of a client. To solve it, you should get the IP address of the ...
Original Post from Android Developers:
Share With Intents
"One of the most inherently useful Android intents is the Share intent. You can let the user share data to any service they want, without writing the sharing code yourself, simply by creating a share intent."
+Alexander Lucas talks about how to app sharing to your app using the apps already installed on your phone; and how the ShareActionProvider in Android 4.0 makes it even easier.
What's other Intents do you use to add 3rd party functionality to your apps?
[This post is by Alexander Lucas, an Android Developer Advocate bent on saving the world 5 minutes. —Tim Bray]. Intents are awesome. They are my favorite feature of Android development. They make all ...
I'm trying to hava a simple Proxy server written in java on Google engine app the servlet is : import java.io.*; import java.util.Enumeration; import java.util.Iterator; import java.util.Map; import java.util.List; import java.util.logging.*; import javax.servlet.*; import javax.servlet.http.*; import java.net.URL; import java.net.HttpURLConnection; public class ProxyServlet extends HttpServlet { private ServletContext servletContext; private Log...
package com.mkyong; import java.io.BufferedReader; import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; public class StringToInputStreamExample { public static void main(String[] args) throws IOException { String str ...