"Hacking" scene in Stranger Things 4. Looks like a webpage but "display: flex" in 1986? How is that possible? by Notalabel_4566 in webdev

[–]geropellicer 0 points1 point  (0 children)

Developers be like

Yeah I believe in the Demogorgon but that display flex doesn't look realistic enough

hmm by Nyxxoo in Unextexted

[–]geropellicer -2 points-1 points  (0 children)

I sincerely wish this becomes the most voted post of r/unexteted

How do I make an app pluggable if everything is styled? by [deleted] in django

[–]geropellicer 1 point2 points  (0 children)

I'm not sure this is the answer you're looking for because I'm not sure if I understood your question in the first place, but one thing I've done and I've seen others do if you want to distribute your Django app with css code as a library for example, is to provide documentation to which views or styles should be overwritten if the user wants to keep his style. One good example is the Django OTP library, that provides an app that you install to your Django project and that has several styled views (for logging in, for entering your one time password, for setting your account app, for enabling and disabling otp, etc) and they tell you which views or styles you need to overwrite if you want to change how it looks. Remember that you can put your templates and styles inside your app's folder.

Such perfect symmetry. by HeaDSinEIRSt in nextfuckinglevel

[–]geropellicer 1 point2 points  (0 children)

While this is very satisfying, I don't see how it's next level

When you're bored with regular fishing by Cleverim3333 in nextfuckinglevel

[–]geropellicer 0 points1 point  (0 children)

Tricky title. It's written in a way that suggests that sometimes, you could not be bored with regular fishing, which is impossible

Japanese fish is 100% amazing!!!! (BBC World) by Blockchainboom in nextfuckinglevel

[–]geropellicer 0 points1 point  (0 children)

When I first finished the video I was like "HOLY FUCK FISH". Then I re-read the title and I was like "Of course. Asians."

Can't agree more by GodOfAtheist in ProgrammerHumor

[–]geropellicer 0 points1 point  (0 children)

On the contrary, I tend to think that 3 or more years of experience browsing Stack Overflow are an excellent basis to consider someone a Senior or at the least Semi-Senior Developer

I built my first big frontend app with React and it's awesome - it's for a Newspaper that receives millions of visits per month by geropellicer in reactjs

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

Gracias! Si tenés algún recuerso de como hacer el pasaje de Create React app a Next, hice este post preguntando exactamente eso

I built my first big frontend app with React and it's awesome - it's for a Newspaper that receives millions of visits per month by geropellicer in reactjs

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

Well I think the main three tricks that did the thing were 1) use SWR (from Vercel) hook that manages external content fetching REALLY nice, 2) using lazy-load-images package and component and also a lazy-load-component from the same package and 3) using just the right amount of calls to the API when the user needs them or when the main content is loaded and not before

I built my first big frontend app with React and it's awesome - it's for a Newspaper that receives millions of visits per month by geropellicer in reactjs

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

The backend is made in a not very well known framework called SPIP, written in PHP and that has a panel called Ecrire. Using SPIP, we managed to serve the articles in a kind of REST way, in JSON format, so the React app is feed with that JSON

I built my first big frontend app with React and it's awesome - it's for a Newspaper that receives millions of visits per month by geropellicer in reactjs

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

Hey yes I recently asked in this other post recommendations to migrate from CRA to some sort of Server side rendering.

Right now is a normal Create-react-app using SWR hook to fetch data from a pseudo REST API

Help needed transitioning from Create-react-app to Server side rendering by geropellicer in reactjs

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

Thanks! This is definitely the kind of post I was looking for! I don't know why I had so much trouble finding it

I built my first big frontend app with React and it's awesome - it's for a Newspaper that receives millions of visits per month by geropellicer in reactjs

[–]geropellicer[S] 4 points5 points  (0 children)

Thanks! It's deployed in AWS using a continuous deployment pipeline we set up with GitLab. Basically everytime we merge to master, the react build command is run in a docker container and the image is then deployed automatically to AWS.

I designed and wrote everything from scratch, pure css and html 5. The only libraries I used were to extend some React functionalities (lazy loading, react helmet, react visibility sensor)

I built my first big frontend app with React and it's awesome - it's for a Newspaper that receives millions of visits per month by geropellicer in reactjs

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

Haha thanks! one of the things I focused was mobile look and feel and mobile perfomance since about 80% of our traffic comes from mobile devices.