When making this website, i wanted a simple, reasonable way to make it look good on most displays. Not counting any minimization techniques, the following 58 bytes worked well for me:
main {
max-width: 38rem;
padding: 2rem;
margin: auto;
}| MIT License | |
| Copyright (c) 2018 T.V. Christiaanse | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is | |
| furnished to do so, subject to the following conditions: |
| import numpy as np | |
| from numba import jit, f8 | |
| ## Tri Diagonal Matrix Algorithm(a.k.a Thomas algorithm) solver | |
| @jit(f8[:] (f8[:],f8[:],f8[:],f8[:] )) | |
| def TDMAsolver(a, b, c, d): | |
| ''' | |
| TDMA solver, a b c d can be NumPy array type or Python list type. | |
| refer to http://en.wikipedia.org/wiki/Tridiagonal_matrix_algorithm | |
| and to http://www.cfd-online.com/Wiki/Tridiagonal_matrix_algorithm_-_TDMA_(Thomas_algorithm) |