Ollie Chick
Ollie Chick
Additionally, when using Ctrl + F to find text when using the light color scheme, it has a slightly off-white background and white text, making it basically impossible to read
I tried that, but it still doesn't work. I ran this function: ```python3 def test_create_folder(): mega = Mega() email = os.environ[ENV_MEGA_EMAIL] password = os.environ[ENV_MEGA_PASSWORD] m = mega.login(email, password) print(m.get_storage_space(giga=True)) m.create_folder("testfolder")...
I think I figured it out - I had some duplicates in my Mega account (multiples files with the same name in the same folder). Deleting these and removing them...
I disagree - in PHP, `x % y` only works with integers - "Operands of modulo are converted to integers (by stripping the decimal part) before processing" ([docs](https://www.php.net/manual/en/language.operators.arithmetic.php)). However, in...
What about when you want to findOrCreate based on non-unique input? (For example, finding or creating a car based on the numberplate and country.) An upsert doesn't work, because the...
To get this to work, I added: ```css #SITE_CONTAINER { z-index: 2; position: relative; } [id^='SITE_BACKGROUND_current'] { background-color: #00000000 !important; } ``` to bring the Wix site in front of...
@bvaughn is it possible to merge this PR? It is a small fix that removes strict-mode error
It think the lack of autocomplete is a barrier to entry for some players - I think it would be good to have it on by default, but able to...
I would suggest changing the `getSuggestions` function to this to avoid displaying the autocomplete when a county's name is selected from the autocomplete. ``` function getSuggestions(value: string) { const inputValue...
This solves #36