Skip to content

Instantly share code, notes, and snippets.

View keith-kurak's full-sized avatar

Keith Kurak keith-kurak

View GitHub Profile
@keith-kurak
keith-kurak / icons
Last active February 27, 2025 03:50
introvert chat
Now that we have the Expo NativeWind working via this template, let's turn this into the app I actually want to write.
Write me a mobile app with Expo called "Introvert Chat"
## Purpose
This app is designed to be like an instant messaging or chat app, except you only talk to yourself. Instead of different friends, you'll have different "personas" that you talk with. Each persona is dedicated to a specific topic. When you tap on the persona in the list of personas, you'll be taken into an instant messaging window where you can send messages to each persona.
## Tech stack and platforms
- Expo / Expo Router
- compatible with Android, iOS, and web
@keith-kurak
keith-kurak / Bernie Moreno.txt
Last active February 21, 2025 01:09
Congressional voicemail scripts
Hi, my name is ___ and I’m a constituent from Cleveland.
I’m calling to ask Senator Moreno to lead the charge on conducting oversight hearings regarding the major cuts that Adminstrator Zeldin and the Trump administration are making to the staffing and programs of the EPA. I live right off of the Industrial Valley, close to where the Cuyahoga River burned at least a dozen times, and a mile from where the Harshaw Chemical Company used to dump radioactive materials in the 1950’s. Over 70 years later, we’re still trying to clean up that mess, and any backsliding would surely make prime land near downtown uninhabitable for another 70 years.
I’m sure Senator Moreno has visited the Cuyahoga Valley National Park with his family; that gem of our region would not exist without the EPA and the cleanup performed starting in 1972. We’d like Senator Moreno to represent the interests of Cleveland on this one, rather than the interests of Washington, and help protect these valuable natural resources in his adopted homet
@keith-kurak
keith-kurak / gist:46b74d19ac504cc3db64018a98151cff
Created October 27, 2024 19:02
SDK 52 expo install error
node:internal/modules/cjs/loader:1225
const err = new Error(message);
^
Error: Cannot find module 'tempy'
Require stack:
- /home/keith/github/art-thing-3/node_modules/@expo/cli/build/src/utils/telemetry/DetachedClient.js
- /home/keith/github/art-thing-3/node_modules/@expo/cli/build/src/utils/telemetry/index.js
- /home/keith/github/art-thing-3/node_modules/@expo/cli/build/bin/cli
@keith-kurak
keith-kurak / whereever you init firebase
Created June 2, 2023 04:55
Firebase RN auth persistence fix
import { initializeApp } from "firebase/app";
import AsyncStorage from '@react-native-async-storage/async-storage';
import { initializeAuth, getReactNativePersistence } from "firebase/auth"
const firebaseConfig = {
//..
};
// Initialize Firebase
const app = initializeApp(firebaseConfig);
@keith-kurak
keith-kurak / floorislava.p8
Created October 30, 2022 18:11
PICO-04: lava floor, game over condition
-- ** make a lava floor that generates a game over condition when touched
-- 1) After creating lava sprite with flag 2 set, add this to set_map_x()
-- make lava
if flr_hgt < 1 then
mset(x,15,2)
end
-- 2) in _init(), add dead flag to player
@keith-kurak
keith-kurak / mapgen1.p8
Created October 30, 2022 17:43
PICO-03: map generation
-- ** this part generates a simple map, generating more each time you reach the end of the memory map **
-- works around the overlap when resetting position by making the overlap area the same
-- 1) add map generation fn to tab 2
function gen_map()
--clear
for i=0,127 do
for j=0,15 do
mset(i,j,3)
@keith-kurak
keith-kurak / maps1.p8
Created October 30, 2022 00:14
PICO-02: maps and collision
-- Create a map and get a sprite moving on it
function _init()
x = 64
y = 64
spd = 1
end
function _draw()
cls()
camera(x-24,0)
@keith-kurak
keith-kurak / sprite.p8
Last active October 16, 2022 17:12
PICO-01: Move a sprite
function _init()
x = 64
y = 64
end
function _draw()
cls()
spr(0,x,y)
@keith-kurak
keith-kurak / 06: Hello, deploy!
Created December 18, 2021 05:17
06: Hello, deploy!
Add files and bits needed to deploy and build apps
@keith-kurak
keith-kurak / 05: Hello, Chat!
Last active December 29, 2021 20:42
05: Hello, Chat!
Follow these steps to add chat to each channel