Skip to content

Instantly share code, notes, and snippets.

View beniusij's full-sized avatar
🕵️‍♂️
Playing detective in crime scene where I'm the criminal

Juozas Beniusis beniusij

🕵️‍♂️
Playing detective in crime scene where I'm the criminal
  • Bluetel Solutions Ltd
  • Oxford, United Kingdom
  • X @JuozasBen
View GitHub Profile
@beniusij
beniusij / keybase.md
Created November 2, 2022 15:37
keybase.md

Keybase proof

I hereby claim:

  • I am beniusij on github.
  • I am jbeniusis (https://keybase.io/jbeniusis) on keybase.
  • I have a public key ASBF1_VAfTmAdtQXF4ZqxmnwMKugY7atHyvHFB51-S-kXAo

To claim this, I am signing this object:

@beniusij
beniusij / open-sauce-sentry-workflow.yml
Created October 7, 2020 17:37
A simple GitHub workflow that uses Slack Webhook to notify users in particular Slack channel about new or reopened issue
name: Slack Notification
on:
issues:
types: [opened, reopened]
defaults:
run:
shell: bash
@beniusij
beniusij / Dockerfile-react
Created October 4, 2020 21:23
Basic Dockerfile for React applications created with create-react-app
FROM node:12.8.1-alpine
# Set working directory
WORKDIR /
# Copy package.json and yarn.lock
COPY ./package.json ./yarn.lock ./
# Install node modules
RUN yarn install
package users
import (
"fmt"
"gopkg.in/go-playground/validator.v9"
)
type UserModelValidator struct {
user struct{
Email string `validate:"required,email,unique"`