Skip to content

Instantly share code, notes, and snippets.

View celicoo's full-sized avatar
๐Ÿ‘จโ€๐Ÿ’ป
Always coding

celicoo

๐Ÿ‘จโ€๐Ÿ’ป
Always coding
View GitHub Profile
@celicoo
celicoo / PRIVACY_POLICY.md
Created February 8, 2026 20:21
FlashWord App - Privacy Policy

Privacy Policy for FlashWord

Last Updated: February 2025

Overview

FlashWord ("the App") is committed to protecting your privacy. This Privacy Policy explains how we handle information when you use our speed reading application.

Information We Collect

@celicoo
celicoo / framework-installer.sh
Created November 29, 2025 18:27
Framework Desktop NixOS Installer with LUKS
#!/usr/bin/env bash
set -euo pipefail
echo "๐Ÿš€ Framework Desktop NixOS Installer"
echo "===================================="
echo
# Check if UEFI boot
if [ ! -d /sys/firmware/efi ]; then
echo "โŒ ERROR: This system must be booted in UEFI mode"
@celicoo
celicoo / framework-installer.sh
Created November 29, 2025 18:26
Framework Desktop NixOS Installer
#!/usr/bin/env bash
set -euo pipefail
echo "๐Ÿš€ Framework Desktop NixOS Installer"
echo "===================================="
echo
# Check if UEFI boot
if [ ! -d /sys/firmware/efi ]; then
echo "โŒ ERROR: This system must be booted in UEFI mode"
require 'net/http'
require 'json'
require 'uri'
url = URI("https://www.letsrevolutionizetesting.com/challenge?id=756775492")
while true
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true if url.scheme == 'https'
request = Net::HTTP::Get.new(url, { 'Accept' => 'application/json' })
{
"openapi": "3.0.0",
"info": {
"title": "Vultr API",
"version": "2.0",
"contact": {
"email": "opensource@vultr.com",
"name": "",
"url": "https://www.vultr.com"
},