Skip to content

Instantly share code, notes, and snippets.

View vladikoff's full-sized avatar
🚀
🧇

Vlad Filippov vladikoff

🚀
🧇
View GitHub Profile
@georgf
georgf / json-schema.json
Last active June 26, 2019 18:42
Mobile experiments kinto setup
{
"type": "object",
"required": [
"id",
"description",
"match",
"buckets",
"branches"
],
"properties": {
@ayyybe
ayyybe / ccdl.command
Last active May 8, 2025 14:18
Adobe Offline Package Builder v0.1.2 (macOS only) --- No longer being maintained.
#!/bin/bash
CYAN="$(tput bold; tput setaf 6)"
RESET="$(tput sgr0)"
clear
if command -v python3 > /dev/null 2>&1; then
if [ $(python3 -c "print('ye')") = "ye" ]; then
clear
@nexpr
nexpr / common.js
Created April 11, 2020 12:50
lit-html routing example
export const navigate = url => eve => {
eve.preventDefault()
const nav_url = url || eve.target.href
history.pushState(null, "", nav_url)
window.dispatchEvent(new Event("pushstate"))
}