This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Prime Number Finder | |
# Find all prime numbers betweeen 2 integers | |
# From a Grant Sanderson video | |
# Lockdown Math lesson 7 "What makes the natural log "natural"? | |
# Published May 8 2020 | |
# https://www.3blue1brown.com/lessons/ldm-natural-logs | |
import numpy as np | |
import math |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Infinite Series for the Sine Function</title> | |
</head> | |
<body> | |
<h2>Infinite Series for the Sine Function</h2> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Pascal's Triangle Coefficient Calculator</title> | |
</head> | |
<body> | |
<h2>Pascal's Triangle Coefficient Calculator</h2> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Triangle Inequality Theorem and Triangle Classification</title> | |
</head> | |
<body> | |
<h2>Triangle Inequality Theorem and Triangle Classification</h2> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>Arithmetic and Geometric Sequence and Series</title> | |
</head> | |
<body> | |
<P>A program that will identify and then solve Arithmetic and Geometric Sequences and Series<br> | |
after the user inputs the first three terms, a desired unknown term to be calculated,<br> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script id="jsbin-javascript"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin Test</title> | |
</head> | |
<body> | |
<p>Testing export to Gist from JSBin</p> | |
<script id="jsbin-javascript"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Inductance Meter Using Arduino - by J. Cantlin July 2, 2014 | |
A coil of unknown inductance is connected in an LC crcuit. The | |
Arduino "rings" the circuit with a PWM pulse from a digital output. | |
The decaying sine wave from the LC circuit, i.e., tank circuit is | |
sent to an LM339 comparator where it is converted to a square | |
wave. The square wave is sent to the Arduino where the "pulseIN" | |
fuction reades its with in microseconds and converts it to the | |
resonant frequency of the LC circuit. With a known value of |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/************************************************** | |
Udemy Arduino Step-by-Step Course | |
Section 6 Lecture 60 Ethernet Shield Telnet Control | |
With 16x2 LCD Text Display and DHT11 Temperature/Humidity Sensor | |
Quiz - Just For Fun - No Grade | |
by J. Cantlin | |
July 8, 2016 | |
***************************************************/ | |
/************************************************** |
NewerOlder