Skip to content

Instantly share code, notes, and snippets.

@MnkyArts
MnkyArts / CalendarSync.ps1
Created October 10, 2025 14:03
Outlook Calendar Bidirectional Sync Script it syncs events between two calendars in Outlook
# 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"
@MnkyArts
MnkyArts / shimmercard.vue
Created June 11, 2025 16:14
ShimmerCard Component
<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"
@MnkyArts
MnkyArts / gta-v-house-door-positions.json
Created August 20, 2024 18:11
GTA V House Coordinates - 600+ Door Positions
[
{
"id": 1,
"street": "Barbareno Rd",
"pos": {
"x": -3254.55,
"y": 1063.99,
"z": 11.1462
}
},
@MnkyArts
MnkyArts / Camera-Helper.js
Last active August 3, 2024 15:30
alt:V Camerapath Helper
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");
@MnkyArts
MnkyArts / GTAV-Bonedata.json
Last active February 21, 2025 20:49
GTAV Ped Bone Name, Bone ID, Bone Index
[
{
"boneName": "SKEL_ROOT",
"boneID": 0,
"boneIndex": 0
},
{
"boneName": "FB_R_Brow_Out_000",
"boneID": 1356,
"boneIndex": 111