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
| # Outlook Calendar Bidirectional Sync Script | |
| # Syncs events between two calendars in Outlook | |
| # ============================================ | |
| # CONFIGURATION - EDIT THESE VALUES | |
| # ============================================ | |
| # Email addresses of your two accounts | |
| $Email1 = "example@example.com" | |
| $Email2 = "example2@example2.com" |
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
| <template> | |
| <div | |
| class="p-[1px] rounded-3xl h-full overflow-hidden" | |
| :class="containerClass" | |
| :style="{ backgroundImage: borderGradient }" | |
| > | |
| <div | |
| class="p-8 rounded-3xl flex flex-col justify-center items-center gap-2 h-full relative text-center" | |
| :style="{ backgroundImage: innerGradient }" | |
| :class="innerClass" |
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
| [ | |
| { | |
| "id": 1, | |
| "street": "Barbareno Rd", | |
| "pos": { | |
| "x": -3254.55, | |
| "y": 1063.99, | |
| "z": 11.1462 | |
| } | |
| }, |
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
| class CameraPath { | |
| waypoints: { position: alt.Vector3; rotation: alt.Vector3 }[]; | |
| totalDuration: number; | |
| camera: number | null; | |
| startTime: number; | |
| isActive: boolean; | |
| constructor(waypoints, totalDuration) { | |
| if (waypoints.length < 2) { | |
| throw new Error("At least two waypoints are required"); |
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
| [ | |
| { | |
| "boneName": "SKEL_ROOT", | |
| "boneID": 0, | |
| "boneIndex": 0 | |
| }, | |
| { | |
| "boneName": "FB_R_Brow_Out_000", | |
| "boneID": 1356, | |
| "boneIndex": 111 |