| Original AlpineJS | Svelte Translation | Explanation |
|---|
| <?php | |
| /** | |
| * In your Livewire model for the list of items | |
| */ | |
| class ItemList extends Component | |
| { | |
| // rest of component |
| <?php | |
| namespace App\Traits; | |
| trait HasLinks | |
| { | |
| // $model->links = array | |
| public function getLinksAttribute(): array | |
| { |
| image: "rust:latest" | |
| default: | |
| before_script: | |
| - rustc --version | |
| - cargo --version | |
| stages: | |
| - test |
| name: Security audit | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' | |
| push: | |
| paths: | |
| - '**/Cargo.toml' | |
| - '**/Cargo.lock' | |
| jobs: | |
| security_audit: |
✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨
SUPPORT MY WORK - Everything Helps Thanks
YouTube 🔗 https://YouTube.GetMeTheGeek.com
Buy Me a Coffee ☕ https://www.buymeacoffee.com/getmethegeek
Hire US 🔗 https://getmethegeek.com
Digital Ocean referral 🔗 https://tiny.cc/plxdigitalocean
✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨
Download Oracle Instant Client libraries (URL may change, already happened few times). Be sure you download correct (x64 or x32) architecture. And correct version.
Last time I used Client 23.26.2.0.0 with Oracle 12c and PHP 8.5.
Before that Instant Client 23.8.0.0.0 with Oracle 12c and PHP 8.4.
Before that Instant Client 23.6.0.0.0 or 21.5.0.0.0 with Oracle 12c and PHP 8.1 and 8.3.
Before that Instant Client 21.3.0.0.0 with Oracle 12c and compiled with PHP 8.0, 7.4 and 7.3 fine.
| #!/usr/bin/env bash | |
| # MIT © Sindre Sorhus - sindresorhus.com | |
| # git hook to run a command after `git pull` or `git checkout` if a specified file was changed | |
| # Run `chmod +x post-checkout` to make it executable then put it into `.git/hooks/`. | |
| changed_files="$(git diff-tree -r --name-only --no-commit-id HEAD@{1} HEAD)" | |
| check_run() { | |
| echo "$changed_files" | grep --quiet "$1" && echo " * changes detected in $1" && echo " * running $2" && eval "$2" |