Because arrays are mutable. The index of any given item can and will change if items are added to or removed from the array. You want your key to be a unique value identifying only your unique component. A primary key that you create is always better than using an index. Here is an example. (https://stackoverflow.com/questions/44531510/why-not-always-use-the-index-as-the-key-in-a-vue-js-for-loop)
This file contains 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
const FilePondPluginFilenameLengthValidation = ({ addFilter, utils }) => { | |
const { Type } = utils; | |
function validateFile(file, maxLength, errorMessage) { | |
return file.name?.length > maxLength | |
? { status: { main: errorMessage.replace('{maxLength}', maxLength), sub: '' }} | |
: true; | |
} | |
addFilter('ALLOW_FILE', (file, { query }) => { |
This file contains 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
sudo apt install android-tools-adb | |
sudo apt install android-tools-fastboot | |
fastboot flash recovery recovery.img | |
adb sideload vbmeta.img | |
adb sideload super_empty.img | |
adb sideload dtbo.img | |
adb sideload boot.img | |
adb sideload lineage-19.1-20231006-nightly-vayu-signed.zip |
I hereby claim:
- I am mykola-veryha on github.
- I am veryham (https://keybase.io/veryham) on keybase.
- I have a public key ASB5olhAbNKDTEfhW4Ou4qE1k12B7LaIWBHqG9R4su4PPgo
To claim this, I am signing this object:
This file contains 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
const getFormValuesObject = (selector) => { | |
const form = document.querySelector(selector); | |
const formData = new FormData(form); | |
const formValues = {}; | |
for (const [name, value] of formData.entries()) { | |
formValues[name] = value; | |
} | |
return formValues; | |
}; |
This file contains 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
const BASE_URL = 'https://countriesnow.space/api/v0.1/countries' | |
let getCountries = async () => { | |
const response = await fetch(`${BASE_URL}`).then(response => response.json()) | |
const { data } = response | |
data.forEach((country) => { | |
if (names.includes(country.country)) { | |
console.log(country) // {"country": "Afghanistan", "cities": [ "Herat", "Kabul", "Kandahar", "Molah", ...]} | |
} |
This file contains 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
<?php | |
/** | |
* @file | |
* Contains install, update and uninstall functions for the User module. | |
*/ | |
use Drupal\Core\Config\FileStorage; | |
use Drupal\Core\Site\Settings; | |
use Drupal\field\Entity\FieldConfig; |
This file contains 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
<?php | |
$states = [ | |
'australia_states' => [ | |
'NSW' => 'New South Wales', | |
'QLD' => 'Queensland', | |
'SA' => 'South Australia', | |
'TAS' => 'Tasmania', | |
'VIC' => 'Victoria', | |
'WA' => 'Western Australia', |
This file contains 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
<?php | |
namespace Drupal\MODULE_NAME\Plugin\Filter; | |
use Drupal\filter\FilterProcessResult; | |
use Drupal\filter\Plugin\FilterBase; | |
/** | |
* Provides a filter to limit allowed HTML tags. | |
* |
This file contains 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 surnet/alpine-wkhtmltopdf:3.9-0.12.5-full as wkhtmltopdf | |
FROM wodby/drupal-php:7.4-dev-4.15.3 | |
USER root | |
# Install dependencies for wkhtmltopdf | |
RUN apk add --no-cache \ | |
libstdc++ \ | |
libx11 \ | |
libxrender \ |
NewerOlder