About us
Contact us
WanariLeaks
Barnabás Oláh
Never underestimate the capabilities of a lazy person.
The Best Scala Code Formatters and Linting Tools
Gergő Törcsvári
Barnabás Oláh
2017-05-04
Have you ever faced the problem: your PR on github is not merged because you didn’t follow the project style-guide? Or your IDE is reformatting the whole file when you just want to modify one line? We had some of theses problems with our own code-base here at Wanari (most of the time when we...
#code
#Scala
#CodeFormatter
Environment-dependent database drivers with Slick
Barnabás Oláh
2016-08-17
When we started to you use Slick for the first time, we had no clue on how to set up our code for multiple database types in our Play! application. In the development phase, our main goal was to run the application quickly with no interference with other developers’ code and development velocity, so we decided to use the in-memory database. We are dedicated towards Continuous Integration, so before every merge we run all the tests to check if the new code breaks the app.
#code
#databases
JavaScript Routing in Play! Framework
Barnabás Oláh
2016-07-27
I was working on a Play! Framework project and I was wondering why our whole API was available in one piece. It got me thinking whether there is a way to hide at least some parts of the API from the clients. Precisely because some of the clients didn’t have the privilege/permission to execute given operations, e.g. visiting restricted pages. I thought there should be a way to hide at least the operations that are on these restricted pages. I’ve found a way to do so and below it is.
#code
#Play
Deploying Your Play! Framework App to Azure as a PaaS
Barnabás Oláh
2016-05-19
We wanted to deploy a Play! framework application to the cloud but we didn’t want to take care of all security updates on a virtual machine. Heroku is very expensive and Amazon has had no suitable solutions for our needs. We decided to go with Windows Azure.
#azure
#AppDeployment
#Play