Learn a language using flashcards
Save the words from everywhere
Learn by watching videos and movies
Use integrated translator
What users say about our app
Joseph
Nina
Thanks for such a great app!
For me, it’s super cool and convenient for learning languages.
I also shared it with my friends and they are no less satisfied
Radim
Great app, simply the best of the best, and you can immediately translate the movie and click on the word, the translator is super, and words are easy to learn + that you can learn two different languages, thank you very much.
Study new words and phrases you pick from thematic sets of cards
These sets are created by the community, reviewed by us and sorted by popularity. Teachers can easily create public or private sets.
Learn any foreign language by watching videos and reading articles
And saving new words and phrases as flashcards.
Study new words and phrases you pick from thematic sets of cards
These sets are created by the community, reviewed by us and sorted by popularity. Teachers can easily create public or private sets.
Blog
Vm-bgvbot
# Encrypt data sk, pk = bgv_keygen(level=128) ct_a = encrypt(pk, [1,2,3,4]) ct_b = encrypt(pk, [5,6,7,8]) script = """ LOAD R0, ct_a LOAD R1, ct_b C_ADD R0, R1 → R2 C_BOOT R2 STORE R2, result """ Send to cloud where vm-bgvbot runs vm.run("compute.vmb", inputs=[ct_a, ct_b], output="result.enc") Download and decrypt ct_out = load("result.enc") plain = decrypt(sk, ct_out) # [6,8,10,12]
:
: vm-bgvbot receives the encrypted script and inputs, executes them within an attested enclave, returns only the encrypted result – no plaintext exposure at rest or in memory . Would you like a code skeleton (Python + a Rust/C++ BGV library like Lattigo or SEAL) that demonstrates a minimal vm-bgvbot with a few homomorphic instructions? vm-bgvbot
| Instruction | Operands | Effect | |-------------|----------|--------| | C_ADD | ct1, ct2 → ct_out | Homomorphic addition (coefficient‑wise) | | C_MUL | ct1, ct2 → ct_out | Tensor product + key‑switching & relinearization | | C_MSB | ct, bit_pos → ct_out | Extract most significant bit (homomorphic) | | C_ROT | ct, steps → ct_out | Galois automorphism / cyclic rotation | | C_BOOT | ct → ct'_clean | Full bootstrapping (reduces noise) | | C_MODSW | ct → ct' | Modulus switching (reduce noise, shrink modulus chain) | # Encrypt data sk, pk = bgv_keygen(level=128) ct_a
:
triggers: - type: mqtt topic: "encrypted/sensors/temp" batch: 100 timeout_sec: 300 context: security_level: 128 modulus_chain_length: 5 auto_bootstrap: true # Encrypt data sk

