This is a test.
Hello Pebble!
| [ | |
| { | |
| "name": "Watermelon Sugar", | |
| "artist": "Harry Styles", | |
| "chords": [ | |
| "Dm7 Am7 C G" | |
| ], | |
| "lyrics": "[Verse 1]\nTastes like strawberries on a summer evenin'\nAnd it sounds just like a song\nI want more berries and that summer feelin'\nIt's so wonderful and warm\n\n[Pre-Chorus]\nBreathe me in, breathe me out\nI don't know if I could ever go without\nI'm just thinking out loud\nI don't know if I could ever go without\n\n[Chorus]\nWatermelon sugar high\nWatermelon sugar high\nWatermelon sugar high\nWatermelon sugar high\nWatermelon sugar\n\n[Verse 2]\nStrawberries on a summer evenin'\nBaby, you're the end of June\nI want your belly and that summer feelin'\nGetting washed away in you\n\n[Pre-Chorus]\nBreathe me in, breathe me out\nI don't know if I could ever go without\n\n[Chorus]\nWatermelon sugar high\nWatermelon sugar high\nWatermelon sugar high\nWatermelon sugar high\nWatermelon sugar high\nWatermelon sugar high\nWatermelon sugar high\nWatermelon sugar high\n\n[Post-Chorus]\nI just w |
| { | |
| "projects": [ | |
| { | |
| "title": "muenstererOS", | |
| "description": "This website", | |
| "tags": [ | |
| "SvelteKit", | |
| "API" | |
| ], | |
| "githubUrl": "https://github.com/dnnsmnstrr/muenstererOS", |
This is a test.
Hello Pebble!
| { | |
| "test": "Hello World" | |
| } |
| const fs = require('fs'); | |
| const path = require('path'); | |
| // Read the JSON file | |
| const bookmarksFilePath = path.join(__dirname, 'bookmarks.json'); | |
| const bookmarksData = JSON.parse(fs.readFileSync(bookmarksFilePath, 'utf-8')); | |
| // Function to convert bookmarks to CSV/TSV | |
| function convertToCSV(bookmarks, delimiter = ',') { | |
| const header = ['URL', 'Title']; |
| import fs from 'fs' | |
| const RCSnippets = JSON.parse(fs.readFileSync('./snippets.json', 'utf-8')) | |
| if (!fs.existsSync('./output')) { | |
| fs.mkdirSync('./output') | |
| } | |
| RCSnippets.forEach(sn => { | |
| const data = { |
| #!/usr/bin/env bash | |
| set -e | |
| LED=27 | |
| DIR="$HOME/Pictures" | |
| mkdir -p "$DIR" | |
| raspi-gpio set $LED op | |
| # take picture with timestamp as name |
| import time | |
| import math | |
| from machine import Pin | |
| import rp2 | |
| NUM_LEDS = 25 # 5x5 matrix | |
| max_lum = 100 # Maximum brightness level | |
| brightness = 0.1 # Scale brightness (0.0 to 1.0) | |
| @rp2.asm_pio(sideset_init=rp2.PIO.OUT_LOW, out_shiftdir=rp2.PIO.SHIFT_LEFT, autopull=True, pull_thresh=24) |
| # This file contains pin mappings for the stock 2020 Creality CR6-SE. | |
| # To use this config, during "make menuconfig" select the STM32F103 | |
| # with a "28KiB bootloader" and serial (on USART1 PA10/PA9) | |
| # communication. | |
| # Flash this firmware by copying "out/klipper.bin" to a SD card and | |
| # turning on the printer with the card inserted. The firmware | |
| # filename must end in ".bin" and must not match the last filename | |
| # that was flashed. |