After a long time of service, I decided to replace the old WP-Syntax plugin with a more modern one: SyntaxHighlighter Evolved. I thought that the style of the code snippets of WP-Syntax started looking a bit old. The new plugin has several advantages: This plugin use the SyntaxHighlighter JavaScript package by Alex Gorbatchev. Here is an example using this new plugin: ```java ExecutorService threadPool = Executors.newFixedThreadPool(4); CompletionService<String> pool = new ExecutorCompletionService<String>(threadPool); for(int i = 0; i < 10; i++){ pool.submit(new StringTask()); } for(int i = 0; i < 10; i++){ String result = pool.take().get(); //Compute the result } threadPool.shutdown(); ``` For now, only two posts are using this new plugin: The other ones are still using the old plugin. I will convert the other posts when I will find some time. I hope that this change will makes the site better for you.