Skip to content

Instantly share code, notes, and snippets.

View echus's full-sized avatar

Varvara Efremova echus

View GitHub Profile
@echus
echus / mhv_solar_demo_vega_spec.json
Created March 29, 2022 12:45
MHV solar demo vega styling
{
"$schema": "https://vega.github.io/schema/vega/v5.json",
"description": "A basic area chart example.",
"width": 1000,
"height": 400,
"padding": 5,
"signals": [
{
"name": "hover",
"value": null,
@echus
echus / mhv_solar_demo_vega_lite.json
Created March 29, 2022 14:23
MHV solar demo Vega-Lite
{
"data": {
"name": "data",
"values": [
{
"Row": 0,
"Date": "26/03/22",
"Time": "6:10AM",
"Energy": 0.001,
"Efficiency": "0.000kWh/kW",
@echus
echus / vega_bindfit.json
Created September 12, 2023 08:18
Bindfit Vega spec
{
"$schema": "https://vega.github.io/schema/vega/v5.json",
"width": 800,
"height": 400,
"padding": 5,
"data": [
{
"name": "inputData",
"transform": [
{
@echus
echus / keep_to_simplenote.py
Created June 6, 2024 00:54
Google Keep to Simplenote import script
#!/usr/bin/env python
"""Google Keep export to Simplenote import script.
Converts Google Keep Takeout archive into a Simplenote-compatible .json file
for direct import into Simplenote.
"""
import json
import os
import glob