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
| Frame 780: 10.80ms (92.6 FPS avg over last 60 frames) | |
| Frame 840: 10.75ms (93.0 FPS avg over last 60 frames) | |
| Frame 900: 10.73ms (93.2 FPS avg over last 60 frames) | |
| Frame 960: 10.83ms (92.3 FPS avg over last 60 frames) | |
| Frame 1020: 10.90ms (91.7 FPS avg over last 60 frames) | |
| Frame 1080: 10.76ms (92.9 FPS avg over last 60 frames) | |
| Frame 1140: 10.77ms (92.9 FPS avg over last 60 frames) | |
| Frame 1200: 10.83ms (92.4 FPS avg over last 60 frames) | |
| Frame 1260: 11.15ms (89.7 FPS avg over last 60 frames) | |
| Frame 1320: 10.75ms (93.1 FPS avg over last 60 frames) |
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
| // ... | |
| let host = cpal::default_host(); | |
| // Mic device (channel 0 / left) | |
| let mic_device = host.default_input_device().expect("no input device"); | |
| let mic_config = mic_device.default_input_config().expect("no mic config"); | |
| println!("[dual-source] Mic: {:?}", mic_device.name()); | |
| // System audio loopback device (channel 1 / right) |
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
| #!/usr/bin/osascript | |
| # Required parameters: | |
| # @raycast.schemaVersion 1 | |
| # @raycast.title focus window_name | |
| # @raycast.mode silent | |
| # Optional parameters: | |
| # @raycast.icon 🪟 |
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
| { | |
| "version": "v0.0.41", | |
| "notes": "chore: update beta", | |
| "pub_date": "2025-09-07T01:52:43Z", | |
| "platforms": { | |
| "darwin-x86_64": { | |
| "signature": "dW50cnVzdGVkIGNvbW1lbnQ6IHNpZ25hdHVyZSBmcm9tIHRhdXJpIHNlY3JldCBrZXkKUlVUUjRYWkN6NHd6ejhOVWhobkMvZTNjTFcwNlZ2aFZyQjgzbDQ1ZnlUaDcwVXlvNFllcms3dCs0bVpGc1JTenVMRW1ucUlaanRVM0ZkNW1vRFQvMW56TEFKMG1IVHgvZUEwPQp0cnVzdGVkIGNvbW1lbnQ6IHRpbWVzdGFtcDoxNzU3MjA5NjUxCWZpbGU6WmFwLmFwcC50YXIuZ3oKay9FRC9IQ0o2S2paUGwyeDRJWU1sV3dPUnQ4MmNQanBiM1hrbFN1Z0FCcVV6aUlhUFdCd3BwbmhYekZidUp0WTZSUTFwS1pLUVZpcG5XN3JBaWRHQUE9PQo=", | |
| "url": "" | |
| }, |
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 ApolloClient from 'apollo-client'; | |
| import { HttpLink } from 'apollo-link-http'; | |
| import { concat } from 'apollo-link'; | |
| import { GRAPHQL_API_URL } from 'config/consts'; | |
| import { InMemoryCache } from 'apollo-boost'; | |
| import authMiddleware from './apollo/authMiddleware'; | |
| import errorMiddleware from './apollo/errorMiddleware'; | |
| const defaultOptions = { | |
| watchQuery: { |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Hello World!</title> | |
| <link rel="stylesheet" type="text/css" href="./styles.css"> | |
| </head> | |
| <body> | |
| <h1>Fade In/Out Window Example</h1> |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Hello World!</title> | |
| <link rel="stylesheet" type="text/css" href="./styles.css"> | |
| </head> | |
| <body> | |
| <h1>Fade In/Out Window Example</h1> |
NewerOlder