Skip to content

Instantly share code, notes, and snippets.

@aurelijusb
aurelijusb / .gitignore
Last active January 5, 2026 04:51
GrowthBook Open Feature (TypeScript) example
node_modules
@aurelijusb
aurelijusb / .gitignore
Last active January 5, 2026 04:47
GrowthBook native JavaScript (TypeScript) SDK example
node_modules
@aurelijusb
aurelijusb / README.md
Last active January 4, 2026 14:35
GrowthBook Open Feature GO example
@aurelijusb
aurelijusb / README.md
Last active January 4, 2026 14:31
GrowthBook native GO SDK example
@aurelijusb
aurelijusb / 50193349326_hooper-air-transaprent.png
Last active April 18, 2021 13:03
SpaceX theme for AWS workshop
50193349326_hooper-air-transaprent.png
@aurelijusb
aurelijusb / .gitignore
Last active June 5, 2019 17:38
VilniusPHP 0x4F: Coroutines in PHP: HTTP example
.idea
@aurelijusb
aurelijusb / .gitignore
Last active June 5, 2019 17:22
VilniusPHP 0x4F: Coroutines in PHP: Simple examples
.idea
@aurelijusb
aurelijusb / Dockerfile
Last active February 18, 2019 18:22
KaunasPHP v.52: Simple dockerized PHP application
FROM php:7.2-apache
COPY . /var/www/html/
@aurelijusb
aurelijusb / Makefile
Last active September 26, 2017 19:12
Go+JSON: examples for presentation
default:
golint *.go
go vet *.go
go fmt *.go
run:
go run naming.go
go run naming2.go
go run naming-unmarshal.go
go run naming-polymorphism.go
@aurelijusb
aurelijusb / Dockerfile
Last active January 23, 2020 18:20
Code snippets for Minsk PHP Night presentation: Headless browsers and friends
FROM ubuntu:latest
RUN apt-get update && \
apt-get install -y xvfb firefox python-pip xdotool x11vnc
RUN apt-get install -y wget
RUN wget https://github.com/mozilla/geckodriver/releases/download/v0.16.1/geckodriver-v0.16.1-linux64.tar.gz
RUN tar zxvf geckodriver-v0.16.1-linux64.tar.gz && mv geckodriver /usr/bin/geckodriver
ENV DISPLAY=:1.0