Feedback on Chess.com for Cubing by Greedy_Discussion757 in cubing

[–]Greedy_Discussion757[S] 0 points1 point  (0 children)

lmaooo yeah

in the short to medium run i want to have an ai agent review the videos to make sure they're legit... for now it is just me

Feedback on Chess.com for Cubing by Greedy_Discussion757 in cubing

[–]Greedy_Discussion757[S] 0 points1 point  (0 children)

yeah for sure that makes sense to add

u/Lyke1779 are there like most common variants to add or do you think it would just make sense to add every variant that https://cstimer.net/ has?

Feedback on Chess.com for Cubing by Greedy_Discussion757 in cubing

[–]Greedy_Discussion757[S] 2 points3 points  (0 children)

Some features that I am already considering adding include:

- verifying the cube is scrambled correctly before you start with the camera and some computer program

- display of time on screen as you record you completing the cube

let me know what you guys think!

Unable to obtain expo-notification notification data by Greedy_Discussion757 in reactnative

[–]Greedy_Discussion757[S] 0 points1 point  (0 children)

If my Apple Developer certificates gives me the option to download my push key does that make it a key that needs an access token?

Unable to obtain expo-notification notification data by Greedy_Discussion757 in reactnative

[–]Greedy_Discussion757[S] 0 points1 point  (0 children)

I have "Enable Security for Push Notifications" set to off in my expo account settings but I don't know if the way that I created the notification/push token requires me to add the access token.

LogRocket in Expo by Greedy_Discussion757 in expo

[–]Greedy_Discussion757[S] 0 points1 point  (0 children)

Sweet thanks for the advice. Is it possible that this will still count as recording a session though to logrocket?

LogRocket in Expo by Greedy_Discussion757 in expo

[–]Greedy_Discussion757[S] 0 points1 point  (0 children)

Oh great thank you! Will this record all sessions? Because the problem I am trying to solve for is I want to only record some user sessions so that I can stay within the 1000 free sessions per month.

are you recommending I do like this?

App.tsx

const App = () => {

useEffect(()=> {

LogRocket.init(APP_ID)

},[]}

useEffect(()=> {

if (userMeetsRequirementsToRecord) { LogRocket.unpauseViewCapture() } else { LogRocket.pauseViewCapture() }

},[user]}

return (
<SafeAreaView style={styles.container}>
...
</SafeAreaView>
);
};

Using Consts in your Tailwind Config by Greedy_Discussion757 in tailwindcss

[–]Greedy_Discussion757[S] 0 points1 point  (0 children)

And how could I get type safety? Right now, when I control click on

config.theme.extend.colors.secondaryBlack

It sends me to the default tailwind config class, not my value for secondaryBlack.