whiteblacksheep

Glück muss man können!

Archive for the category “IT”

Notebook battery would not charge

Windows 10 just told me that my notebook battery cannot be charged.

Here is a solution which worked out fine for me:

  1. Shut down your notebook.
  2. Unplug the power supply.
  3. Remove the battery.
  4. Press the notebook’s ON/OFF button for 10 to 20 seconds.
  5. Insert the battery and the power supply again.
  6. Turn on your notebook.
  7. Done – the battery should be charged again.

Java: More on Lists – double brace initialisation

Normal initialisation

List<String> myList = new ArrayList<String>();
myList.add("ItemOne");
myList.add("ItemTwo);

Using Arrays.asList(…)

List<String> myList = Arrays.asList("ItemOne", "ItemTwo");

Double brace initialisation

List<String> myList = new ArrayList<String>() {
{ add("ItemOne"); add("ItemTwo"); }
};

Java Map/Collection Cheat Sheet

Java Map/Collection Cheat Sheet

 

Originally posted on http://www.sergiy.ca/guide-to-selecting-appropriate-map-collection-in-java/.

Troubleshooting Google Talk Sign-In with Trillian Mobile on Android

I just came along a problem while logging into my Google Talk account via Trillian.

Google interprets a login attempt as a security breach if it came from an application not using Google’s Single Sign On mechanism… I received an email asking me to reset my Google password. But actually a password change is not required:

You are asked if it was you who tried to access your account. If so, you need to log in w/ this very application within the next 10 minutes. Then you are all set.

A summary of the 6 most important JavaScript Frameworks

Nice summary of the 6 most important Javascript Frameworks for building WebApps.

Free JavaScript Tutorials

Intended for JavaScript-Newbies but also good for refreshing your knowledge: Free JavaScript Tutorials by ItinPractice.com.

Nice visualisation of SQL-Joins

SQL-Joins

JavaScript Design Patterns

For those interested in Learning JavaScript Patterns.

Behind the Scenes: Functionality of Modern Web Browsers (German only)

Another interesting post by Html5Rocks: Behind the scenes of modern web browsers.

Splashnology – 38 fresh jQuery Plugins

Splashnology informs about some new jQuery Plugins for Web Developers.

Post Navigation