I have my layout like this: <Navbar/> <Blog/> <Footer/> the navbar is a fixed component that hides on scroll down & comes up on scroll up with a z-index of 1000, the blog has...
Hey everyone, I have a container model in which I have - container number - stuffed which is a boolean (if True -> filled, False -> empty) I want to track at what time the con...
what does ls -- mean??
Is the memory allocated through new() automatically deleted?? I m looking at the code on this page
So, I have a form in which for different tickets, you have to enter the same info. I want to create a checkbox as 'Same as above ticket' On clicking it, the info would be fill...
Nested layout is not working in next.js I m defining per page layout like this Profile.getLayout = function getLayout(page) { return <UserLayout>{page}</UserLayout>; }; My _...
What does this line of code do: lambda *a, **b: True, (), kwargs, (), **kwargs ??
Hey, I have a nextjs app with tailwind + daisyui as a plugin I am not able to use daisyui components. I have followed all the steps to setup tailwindcss+dasyui as mentioned in...
i have a zustand store in which I have defined an async function that logouts user which then redirects to root page When I click on logout button, the current component gets ...
thanks this is the component for the order form, I don't see how will I create new instances here. Do you have any idea??
I am using useContext to store user but everytime I reload page after login, the user becomes null? How should I persist user except local storage?
I have a go api which uses viper to load env variables which are in a .env file. I m confused as to how to define the .env file on netlify or heroku. How will viper access the...
How to store the login token?? sessionStorage, localStorage,cookies
async foo() { const res = await fetch(url); const users = await res.json(); } this is synchronous, right??
what does the Mux mean for eg in DefaultServeMux, i see mux being used a lot???
JSON data coming from python server has dashes between key names like original-img-url. I need to use this data in a nextjs project Is it good practice to use this, as I would...
so, i have a flask+sqlalchemy backend, when i apply migrations the previous data is not present in the migrations. Have you faced something like this and how did u solve it??
const obj = () => { return { name: "sky", author: "me" } }; this will make more sense???
@usernamestring how u created these images in ur dp ?
const footerLinks: Array<Array<string>> = [info, feats, explore, socialLinks] Is this a good way to annotate variables?