
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Conversational math active learning.
K-12 student can learn math from a chatbot that helps them actively solve math problems suitable to their skill level.
If you have install python packages from source before, you will probably be able to follow these steps to get going quickly:
pip install --upgrade pip virtualenv poetry
git clone git@gitlab.com:tangbileai/community/mathactive
cd mathactive
python -m virtualenv .venv
source .venv/bin/activate || source .venv/Scripts/activate
pip install --editable .
def get_countq_start_step(difficulty=0.01):
""" Predict the parameters of a quiz question generator based on the desired difficulty
>>> get_start_step(difficulty=.02)
{'start': 0, 'step': 1}
>>> get_start_step(difficulty=.03)
{'start': 0, 'step': 1}
>>> get_start_step(difficulty=.04)
{'start': 10, 'step': 1}
"""
├── docs
│ ├── AIMA approaches to creating a chatbot.md
│ ├── ...
├── pyproject.toml
├── README.md
├── scripts
│ ├── bump_version.py
│ ├── release.sh
│ └── requirements.txt
└── src
└── mathactive
├── data
│ └── difficulty_start_stop_step.csv
├── data.csv
├── db.sqlite3
├── generators.py
├── hints.py
├── machine.py
├── manage.py
├── microlessons
│ ├── num_one.py
│ └── utils.py
├── personalize.py
├── python_quiz.py
├── questions.py
├── utils.py
├── webapp
│ ├── admin.py
│ ├── apps.py
│ ├── migrations
│ ├── models.py
│ ├── tests.py
│ └── views.py
└── website
├── asgi.py
├── settings.py
├── urls.py
└── wsgi.py
FAQs
Conversational math active learning.
We found that mathactive demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers 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.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.