"guzzlehttp/guzzle": "4.1.x",
"guzzlehttp/oauth-subscriber": "0.1.x",
"league/oauth1-client": "~1.0",
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
{ | |
"private": true, | |
"scripts": { | |
"wsl:lan:start": "export env REACT_NATIVE_PACKAGER_HOSTNAME=$(powershell.exe -executionpolicy bypass -File wsl-get-lan-ip.ps1) && yarn wsl:port-forward && yarn start", | |
"wsl:port-forward": "powershell.exe -executionpolicy bypass -File wsl-port-forward.ps1", | |
} | |
} |
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
// ========================================================================= | |
// tailwind.config.js | |
// ========================================================================= | |
const { platformSelect } = require("nativewind"); | |
module.exports = { | |
theme: { | |
// see: https://www.nativewind.dev/guides/theme-values | |
// see: https://tailwindcss.com/docs/configuration | |
extend: { |
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 | |
/** | |
* Todo: Decouple from Laravel's Caching system | |
**/ | |
use GuzzleHttp\Collection; | |
use GuzzleHttp\Event\BeforeEvent; | |
use GuzzleHttp\Event\CompleteEvent; | |
use GuzzleHttp\Event\EmitterInterface; |
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
UPDATE table SET column = 'AD' WHERE column = 'AND'; | |
UPDATE table SET column = 'AE' WHERE column = 'ARE'; | |
UPDATE table SET column = 'AF' WHERE column = 'AFG'; | |
UPDATE table SET column = 'AG' WHERE column = 'ATG'; | |
UPDATE table SET column = 'AI' WHERE column = 'AIA'; | |
UPDATE table SET column = 'AL' WHERE column = 'ALB'; | |
UPDATE table SET column = 'AM' WHERE column = 'ARM'; | |
UPDATE table SET column = 'AN' WHERE column = 'ANT'; | |
UPDATE table SET column = 'AO' WHERE column = 'AGO'; | |
UPDATE table SET column = 'AQ' WHERE column = 'ATA'; |