Skip to content

Instantly share code, notes, and snippets.

@ttanay
ttanay / duckdb_datagen.sql
Last active August 13, 2023 22:35
Generate range data duckdb
SELECT SUM(i) FROM range(1000000) tbl(i)
INSERT INTO vflat SELECT i FROM range(5000) tbl(i);
@ttanay
ttanay / GSoC.md
Last active January 20, 2020 07:02
Wrap-up Report for Google Summer of Code '19
@ttanay
ttanay / install.sh
Last active October 29, 2017 19:24 — forked from ziadoz/install.sh
Install Chrome, ChromeDriver and Selenium on Ubuntu 16.04
#!/usr/bin/env bash
# Versions
CHROME_DRIVER_VERSION=`curl -sS chromedriver.storage.googleapis.com/LATEST_RELEASE`
SELENIUM_STANDALONE_VERSION=3.4.0
SELENIUM_SUBDIR=$(echo "$SELENIUM_STANDALONE_VERSION" | cut -d"." -f-2)
# Remove existing downloads and binaries so we can start from scratch.
rm ~/google-chrome-stable_current_amd64.deb
rm ~/selenium-server-standalone-*.jar