xcode-select --install
brew install openssl readline sqlite3 xz zlib
This file contains 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
{ | |
"basics": { | |
"name": "Krishna Penukonda", | |
"label": "Full Stack Software Engineer", | |
"image": "https://avatars.githubusercontent.com/u/13855549?v=4", | |
"email": "[email protected]", | |
"phone": "+65 97300769", | |
"website": "https://penukonda.me", | |
"summary": "As an early engineer at a Y Combinator backed AI startup, I build scalable web-based AI content generation tools from scratch with a bias for fast delivery.", | |
"location": { |
A fast-paced 1v1 number-based game that develops fast arithmetic skills and teaches players the order of arithmetic operations.
- Select difficulty level via switch (3 levels?) and hit the start button
- Random sequence of digits is generated (number of digits increases with difficulty)
This file contains 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
""" | |
outputs the value of the associated Legendre function P_l,m(x) at a given point. | |
l and m must be non-negative integers. | |
""" | |
import numpy as np | |
from math import pi, sqrt, cos, factorial, e | |
def legendre(l): | |
"""returns a legendre polynomial in terms of cos(theta)""" | |
if l == 0: |
This file contains 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
""" | |
outputs the value of the associated Laguerre function L_p,qmp(x) at a given point. | |
p and qmp must be non-negative integers. | |
""" | |
#============================================================================== | |
# There are 3 main functions here. | |
# The first returns the Laguerre function as a poly1d objectfor a given q. | |
# The second returns a function of one variable that is the associated Laguerre polynomial | |
# The third returns the value of the normalized radial wave function at r for any values of n, l | |
#============================================================================== |