Skip to content

Instantly share code, notes, and snippets.

View ItsASine's full-sized avatar
:shipit:

Kayla ItsASine

:shipit:
View GitHub Profile
@ItsASine
ItsASine / table.css
Created July 22, 2020 15:33
table-css
.styled-table {
border-collapse: collapse;
margin: 25px 0;
font-size: 0.9em;
font-family: sans-serif;
min-width: 400px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.styled-table thead tr {
@ItsASine
ItsASine / jasmine.html
Created May 30, 2019 01:47
Standalone Jasmine Tests
<!-- script src='spec file' -->
<div>
<div id="specs"></div>
</div>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jasmine/3.0.0/jasmine.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jasmine/3.0.0/jasmine.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jasmine/3.0.0/jasmine-html.js"></script>
@ItsASine
ItsASine / cors.sh
Created January 14, 2019 02:14
Open Chrome with CORS disabled
open -a Google\ Chrome --args --disable-web-security --user-data-dir
@ItsASine
ItsASine / rsa.py
Created July 4, 2018 18:49
Testing out an RSA logic script with super low primes
import sys
sys.setrecursionlimit(100)
def eea(stuff, thing):
if stuff != 0:
(gcd, s, t) = eea(thing % stuff, stuff)
return gcd, t - (thing // stuff) * s, s # // is quotient only division