This file contains hidden or 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
from gensim.models import doc2vec | |
from numpy import zeros | |
print("Using optimization: %d" % doc2vec.FAST_VERSION) | |
sentences = [('food', 'I like to eat broccoli and bananas.'), | |
('food', 'I ate a banana and spinach smoothie for breakfast.'), | |
('animals', 'Chinchillas and kittens are cute.'), | |
('animals', 'My sister adopted a kitten yesterday.'), | |
('animals', 'Look at this cute hamster munching on a piece of broccoli.')] |
This file contains hidden or 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
from gensim.models import doc2vec | |
print("Using optimization: %d" % doc2vec.FAST_VERSION) | |
sentences = [('food', 'I like to eat broccoli and bananas.'), | |
('food', 'I ate a banana and spinach smoothie for breakfast.'), | |
('animals', 'Chinchillas and kittens are cute.'), | |
('animals', 'My sister adopted a kitten yesterday.'), | |
('animals', 'Look at this cute hamster munching on a piece of broccoli.')] |
This file contains hidden or 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
#!/bin/bash | |
# Original: | |
# https://blog.cloudflare.com/validating-leaked-passwords-with-k-anonymity | |
echo -n Password: | |
read -s password | |
echo | |
hash="$(echo -n $password | openssl dgst -sha1 -binary | xxd -p)" | |
upperCase="$(echo $hash | tr '[a-z]' '[A-Z]')" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
OlderNewer