Meanings

anxiety: Learner’s Word of the Day

[ tag word day English learner’s meaning ]             Learner’s Word of the Day       Anxiety   anxiety   /æŋˈzajəti/   noun   1 : fear or nervousness about what might happen [noncount] feelings of anger and anxiety She suffers from chronic/acute anxiety. Read more…

By whatsq, ago
Meanings

floral: Learner’s Word of the Day

[ tag word day English learner’s meaning ]     Learner’s Word of the Day     Fabric with a floral pattern   floral   /ˈflorəl/   adjective   : of or relating to flowers a floral display/design [=a display/design that has pictures of flowers] a floral pattern in wallpaper Read more…

By whatsq, ago
Meanings

foil: Word of the Day

[ tag word day English learner’s meaning ]     Learner’s Word of the Day     Corn wrapped in foil   foil   /ˈfojəl/   noun   1 [noncount] : a very thin and light sheet of metal Cover the dish with aluminum foil. kitchen foil [=foil used to Read more…

By whatsq, ago
Programming

Programming Tips for JDBC

Programming Tips for JDBC  a. Use DataSource whenever Possible If you have a choice, you always should use javax.sql.DataSource to get a JDBC connection. Data sources, which were introduced with JDBC 2.0, make the job of configuring a database connection and connecting to a database nearly fool proof. Consider the following Read more…

By whatsq, ago
Programming

JavaScript DOs and DONTs

JavaScript DOs and DONTs   1.     Use Shortcut Notations:   This code [Avoid] Is the same as [Use Instead]   var lunch = new Array(); lunch[0]=’Dosa’; lunch[1]=’Roti’; lunch[2]=’Rice’; lunch[3]=’what the heck is this?’; var lunch = [    ‘Dosa’,    ‘Roti’,    ‘Rice’,    ‘what the heck is this?’ ]; Read more…

By whatsq, ago
Programming

Tips on setting up a Junit test case

Do not use the test-case constructor to set up a test case [Junit]   Context:   Setting up a test case in the constructor is not a good idea. Consider: public class SomeTest extends TestCase    public SomeTest (String testName) {       super (testName);       // Perform test set-up    Read more…

By whatsq, ago
Programming

Tips for Swing UI Layout

Tips for Swing UI Layout   1. Avoid using JEditorPane and JTextPane: Most Swing components in Java 6 have a meaningful baseline. However, some seem to have no correct baseline (for no apparent good reason). JEditorPane and JTextPane are examples of such components. This means that it is impossible to Read more…

By whatsq, ago
Programming

Best Practices for Multithreading in Java

Best Practices for Multithreading in Java   1. Synchronization: If you have shared mutable data, synchronize access to it. Synchronization makes sure that an object is seen only in a consistent state by any thread, as it ensures mutual exclusion. It also guarantees reliable communication between threads as it ensures Read more…

By whatsq, ago
Programming

Character encoding in Java

Character encoding in Java   Java iterates through all the characters that the string represents and turns each one into a number of bytes and finally put the bytes together. The rule that maps each Unicode character into a byte array is called a character encoding.   So it’s possible Read more…

By whatsq, ago