-
Change default code page of Windows console to UTF-8 – Super User
“To change the codepage for the console only, do the following:
Start -> Run -> regedit
Go to [HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\Autorun]
Change the value to chcp 65001″ -
java – Hibernate @ManyToOne “Target Entity is not defined” – Stack Overflow
“This error has nothing to do with your application. It works fine but the error is in Eclipse.
To remove this (and other JPA) error message simply disable the JPA validation under Window -> Preferences -> Validation and here remove the checks from JPA Validator.
Generally most applications can be developed without any validators because bigger projects’ validation slows down compiling in eclipse way too much. In this case click Disable all in the same window below the table of validators.”
-
“You are attempting to update the UI from a background thread. Either move the toast to onPostExecute, which executes on the UI thread (recommended), or call runOnUiThread.”
-
Developing Android Apps – Udacity
“padding and layout_margin are two very similar attributes. Both determine the space around a View. The difference is that padding determines space within the boundaries of the view, and layout_margin determines the space outside the boundaries of the view”