Skip to content

Instantly share code, notes, and snippets.

@not-ivy
not-ivy / script2.js
Last active January 25, 2020 23:54
css-console-log
var rainbow = ["red", "yellow", "pink", "green", "purple", "orange", "blue"];
function rainbowify(string) {
var splitString = string.split("");
var formatString = "";
var colorArguments = [];
for (var i = 0; i < splitString.length; ++i) {
formatString += "%c" + splitString[i];
colorArguments.push("color : " + rainbow[i % rainbow.length]);
@not-ivy
not-ivy / oblique
Created August 28, 2020 04:16
👀
b c d e f g h i j k l m
o o p q r s a c j i b k
b a t u v w x y z j u a
l d t i b y q f p a t a
i a d r s a t u s l c y
q a s t y s a t u d h o
u a f g a s u a s t g n
e z b a s f 0 e 1 5 8 1
g a t m e u w 1 1 4 8 q
i t g t y y u 2 5 7 7 9

Keybase proof

I hereby claim:

  • I am sourtaste000 on github.
  • I am sourtaste000 (https://keybase.io/sourtaste000) on keybase.
  • I have a public key ASCTJucqAuzAEUPvlPQ6o7uMy8OxFsDfdrPu9d042Yqm5Qo

To claim this, I am signing this object:

@not-ivy
not-ivy / image.txt
Last active September 25, 2020 23:15
iVBORw0KGgoAAAANSUhEUgAAAQAAAAEACAYAAABccqhmAAAgAElEQVR4nOy9CbhlWVUmuPaZ7vSmmMfMjIycyEwQSGQ0zU4KBSksW6Xlk7ZUbCwU5aMVLRDF8mEBMklaoImin1LalhaprVZjo1TZKOAABQnknGTkEPPwIl7EG+5wpr37W3u6++yzz333RbyIuHHjrvhuvHvPPOy19lr/mmBCE5rQhCY0oQlNaEITmtCEJjShCU1oQhOa0IQmNKEJTWhCE5rQhCY0oQlNaEITmtCVT2TyDsePfud3fidst9vB8vJyWKvVfNrYGqW9Ti0K/TqjeZSTsOYRCIGxAG+eUsq8IEhJHvcohTinLAY/6kFQS2D5SAYA2a5du9I3velNGSGEXe3Pd6OJsY19pIQMz9YTAXCF00c/+tHa4uJiDZrbmh6Nt6QUtkZR/VuiKNrXbNR2hWG0tRZEM2E9qHueVw/DKIqiMPLAD4gHHgEGDAjQjOZJFidJksQ5I90sTXtpmiylSbLYS9LjnU7nUJpmz9R8+nRKvUXonV2emZmJl5eX4/n5eXq1v4cLoYkAmNDQJBm+AbWZrZ4f7Gk0Gnc1W1PPnplqXV+rRdtaU1NbNs3NTc/MzEC9XodaFEIYhuD7PrK8GBzMA88HIIwAeGIA5pQBUAD8k6UJ5HkOcZJCkiTQ7Xah0+nA2bPnOu12ezHN0jPdbny00+0+du7s4tcJy78e0N6JJEnaANCbCIT10UQATGggzc/PN4OZHZtonu+dnZl+5VSr+aIwDG/asnXr7t27dk3PzkxDq9WCuWYAQRDwAYCzeg79gcXMV43s6RUHHl8vlyutANerv1xYEMoFw9JSmwuE5ZVVWFxcTBcWFo7FcXK00+t9fWlp6fNZEn8V4uVTt912W/t1r3tdPujeJjQRABNy0Ec+8pFGBxqb8zS5eW525rVBGL1433XX7d+1a+fmzZs3w85NTc7sOLNrRiXyb87EMvlBYrTPh3qZMfD4oCEeZ37+1xxExOMfRtSx
@not-ivy
not-ivy / themes.md
Last active November 1, 2021 06:40
color palettes that i collected
@not-ivy
not-ivy / fetches.md
Last active February 24, 2021 17:26
Fetch tools that I collected
@not-ivy
not-ivy / statify
Last active April 7, 2021 05:29 — forked from Who23/statify
An updated version of statify that works in kitty terminal
#!/bin/bash
# My Fork of Who23's statify script, changed to kitty image protocol
# A script to display current spotify track info in a small terminal window
# this includes art, track name, and artist. All art/text centered
# Copyright 2020 Aditya Shrivastava
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of this
# software and associated documentation files (the "Software"), to deal in the Software
@not-ivy
not-ivy / Nibble.md
Last active October 26, 2021 11:16
Nibble Assembly Parts

Nibble 65% Build

Base:

Amazon - $70 Waiting for restock...

Mechboards - £75.00($103.04)


@not-ivy
not-ivy / breathebg.css
Last active December 15, 2021 02:52
Monkeytype themes
/* ==UserStyle==
@name monkeytype nord
@namespace github.com/openstyles/stylus
@version 1.0.0
@description nord theme for monkeytype
@author refact0r
@homepageURL https://github.com/refact0r/monkeytype-themes
@updateURL https://github.com/refact0r/monkeytype-themes/raw/main/nord.user.css
==/UserStyle== */
@-moz-document domain("monkeytype.com") {
@not-ivy
not-ivy / action.yaml
Created December 21, 2021 17:45
Build rust program on linux, macos and windows with caching
name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always