-
Agile
Why Start-Ups Fail
You’ve probably heard that a start-up’s chance of success is very low. There are many factors of why that happens.…
Read More » -
Groovy
Gradle Goodness: Handle Copying Duplicate Files
In Gradle we can configure how duplicate files should be handled by the Copy task. Actually we can configure how…
Read More » -
Scala
Scala Snippet: How to filter a list in Scala
In Scala, filtering and processing collections is easy and elegant. There are many filtermethods available, but the most used will…
Read More » -
Java
Simplify your logging with tinylog 1.0
With a size of only 75 KB, tinylog is a lightweight alternative to the widespread classical logging frameworks Log4j and…
Read More » -
Enterprise Java
Spring-session demonstration using docker-compose
I have earlier written about an exciting new project called Spring-session which provides a clean way to externalize user sessions…
Read More » -
Enterprise Java
UA Web Challenge Conference: SpringIO for startups
On this week I was speaking on UA Web Challenge Conference in BackEnd section. I’ve chosen strange topic of my…
Read More » -
DevOps
Building Minimal Docker Containers for Go Applications
There are several great official and community-supported containers for many programming languages, including Go, but these containers can be quite…
Read More » -
Software Development
R: Replacing for loops with data frames
In my last blog post I showed how to derive posterior probabilities for the Think Bayes dice problem: Suppose I…
Read More » -
Java核心
多线程和并发面试问题与答案 – 终极列表(PDF下载)
编者按: 并发一直是开发者的挑战,编写并发程序可以是非常困难的。当涉及并发,有一系列事情可能会出现和系统复杂性大幅提高。但是,编写健壮的并发程序的能力是开发者的一个伟大的工具,可以帮助建立复杂的企业级的应用。在这篇文章中,我们将讨论可用于编程面试的不同类型问题,以评估面试者对并发和多线程的的认识问题。这些问题不仅是Java的特异性,同时也关于常规的编程原则。享受 提示,您是否在寻找Java中的职业发展机会? 请访问我们的Job Board 搜索和查看一个为世界各地的IT专业人员手工挑选 Java就业机会的平台. 此外,您可以将您的简历发给我们的 Resumes Board 推广自己的技能给全球广泛的Java招聘人员。 目录 1. 什么是我们理解的并发? 2. 进程和线程之间的区别是什么? 3. 在Java中,什么是进程和线程? 4. 什么是调度器?…
Read More »