Skip to content

Instantly share code, notes, and snippets.

View Sparker0i's full-sized avatar

Aaditya Menon Sparker0i

View GitHub Profile
@Sparker0i
Sparker0i / 1password-flatpak-browser-integration.sh
Created August 28, 2025 04:14 — forked from LinuxSBC/1password-flatpak-browser-integration.sh
1Password Integration with Flatpak Browsers
#!/bin/bash
set -oue pipefail
INFO='\033[0;36m' # Cyan for general information
SUCCESS='\033[0;32m' # Green for success messages
WARN='\033[0;33m' # Yellow for warnings
ERROR='\033[0;31m' # Red for errors
NC='\033[0m' # No Color
echo "This script will help you set up 1Password in a Flatpak browser."
@Sparker0i
Sparker0i / build.sbt
Created August 20, 2019 10:36 — forked from mumoshu/build.sbt
DES and AES encryption in Scala
name := "DES and AES encryption in Scala"
version := "1.0"
scalaVersion := "2.9.1"
libraryDependencies += "commons-codec" % "commons-codec" % "1.6"