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 / vcard.html
Created April 3, 2023 20:13 — forked from dun4n/vcard.html
#JavaScript vcard generator example
<!doctype html>
<html>
<head>
<script type="text/javascript" src="vcard2.js"></script>
</head>
<body>
<script type="text/javascript">
// With helper methods
var fooBar = vCard.create(vCard.Version.FOUR)
fooBar.addFormattedname("Mr Foo Bar")
@DaCuteRaccoon
DaCuteRaccoon / gist:31a85e828db8236bb55752f87a488364
Created June 8, 2022 18:06 — forked from whateverppl/gist:51d8adeede6a38e440e5
Reactor idle save (nothing but 1.5 tril)
NoRgLAnA7ADGkUYgTAVlQGhhg3gX1wCIBbASwDtTCAuYbAFwCcBXAUwybdwOGHOYA2ArCP5CAuhj6Dh2bGIGTpQkfJlKFqjAo0ytOqZrnb1hvcYPLZo01f22jNiWZUWH5p4pfW1zu279HXy9/T11XMO97QI9g8J8TGIi4qICQoMT02Mz46KzknNTI0JSSwrLLDMrs6oLahPq83LTm4qr3Oo6Grqai0vak7sHeip6WvvKB/KHpkanW/pqxtqXh8dG1lc7Nxe3Z9fmJxoPV/a2ZhcnTy+Pzueuj5d2Lx52rvZun95eNs+f7j6vP7fAE/Q6/T5vW7/E6AiFAyHA6Eg2Fgh7wjHgrHo7Fw3FovE4omEkkEsmgimoyl3Km0mn0mEMlFM5Gsr5sqHsrmcnlI7l83mIoUIkWY4nkumMqXM6UcgXy4Vi0nU2X8xX4lUyrVy9XizU60UayXatWGvXGg1KiUs01W/W2o02wVm5UWh3mp0Kl3W1XOu1uv2O31e/2e3WusPe+2Bj3B8M+k0xiNxqMBkNBxPp2OZ+PRrPJnOpyOhlMlwtly0ZyvZ6sF2sJ+t53Np5vFqvuusdhtdptF0vtpPdwe9is9lviSQkVgAE1IzGINDoHBY7AAZgBDAQAZ3Y+Cko+HLb75YH+aHZ5Hp9b/ZrY7bt8P987j5vz4vR4P76f5+vJ4fX9fH9j0bD8r2Au9AMvf9fxA78oLfGCIL/BDwJfZCgM/RC0NgyDQOg1CAPQ+CMLAzCCKwwicKIvCULIujSIY/D6KYxjaNYkiWM4tiuI47i+N4gTiKEmjBJE4S4LEySJOk3CZOouSqMUpClOw5S1NUjTKPUrTNIovTyIM5j+PE2TTPksyVJ0qz9KM0SFO0mz2JM8yXMsxyeOctzDKcqSLIc7yPN81z/NszyQp8+zBQnDBCAAI1IABzRcGBXDAN23XceFCoKvOyyLrIC4ycvCwL8vcoqysKuy/N0qqwtqvKaoKxrgoaiKmvK6rWua9rus6+qetKjq6uKtqhr
@DaCuteRaccoon
DaCuteRaccoon / dirty words list from google.txt
Created June 7, 2022 04:42 — forked from jm3/dirty words list from google.txt
Dirty word list (via GOOG + jamiew)
4r5e
5h1t
5hit
a55
anal
anus
ar5e
arrse
arse
ass
@DaCuteRaccoon
DaCuteRaccoon / 1-fizz_buzz.rb
Created April 7, 2022 04:05 — forked from JoshCheek/1-fizz_buzz.rb
Ruby Code Golf solutions
puts Solution.new('1. Fizz Buzz', <<SOLUTION)
def fizzbuzz(n)(n%15==0?'FizzBuzz':n%3==0?'Fizz':n%5==0?'Buzz':n).to_s end
SOLUTION
.test { fizzbuzz 3 }.expect { |result| result == "Fizz" }
.test { fizzbuzz 10 }.expect { |result| result == "Buzz" }
.test { fizzbuzz 45 }.expect { |result| result == "FizzBuzz" }
.test { fizzbuzz 31 }.expect { |result| result == "31" }

What is Leisure?

Simply put, Leisure is a document-oriented, exploratory computing environment for what we call Illuminated Programming. Leisure documents are:

  • editable
  • collaborative
  • interactive
  • web-based (zero install)

Illuminated Programming is our term for application, source code, and data, all rolled up into one interactive, collboratively editable

@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);

Notes on the Ruby programming language

Documentation

Ruby Docs

Local docs using BASH

ri upcase # documents for upcase method
@DaCuteRaccoon
DaCuteRaccoon / gist:6acf7bacde141097408b240308d675c7
Created February 23, 2022 11:07 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
[
{
"name":"ABAP",
"type":"programming",
"extensions":[
".abap"
]
},
{
"name":"AGS Script",
@DaCuteRaccoon
DaCuteRaccoon / Online code utilities.md
Created February 13, 2022 21:21 — forked from fghber/Online code utilities.md
Online code utilities

Web IDEs

ideone Ideone is an online compiler and debugging tool which allows youto compile source code and execute it online in more than 60 programming languages and share links to the code.
repl.it Like ideaone, can also install missing Python packages.
Onlilne GDB Online compiler and debugger forC, C++, Python, Java, PHP, Ruby, Perl, Pascal, Fortran, Haskell, Objective-C, Assembly, HTML, CSS, JS, SQLite, Prolog, and more.
Coding Ground Advanced IDEs for C/C++, C#, GO, Java, PHP, Perl, Python, Octave/MATLOAB, R, Ruby, Scala, and compiler/interpreter for many other languages and frameworks.
JDOODLE very similar to ideone but a somewhat different set of languagse/compilers.

Dedicated: