Skip to content

Instantly share code, notes, and snippets.

View JessicaSachs's full-sized avatar
🍓
Blend.js 👀

Jess JessicaSachs

🍓
Blend.js 👀
View GitHub Profile
@JessicaSachs
JessicaSachs / example-code.ts
Last active September 12, 2023 22:15
Relationships between exported functions and their resolved signatures and return types
// Here's the attempt by a Babel parser to deal with this code https://shorturl.at/clADR
// Totally not related to the proposed schema above.
/**
* All the valid ButtonSizes
*/
export type ButtonSize = "small" | "medium" | "large";
export function MyButton({ size = 'small' }: { size: ButtonSize }) {
@JessicaSachs
JessicaSachs / screenshot_ex.py
Last active May 19, 2024 23:56
Taking Screenshots with Appium in Python
'''
Taking Screenshots with Appium
I'll be using Python and a sample iOS application from Apple's Developer Library
This tutorial assumes you understand how to run, launch, and interact with your application.
'''
from appium import webdriver
import os