from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1icsSee
via LifeLong Community
In our boot camps, students are introduced to several tools and libraries to expand the abilities of their code. Kalina, one of our current JavaScript students, compiled a list of these tools and wanted to share it with other Code Fellows.
Original Post from Best Quotations 4 U:
Simple things become complicated, When you expect too much.
English Quotes : http://ift.tt/1ghLCb9
Luckily I can add a robots.txt file to my development server websites that will prevent search engines from indexing them.
Original Post from Programming.com:
Testing web pages on different browsers. #True #Chrome #Firefox #Opera #Safari #IE
面试的时候经常会遇见诸如:“java中的HashMap是怎么工作的”,“HashMap的get和put内部的工作原理”这样的问题。本文将用一个简单的例子来解释下HashMap内部的工作原理。首先我们从一个例子开始,而不仅仅是从理论上,这样,有助于更好地理解,然后,我们来看下get和put到底是怎样工作的。 [...]
Ajax with jQuery - using YQL. Demo. Load Ajax Content · Get developer.yahoo.com. Source Code. Adding error handling and effects. Written by Christian Heilmann.
How can I remove all entities or reset the local datastore on my dev_appserver? I accidentally recursively called a function to create an entity when testing. I am using the Google App-engine SDK on Vista with Python.
As I wrote in post Why we need type-level injections in JavaEE, injecting EJB 3 stateful beans into servlet instance fields is not thread-safe. Along the same line, injecting EntityManager with @PersistenceContext into servle...
Original Post from Jeffery yuan:
Auto Completion when Select Category in G+ Community
The Problem
When add posts to G+ community, we need select one category, usually there are 6+ or more categories in one community. So we have to scroll the category list to find the correct one.
The Suggestion
It would be great if it supports auto competition. So if we type J, it will only show categories which starts with J.
Original Post from Jeffery yuan:
Auto Completion when Select Category in G+ Community
The Problem
When add posts to G+ community, we need select one category, usually there are 6+ or more categories in one community. So we have to scroll the category list to find the correct one.
The Suggestion
It would be great if it supports auto competition. So if we type J, it will only show categories which starts with J.
The Clickjacking attack allows to perform an action on victim site on visitor's behalf. Many sites were hacked this way, including Twitter and Facebook (both fixed). Clickjacking. The overall idea is simple. A visitor is lured to evil page. No matter how. “Click to get 1000000$” or whatever.
Using JPA on the Google AppEngine is straight forward. For some reason the documentation on the official Google App Engine side is not very easy to read therefore a little example here. Create a new web project “de.vogella.gae.persistence.jpa”. Change the generated Servlet to “PersistsServlet” ...
Set Up. Download and install Vagrant within minutes on Mac OS X, Windows, or a popular distribution of Linux. No complicated setup process, just a simple to use OS-standard installer. Configure. Create a single file for your project to describe the type of machine you want, the software that ...
Remove an element with the plain JavaScript remove() method available in the current DOM4 specs along with other mutation methods like append(), prepend(), before(), after() and replace().
There are several ways of checking whether a variable has the value undefined. This blog post explains the differences. Checking via === Using strict equality [1] is the canonical way of checking for undefined: if (x === undefined) ... Changing undefined. undefined is a property of the global ...