Skip to content

Instantly share code, notes, and snippets.

@akaban01
akaban01 / JS-file-read.html
Last active October 6, 2019 20:36
File Reader JS
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>file reader</title>
</head>
@akaban01
akaban01 / CSV-PapaParse.html
Created October 6, 2019 21:37
CVS File Reading PapaParse
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>file reader</title>
</head>
@akaban01
akaban01 / MagicSquareOdd.py
Created November 17, 2019 04:35
Takes odd number and create a magic square.
class MagicSquare:
def __init__(self, sideLength):
self.sideLength = sideLength
#1. Grid
self.grid = [[0 for x in range(sideLength)] for y in range(sideLength)]
#2.
i = 1
#3.
@akaban01
akaban01 / index.html
Created January 28, 2020 18:40
Mobile app nav using Bootstrap 4
<!doctype html>
<html lang="en">
<head>
<title>Mobile Nav</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->