Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
A CAS-library wrapped around sympy to simplify use of CAS-functionality in mathematics.
casify
casify
is a Python package that implements a simplified CAS (Computer Algebra System) for symbolic computation, wrapping around sympy
for facilitate its computations. The implementation provides both Norwegian and English names for all of its functions.
from casify import *
solution = solve("x**2 - x - 6 = 0")
print(solution)
from casify import *
løsning = løs("x**2 - x - 6 = 0")
print(løsning)
from casify import *
solution = solve("x + y = 2", "x - y = -1")
print(solution)
from casify import *
løsning = løs("x + y = 2", "x - y = -1")
print(løsning)
from casify import *
f = function("x**2 - x - 6")
print(f(2)) # Computes f(2)
from casify import *
f = funksjon("x**2 - x - 6")
print(f(2)) # Regner ut f(2)
from casify import *
f = function("x**2 - x - 6")
print(f.derivative()) # Gives the general expression for the derivative
print(f.derivative(2)) # computes f'(2)
from casify import *
f = funksjon("x**2 - x - 6")
print(f.derivert()) # gir det generelle uttrykket for den deriverte
print(f.derivert(2)) # regner ut f'(2)
from casify import *
print(factor("x**2 - x - 6")) # faktoriserer x**2 - x - 6
print(expand("2*(x - 1) * (x + 4)")) # utvider 2 * (x - 1) * (x + 4)
from casify import *
print(faktoriser("x**2 - x - 6")) # faktoriserer x**2 - x - 6
print(utvid("2*(x - 1) * (x + 4)")) # utvider 2 * (x - 1) * (x + 4)
FAQs
A CAS-library wrapped around sympy to simplify use of CAS-functionality in mathematics.
We found that casify demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.