This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Update repos | |
sudo apt update | |
# Upgrade system to latest packages | |
sudo apt -y upgrade | |
# Install ubuntu packages | |
sudo apt install -y cmake vim git curl tmux pipenv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Scrollbar with Hover Transition Effect | |
.container::-webkit-scrollbar { | |
width: 14px; | |
} | |
.container::-webkit-scrollbar-thumb { | |
background-clip: content-box; | |
border: 4px solid transparent; | |
border-radius: 7px; | |
box-shadow: inset 0 0 0 10px; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake_minimum_required(VERSION 3.5) | |
project(example LANGUAGES CXX) | |
set(CMAKE_CXX_STANDARD 11) | |
set(CMAKE_CXX_STANDARD_REQUIRED ON) | |
find_package(GTest REQUIRED) | |
include_directories(${GTEST_INCLUDE_DIRS}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
MAINTAINER="Dario Limongi" | |
VERSION=4.1.0 | |
# Adapted from https://www.pyimagesearch.com/2018/09/26/install-opencv-4-on-your-raspberry-pi/ | |
sudo apt update && sudo apt upgrade -y | |
sudo apt-get install -y \ | |
build-essential ccache cmake unzip pkg-config curl \ | |
libjpeg-dev libpng-dev libtiff-dev \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# modified from https://gist.github.com/pbock/3ab260f3862c350e6b5f # | |
# Requires Firefox and Windows | |
require 'rubygems' | |
require 'watir-webdriver' | |
require 'win32/sound' | |
include Win32 |