Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
# This script was written to serve an alternative to the now-defunct gitpkg service
# It uses degit to fetch a repo and then creates patches for `patch-package`
pwd
packages=("shared" "calendar" "theme-shadcn")
project_root="$(git rev-parse --show-toplevel)"
temp_folder="$project_root/degit-temp"
export interface EventData {
id: string;
name: string;
description: string;
/** Event location, set to null if the event is online */
location: EventLocation | null;
hosts: EventHost[];
/** Start time in unix */
startTimestamp: number;
/** End time in unix, if set */
@justin-hackin
justin-hackin / Eventbrite Organizer Events Apify Actor - Dataset Types.ts
Last active June 7, 2025 15:58
Eventbrite Organizer Events Apify Actor - Dataset Types
```
Types for Eventbrite Organizer Events Apify Actor's dataset
```
interface EventbriteDateTime {
utc: string;
date_header: string;
timezone: string;
local: string;
formatted_time: string;