Skip to content

Instantly share code, notes, and snippets.

View mmesnjak's full-sized avatar

mmesnjak mmesnjak

View GitHub Profile
Verifying my Blockstack ID is secured with the address 1293FkLkKUDvbYK1FAau2zhACQZNWDET2G https://explorer.blockstack.org/address/1293FkLkKUDvbYK1FAau2zhACQZNWDET2G
@mmesnjak
mmesnjak / Dockerfile
Created November 5, 2018 11:46
Docker configuration for building node applications using multistage
FROM node:10-alpine AS build
# install gyp tools
# if you have an npm dependency that depends on native code
# like the redis package, you'll need these tools to compile
# that dependency
RUN apk add --update --no-cache \
python \
make \
g++
@mmesnjak
mmesnjak / ProjectsView.java
Created May 18, 2015 08:03
Primefaces Datatable not filtering in Spring Boot App
@Component
@Scope("session")
public class ProjectsView implements Serializable {
private static final long serialVersionUID = 2265411416397010974L;
private static final Logger LOG = LoggerFactory
.getLogger(ProjectsView.class);
private ProjectsService service;