-
login successfull
game saved to the cloud successfully
-
When you search for "cream with" you get more results than for "cream", which indicates we run an "or" search, not an "AND".
-
As a user, I want to know what words and phrases other users have searched for most often in the last week/month/year.
-
```python
def get_np(node, terms):
if node["pos"] == "NOUN":
terms.append(node)
if len(node["children"]) == 0:
return
else:
for c in node["children"]:
…
-
currently you can't boost phrases, only words split on whitespace. We should be able to boost phrases, too
-
# Help us help you
- [x] I have checked that my issue [doesn't exist yet](https://github.com/alliedmodders/sourcemod/issues).
- [x] I have tried my absolute best to reduce the problem-space and …
-
AntVo updated
5 years ago
-
Tested version: minter-console-0.6.2-portable-x64.exe
All seed phrases, which have been submitted in the login form are stored unencrypted in the following plain text file: \Users\\AppData\Roaming\mi…
-
Can btcrecover support recovering seed phrases for TON wallets? and is there any special preparation for it to support TON wallets?
-
Comments work okay, but it would be very helpful to have the description also be a source to check for trigger phrases. We have a pull request description template contains options of available trigge…