This is a guide to configure React Native to be built for native and web platforms with Typescript, Vite.js and Storybook support for modelling components.
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
ls -w 1 > list && sed -i -e 's/^list$//' list && sed -i -e 's/^\(.\+\)$/file \'\1\'/' list && cat list && ffmpeg -f concat -safe 0 -i list -c copy output.mp4 |
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
[...document.querySelectorAll('.wallet_table_row')] | |
.map(x => { | |
if (x.querySelector('.wht_items').innerText.includes('£')) return x.parentElement.removeChild(x); | |
let amount = (Math.random() * 20).toFixed(2); | |
x.querySelector('.wht_total').innerText = "£" + amount; | |
x.querySelector('.wht_wallet_change').innerText = "-£" + amount; | |
x.querySelector('.wht_wallet_balance').innerText = "£0.00"; | |
}); | |
[...document.querySelectorAll('.wth_payment')].map(x => x.innerText = 'Visa **37'); |
NewerOlder