Skip to content

Instantly share code, notes, and snippets.

View nbuechler's full-sized avatar

Nathaniel Buechler nbuechler

View GitHub Profile
@nbuechler
nbuechler / jQueryGridTargeting.html
Created March 5, 2020 01:43
jQuery Boilerplate for Building Interactive Grid with configurable rows and columns
<html>
<head>
<title>jQueryGridTargeting</title>
</head>
<style>
#rows {
display: flex;
flex-direction: column;
}
@nbuechler
nbuechler / centered_hexagonal_primes.py
Created February 5, 2019 02:18
Find Centered Hexagonal Primes
# Python program for practical application of sqrt() function
# https://en.wikipedia.org/wiki/Centered_hexagonal_number
# Finding Centered hexagonal primes
import sys
# import math module
import math
# function to check if prime or not