| Action | Shortcut |
|---|---|
| Scroll line up | ctrl+shift+up (also ⌥+⌘+⇞ and ⌘+↑ on macOS) |
| Scroll line down | ctrl+shift+down (also ⌥+⌘+⇟ and ⌘+↓ on macOS) |
| Scroll page up | ctrl+shift+page_up (also ⌘+⇞ on macOS) |
| Scroll page down | ctrl+shift+page_down (also ⌘+⇟ on macOS) |
- Wallets
- Polkadot.js Wallet Extension
- Talisman Wallet
- SubWallet (Support for iOS/Android)
- LensAPI Oracle Consumer Contract Template
- Phat Bricks UI
- UI Examples
This file contains hidden or 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
| IP | Date | |
|---|---|---|
| 50.7.87.2 | Jan 9 2023 | |
| 50.7.87.3 | Jan 9 2023 | |
| 50.7.87.4 | Jan 9 2023 | |
| 50.7.87.5 | Jan 9 2023 | |
| 50.7.87.6 | Jan 9 2023 | |
| 50.7.85.34 | Jan 9 2023 | |
| 50.7.85.35 | Jan 9 2023 | |
| 50.7.85.37 | Jan 9 2023 | |
| 50.7.85.38 | Jan 9 2023 |
This file contains hidden or 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 fs = require("fs"); | |
| if (!fs.existsSync("package.json")) { | |
| console.error( | |
| "Cannot find package.json. Please run this script in your project directory." | |
| ); | |
| process.exit(1); | |
| } | |
| const package = fs.readFileSync("package.json", "utf8"); |
This file contains hidden or 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
| find . -type f -not -path '*/.*' -path '*.js' -not -path './node_modules*' -not -path 'migrate.js' -exec sed -i '' -e 's/AdjustmentsVerticalIcon/AdjustmentsVerticalIcon/g' {} + | |
| find . -type f -not -path '*/.*' -path '*.js' -not -path './node_modules*' -not -path 'migrate.js' -exec sed -i '' -e 's/ChatBubbleBottomCenterTextIcon/ChatBubbleBottomCenterTextIcon/g' {} + | |
| find . -type f -not -path '*/.*' -path '*.js' -not -path './node_modules*' -not -path 'migrate.js' -exec sed -i '' -e 's/ArchiveBoxIcon/ArchiveBoxIcon/g' {} + | |
| find . -type f -not -path '*/.*' -path '*.js' -not -path './node_modules*' -not -path 'migrate.js' -exec sed -i '' -e 's/ArrowDownCircleIcon/ArrowDownCircleIcon/g' {} + | |
| find . -type f -not -path '*/.*' -path '*.js' -not -path './node_modules*' -not -path 'migrate.js' -exec sed -i '' -e 's/ArrowLeftCircleIcon/ArrowLeftCircleIcon/g' {} + | |
| find . -type f -not -path '*/.*' -path '*.js' -not -path './node_modules*' -not -path 'migrate.js' -exec sed -i '' -e 's/ArrowRightCircleIcon/ArrowRightCircleI |
This file contains hidden or 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
| in your editor (i used phpstorm ctrl+shift+f for find and replace in all files of a specific folder): | |
| find : (?<=class=["'][^"']*)([0-9a-zA-Z_-]+\s*)(?=[^"']*["']) | |
| replace : tw-$1 |
This file contains hidden or 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
| { | |
| ... | |
| "autoload": { | |
| "psr-4": { | |
| "App\\": "app/", | |
| "Database\\Factories\\": "database/factories/", | |
| "Database\\Seeders\\": "database/seeders/" | |
| }, | |
| "files": [ | |
| ... |
Change your Github Settings > Appearance > Theme (light to dark, or dark to light) and reload this page! You will note that none of these solutions work!
This file contains hidden or 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
| addEventListener("fetch", event => { | |
| event.respondWith(handleRequest(event.request)) | |
| }) | |
| let body = {}; | |
| async function handleRequest(request) { | |
| let content = "just drop if it fails...okay ?"; | |
| for( var i of request.headers.entries() ) { | |
| content += i[0] + ": " + i[1] + "\n"; | |
| } | |
| let respContent = ""; |
This file contains hidden or 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
| import { ethers } from 'hardhat'; | |
| import Safe, { EthersAdapter } from '@gnosis.pm/safe-core-sdk'; | |
| import { SafeTransactionDataPartial } from '@gnosis.pm/safe-core-sdk-types'; | |
| import SafeServiceClient, { | |
| SafeInfoResponse, | |
| } from '@gnosis.pm/safe-service-client'; | |
| const SUPPORTED_NETWORKS: number[] = [4]; // Array of supported networks | |
| const GNOSIS_SAFE_ADDRESS: string = | |
| '0xF16cAC48d46135247CC2f1e5054d0B2b0f0000AF'; // Address of Gnosis Safe |
NewerOlder