Skip to content

Instantly share code, notes, and snippets.

/**
* This theme is _not_ perfect in the slightest, but it achieves my goal of
* making a dark theme for much of the DO UI.
* Suggestions are welcome, and will be implemented to this theme at my own discretion.
*/
svg rect {
fill: #1f1f1f !important; /* Solid Dark Grey */
stroke: #333333; /* Optional: adds a subtle border */
stroke-width: 1px;
@rdmorris
rdmorris / WhisperSweetNothings.pub
Last active January 24, 2026 03:49
Pub RSA key
-----BEGIN PUBLIC KEY-----
MCowBQYDK2VuAyEAHuwOJwn18Gp31XNtQdNkjeZPXr3ZMNZkwr+EzIq/PAU=
-----END PUBLIC KEY-----
import 'dart:math';
extension exponent on num {
num operator ^(double power) {
return pow(this, power);
}
}
void main(){
int x = 8;
double y = 8;
print('x^2: ${x^2}');