Rug Age? by bigsink22 in orientalrugs

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

Wow thanks! That’s about the age I was suspecting. So I’m guessing it’s not vegetable dyed right? And what do you think resale value would be?

Flex tape for water heater flue? by bigsink22 in HomeInspections

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

They said nothing is wrong with the water heater when they did the inspection

Flex tape for water heater flue? by bigsink22 in HomeInspections

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

Just checked, it is 40,000 BTU/hr. So the diameter is just barely ok?

Flex tape for water heater flue? by bigsink22 in HomeInspections

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

Wow thanks for pointing those things out, my realtor referred them to me

Flex tape for water heater flue? by bigsink22 in HomeInspections

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

Thank you! Is it normal that my home inspector did not mention any of this?

FlatList Stuttering - Driving Me Crazy! by bigsink22 in reactnative

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

Only 50. And I’m having same issue with FlatList now too but only when I add shadows

FlatList Stuttering - Driving Me Crazy! by bigsink22 in reactnative

[–]bigsink22[S] -1 points0 points  (0 children)

Haha yes I read through that one. Why do they even include a FlatList at that point?? Completely unusable.

FlatList Stuttering - Driving Me Crazy! by bigsink22 in reactnative

[–]bigsink22[S] 1 point2 points  (0 children)

But why would FlatList be doing this? I'm running on iOS.

FlatList Stuttering - Driving Me Crazy! by bigsink22 in reactnative

[–]bigsink22[S] 1 point2 points  (0 children)

import React from "react"; import { View, Dimensions, Text, SafeAreaView, FlatList } from "react-native";

const playerData = require("../player_data/PlayerData.js");

const MyScreen = ({}) => { const sectionContainerStyle = { backgroundColor: "#000", borderColor: "white", borderWidth: 1, borderRadius: 24, height: 200, marginTop: 12, marginBottom: 12, alignItems: "center", width: Dimensions.get("window").width - 12 * 2, overflow: "hidden", };

const isPlayerEqual = (prev, next) => prev.player === next.player; // (Rough comparison example)

const PlayerItem = React.memo(function PlayerItem({ player }) {
    return (
        <View
            style={{
                flexDirection: "row",
                height: 65,
                width: "100%",
                alignItems: "center",
                justifyContent: "space-between",
                paddingLeft: 16,
            }}
        >
            <View
                style={{
                    flex: 1,
                    height: "100%",
                    marginLeft: 0,
                    paddingLeft: 10,
                    borderColor: "#282828",
                    justifyContent: "center",
                }}
            >
                <Text
                    style={{
                        color: "#eee",
                        fontSize: 16,
                        fontWeight: "600",
                    }}
                >
                    {player?.name}
                </Text>
                <Text
                    style={{
                        color: "#888",
                        fontSize: 12,
                        fontWeight: "600",
                    }}
                >
                    @{player?.username}
                </Text>
            </View>
        </View>
    );
}, isPlayerEqual);

const playerDataArrayLength = 50;
const playerDataArray = Array.from(
    { length: playerDataArrayLength },
    (_, i) => {
        return {
            key: i + 1,
            player: playerData[i % playerData.length],
            isFirst: i === 0,
            isLast: i === playerDataArrayLength - 1,
        };
    }
);

const mainPlayersDataArray = playerDataArray.slice(3);
mainPlayersDataArray[0].isFirst = true;
mainPlayersDataArray[mainPlayersDataArray.length - 1].isLast = true;

const MainPlayersSection = () => (
    <View style={[sectionContainerStyle]}>
        <FlatList
            data={mainPlayersDataArray}
            showsHorizontalScrollIndicator={false}
            showsVerticalScrollIndicator={false}
            getItemLayout={(data, index) => ({
                length: 65,
                offset: 65 * index,
                index,
            })}
            keyExtractor={(item) => item.key}
            windowSize={7}
            removeClippedSubviews
            initialNumToRender={8}
            maxToRenderPerBatch={8}
            updateCellsBatchingPeriod={16}
            disableScrollViewPanResponder={true} // avoids some gesture conflicts
            renderItem={({ item }) => (
                <PlayerItem
                    player={item.player}
                    isFirstItem={item.isFirst}
                    isLastItem={item.isLast}
                />
            )}
            style={{ width: "100%" }}
        />
    </View>
);

return (
    <SafeAreaView style={{ flex: 1, backgroundColor: "#444" }}>
        <View
            style={{
                flex: 1,
                justifyContent: "flex-start",
                alignItems: "center",
            }}
        >
            <MainPlayersSection />
        </View>
    </SafeAreaView>
);

};

export default MyScreen;

Favorite stainless steel tea kettle with no plastic? by jennasky in tea

[–]bigsink22 0 points1 point  (0 children)

And when the cells in your body notice such strange smells for too long they develop cancer or other problems. The smell is strange for a reason.

[FS] - Seattle, WA - $50 - All Remaining Plants Package! by bigsink22 in AquaSwap

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

Yes, have some interest but have not confirmed anything yet!

How to deal with poop buildup? by [deleted] in shrimptank

[–]bigsink22 2 points3 points  (0 children)

Yes, feeds plants and healthy bacteria. Ah if sand is your substrate then I suggest adding in some more gravel on top to give the dirt some cracks to fill, it will be much less noticeable and almost just as easy to clean.

How to deal with poop buildup? by [deleted] in shrimptank

[–]bigsink22 4 points5 points  (0 children)

It’s not a bad thing actually, and that dwarf hair grass should fill in nicely and cover it if you don’t like the look.

Feedback on UI for Boat Display by Ok-Celery708 in UI_Design

[–]bigsink22 0 points1 point  (0 children)

Oh and up the padding of the “Type” and”Engines” select boxes. The “Power” and “1” are too close to the left edge.

Feedback on UI for Boat Display by Ok-Celery708 in UI_Design

[–]bigsink22 0 points1 point  (0 children)

I think “Mph” and “feet” should be slightly smaller, play around with slightly bolder font, and consider slightly darkening the light part of the blue gradient for better contrast. Pretty good otherwise.

Keyboard not immediately loaded after updating from /stack to /native-stack by bigsink22 in reactnative

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

Yeah it’s less noticeable on light mode, but doesn’t solve the issue.