Explore >> Select a destination


You are here

yakovfain.com
| | initialcommit.com
5.1 parsecs away

Travel
| | This tutorial shows several ways for iterating a Map in Java.
| | tannerdolby.com
3.3 parsecs away

Travel
| | To create a Node.js application, you need a web server, a request, a router, and request handlers. Frameworks like Express.js speed up development by providing a robust set of features to build web applications and APIs.
| | www.craigpardey.com
4.3 parsecs away

Travel
| | Spring 3.2 has some very nice features for scheduling tasks. The pure Java way of doing this looks something like private ScheduledExecutorService executor = Executors.newSingleThreadScheduledExecutor(); class ScheduledTask implements Runnable { @Override public void run() { System.out.println("Running scheduled task"); } } // Schedule a task every 5 seconds executor.scheduleAtFixedRate(new ScheduledTask(), 1, 5, TimeUnit.SECONDS); // If you don't do this then the JVM won't exit cleanly executor.shutdown(); But now, with the snazzy new Spring scheduling annotations, it can be as simple as this
| | www.maxpou.fr
13.1 parsecs away

Travel
| How I created dynamic Open Graph images for my Gatsby website