Skip to content

Instantly share code, notes, and snippets.

View pachun's full-sized avatar

Nicholas Pachulski pachun

View GitHub Profile
brew install telnet
telnet towel.blinkenlights.nl
import React from "react"
import * as ReactNative from "react-native"
import * as RNTL from "@testing-library/react-native"
const formatCompleteOrPartialPhoneNumber = (
phoneNumberDigits: string,
): string => {
if (phoneNumberDigits.length < 4) {
return phoneNumberDigits
} else if (phoneNumberDigits.length < 7) {
const ingredients = [
'Absinthe',
'Agave Syrup',
'Amaretto Liqueur',
'Amaro Liqueur',
'Angostura Bitters',
'Aperol',
'Apple',
'Apple Brandy',
'Applejack',
import React from "react"
import {
AsyncStorage,
FlatList,
KeyboardAvoidingView,
TextInput,
TouchableOpacity,
Vibration,
View,
} from "react-native"
@pachun
pachun / gist:e2b0ffa1fe827fedb242830f2e98e7bb
Last active April 1, 2024 21:29
Copy a Postgres Heroku database locally
$ heroku pg:backups:capture -a too-many-men-api
$ heroku pg:backups:download -a too-many-men-api
$ pg_restore -c -d too_many_men_api_development latest.dump
const injectedJavascript = [
"setTimeout(function() {",
" const metaTag = document.createElement('meta');",
" metaTag.setAttribute('name', 'viewport');",
" metaTag.setAttribute('content', 'width=device-width, initial-scale=1');",
" document.getElementsByTagName('head')[0].appendChild(metaTag);",
" setTimeout(function() {",
" const documentSize = { displayedMessageContentHeight: document.body.scrollHeight };",
import { useRef } from "react"
const useRefsWithKeys = <T>(): {
setRefForKey: (key: string) => (element: T) => void
getRefForKey: (key: string) => T
} => {
const ref = useRef<Record<string, T>>({})
const setRefForKey =
(key: string) =>
module Main exposing (main)
import Browser
import Html exposing (..)
type alias Model =
{}
module Lolcode exposing (main)
import Browser
import Html exposing (..)
type alias Model =
{}
@pachun
pachun / Dock add app.sh
Created June 22, 2022 15:39 — forked from andrewpetrochenkov/mac-dock.sh
macOS Dock scripts
#!/usr/bin/env bash
path=/Applications/Automator.app
defaults write com.apple.dock persistent-apps -array-add "<dict><key>tile-data</key><dict><key>file-data</key><dict><key>_CFURLString</key><string>$path</string><key>_CFURLStringType</key><integer>0</integer></dict></dict></dict>"; killall Dock