This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- ** 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- ** 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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function _init() | |
x = 64 | |
y = 64 | |
end | |
function _draw() | |
cls() | |
spr(0,x,y) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add files and bits needed to deploy and build apps |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Follow these steps to add chat to each channel |
NewerOlder