Skip to content

Instantly share code, notes, and snippets.

View DaCuteRaccoon's full-sized avatar
:shipit:
Searching for food in dumpsters...

DaCuteRaccoon

:shipit:
Searching for food in dumpsters...
View GitHub Profile
@DaCuteRaccoon
DaCuteRaccoon / FizzBuzz.js
Created March 31, 2022 20:45 — forked from jaysonrowe/FizzBuzz.js
FizzBuzz JavaScript solution
for (var i=1; i <= 20; i++)
{
if (i % 15 == 0)
console.log("FizzBuzz");
else if (i % 3 == 0)
console.log("Fizz");
else if (i % 5 == 0)
console.log("Buzz");
else
console.log(i);
{
"username": "DaCuteRaccoon",
"name": "Procyon Lotor",
"type": "Raccoon",
"favoriteNumber": 7,
"secondFavoriteNumber": 3,
"favoriteHex": "0x7",
"favoriteBin": "0b111",
"favoriteOctal": "0o7",
@DaCuteRaccoon
DaCuteRaccoon / howto.md
Created March 16, 2022 17:58
How to do stuff.

How to make a dry ice bomb

This is one of the most simple bombs to make. It is used for many different things. If your just out having fun take a two liter soda bottle and fill it three quarters with water. Then take a piece of dry ice and crush it. Put just enough to make a layer at the bottom of the jug. Now cap it and run! You wil have about 10 to 15 sec before it detonates. It will make quite a boom! I set of a car alarm 30 - 40 feet away with one of these! Now if you are in a war or need one for self defense you can do the same procedure exept use a glass bottle. this will throw glass shrapnel, so it can do some damage on a human.

import turtle
t = turtle.Turtle()
for i in range(20):
t.circle(50)
t.rt(18)
{
"_meta": {
"sources": [
{
"json": "RHoD",
"abbreviation": "RHoD",
"full": "Red Hand of Doom",
"url": "",
"authors": [],
"convertedBy": []
@DaCuteRaccoon
DaCuteRaccoon / bga.css
Last active March 7, 2022 19:37
Custom CSS for Board Game Arena!
/* https://gist.github.com/DaCuteRaccoon/f5a96a3ee8cb2c0ee6dd2cdd77dfc3e0 */
html, body {
height: 100%;
/* background-image: url(INSERT URL FOR NEW BACKGROUND IMAGE HERE); */
background: rgb(2,0,36);
background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
}

Notes on the Ruby programming language

Documentation

Ruby Docs

Local docs using BASH

ri upcase # documents for upcase method
{
"_comment": "comment text goes here...",
"glossary": {
"title": "example glossary",
"GlossDiv": {
"title": "S",
"GlossList": {
"GlossEntry": {
"ID": "SGML",
"SortAs": "SGML",
@DaCuteRaccoon
DaCuteRaccoon / ForkWithReplit.md
Created February 28, 2022 20:19
How to fork and run with Replit

How to fork and run a repo/repl with Replit

1. Login

First, login to Replit. If that link doesn't work, use this one.
It doesn't matter if you have an account yet. Just do

2. Fork Repo

image Click the fork button in the top-right of the screen. If it asks you which account to choose, just choose your main account.

@DaCuteRaccoon
DaCuteRaccoon / RunTheRepl.html
Created February 27, 2022 19:59
...to see the output
<!doctype html>
<html lang="en">
<head>
<title>Run The Repl</title>
<style>
body {
margin: 0;
height: 100vh;