Skip to content

Instantly share code, notes, and snippets.

Cute Sparkles

These cool and girly glitters come with lots of flowers, hearts, bows and ribbons! These decorations can suit all sorts of happy and soft aesthetic moods ~ ✨(◕▿◕✿)

✧・゚: *✧・゚:*    *:・゚✧*:・゚✧
.・゜゜・  ・゜゜・.
。・゚゚・  ・゚゚・。
༶•┈┈⛧┈♛ ♛┈⛧┈┈•༶
✧༺♥༻∞  ∞༺♥༻✧

*✿❀ ❀✿*

@hsiboy
hsiboy / Route 53 Updater
Last active February 12, 2024 00:07 — forked from ELLIOTTCABLE/.gitignore
BASH Script to keep Route53 updated with your current external IP address
Roll your own dynamic DNS service using Route53
#!/usr/bin/perl -w
#
# Jesper Nyerup <nyerup@one.com>
my $ipmitool = '/usr/bin/ipmitool';
my @chararray = split(//, join(' ', @ARGV));
usage() if (@chararray == 0 or @chararray > 14);
system("$ipmitool raw 0x6 0x58 193 0x0 0x0 ".
/* Designed to drive an array of 8 strips of 25 WS2812b RGB LEDs with different display functions
0) Off No settings / no brightness control
1) Real fire No settings - potentiometer #2 immediately defaults to brightness control
2) Color Fire Setttings = goes through the rainbow hues to select the basic flame color
3) Rainbow Fire No settings - potentiometer #2 immediately defaults to brightness control
4) Barberpole No settings - potentiometer #2 immediately defaults to brightness control
5) Rainbow barberpole Setttings = goes through the rainbow hues to select the basic color
6) Rainbow No settings - potentiometer #2 immediately defaults to brightness control
7) Vertical rainbow No settings - potentiometer #2 immediately defaults to brightness control
8) Horizonatl Rainbow No settings - potentiometer #2 immediately defaults to brightness con
#include<FastLED.h>
// Red, White, and Blue stripes with "glitter" flashes
// Mark Kriegsman, June 30, 2014
// requires FastLED v2.1 or later
#define NUM_LEDS 250
#define LED_PIN 13
#define COLOR_ORDER RGB
#define BRIGHTNESS 255
#include "FastLED.h"
#define NUM_LEDS 250
#define LED_PIN 13
#define COLOR_ORDER RGB
#define LED_TYPE WS2811
CRGB leds[NUM_LEDS];
// Twinkling 'holiday' lights that fade up and down in brightness.
// Colors are chosen from a palette; a few palettes are provided.