#Nextjs
Explore tagged Tumblr posts
Text
More Updates on Bray Archive
So I did a lot of work on the site in the past few days, and it is looking good. I got the home page finally working. You can see I have a moving home banner and the grid tiles for a hub of links.
Multiple Device Support
I have started the fun/annoying/hard work on adding mobile and 4K support to this project.
When you start adding multiple devices to worry about, you also have to rework the original design of a project. Which is what I had to do. I reworked a lot of the entry pages and stuff to keep their old look while making it dynamic with phones and 4K monitors.
Here is one example: (The wide boy, also icon didn't load in time for the mobile view)
I am getting closer to getting this thing "finished."
So far I have done some smaller phones, 720p monitors, 1080p monitors and 4K monitors. Still need to add tablet and larger phone support.
Before I go, let me leave you with my first thought when I was the screen shot for the Untethered Edge Hood.
#destiny the game#destiny 2#destiny#coding#nextjs#this is a much bigger project than I ever thought#almost there#destiny projects#destiny fan creation#brayarchives
18 notes
·
View notes
Text
100 Days of Code - Day 6 ・゜゜・.
✧*6/28/2023*✧
finally added a much wanted feature to my todo app! ( ◡̀_◡́)ᕤ
!!!saving tasks in local storage!!!
⁽ᴵ ᵃˡˢᵒ ᵃᵈᵈᵉᵈ ᵃⁿ ᵃᵈᵈ ᵗᵃˢᵏ ᵇᵘᵗᵗᵒⁿ ᵇᵘᵗ ᵗʰᵃᵗˢ ⁿᵒᵗ ᵃˢ ⁱᵐᵖᵒʳᵗᵃⁿᵗ⁾
so when you refresh or close the page and come back to it your tasks still stay there wooooo ৻( •̀ ᗜ •́ ৻)
it still looks absolutely terrible but its one step forward!!
next steps/future features:
✧ delete task button ✧ rearrange tasks
. • ☆ . ° .• °:. *₊ ° . ☆ . • ☆ . ° .• °:. *₊ ° . ☆ . • ☆ . ° .• °:. *₊ ° . ☆
. • ☆ . ° .• °:. *₊ ° . ☆ . • ☆ . ° .• °:. *₊ ° . ☆ . • ☆ . ° .• °:. *₊ ° . ☆
#codeblr#progblr#programming#tech#coding#resources#frontend#comp sci#studyblr#aesthetic#100daysofcode#Day 6#vercel#nextjs#javascript#reactjs
117 notes
·
View notes
Text
Project update (Next.js) + little API routing tutorial
So my last post was about setting up my back-end using Node.js and Sequelize. After setting everything up it was time to create needed routes and queries. I didn't look too much into how to do it, just made an api folder, made a .ts file for every table I have in my database and filled it with CRUD operations + whatever additional query was needed.
After writing all of this I wondered how do I define links for all of these operations? Well as it turns out, when you put files in an api folder in Next.js, they generate by themself, meaning all of my crud operations were now under the same /api/file_table_name link. Obviously that's bad news. It took me 2 days of rearranging (it wasn't hard, just boring XD) and I got this structure
(This is not an entire structure, just a snippet because the whole structure is kinda big and pointless for demonstration)
So now for getting host/api/tag we have an index.ts file which carries the createTag function which requires just a body that contains new tagName.
For host/api/tag/id we have the [id].ts which carries getTagById and DeleteTag function. Now how do we differentiate between those two operations when they are on the same link?
At the end of your file you should have a handler function for which you write the cases in which certain operation happen. In this case it only depends on the http method, but it is possible to add other cases such as potential query string (the on that start with ? in the link ex. api/posts?sort=asc). Here's the code example from my /stickerpack/[id].ts file
So this means the link is going to be host/api/stickerpack/id?type="".
What surprised me was that you don't fetch id with req.params.id, but you fetch everything with req.query, and Next.js I guess just figures out what is a parameter and what is not based on the file name. Another surprising thing is the obvious "id as any" situation XD. It did not work any other way. No idea why. I'll look it up when I get the energy.
That's my wisdom for today, if you have any questions feel free to ask me anywhere XD I'm no professional tho lol
#codeblr#progblr#code#nextjs#full stack web development#webdevelopment#student#studyblr#tutorial#programming#computer science#backend#nodejs#women in stem
30 notes
·
View notes
Text
23 notes
·
View notes
Text
-Is your IT service website too slow? 🤔
🚀 Power Up Your IT Services Website with #innovationTechbe! 🚀
Techbe – the premier React & NextJS template crafted for IT services and technology businesses.
🔹 Cutting-edge design 🔹 Fast and responsive performance 🔹 Effortless customization
Transform your tech business and captivate your audience with Techbe. Ready to lead the future? 🌟
See Demo & Download : https://1.envato.market/anyBYq
#Techbe#ITServices#TechTemplate#ReactJS#NextJS#WebDesign#Innovation#wordpresstheme#seo#customizable#webdevelopment#responsivedesign#woocommerce#technology
3 notes
·
View notes
Text
Simple react/next js todo list
Modeled after this tutorial by Web Dev Simplified, but using Next.js and Tailwind
I think following a plain react tutorial while using next js is what gave me some issues, especially being my first react project. I probably should have learned some basic react first before going into frameworks, but oh well.
Trying to line up the text with the CSS paper was a huge pain. I still don't like how it looks but at least it's not floating through the lines anymore lol.
The data persistence gave me the most trouble (took me like FIVE hours 😭). The way it was done in the video did not work for me at all, so I had to figure it out. Local storage can't be accessed during server-side rendering, so accessing localStorage has to be done during client-side rendering, using the useEffect hook. But, as I've learned, the useEffect hook doesn't have a return value, and hooks can only be called at the top level. Then I found out that React intentionally calls useEffect twice and that was resetting my local storage with the empty initialization value -_- But in the end i got it working :)
Now I wanna add some more features; a delete all, clear selected, maybe edit note.
6 notes
·
View notes
Text
youtube
#html#nextjs#reactjs#coding#artificial intelligence#machine learning#programming#javascript#web development#web developers#web developing company#Youtube
2 notes
·
View notes
Text
I built a social app please try it :)
Github Link
23 notes
·
View notes
Text
Coming soon...
#technology#typescript#javascript#nextjs#reactjs#nodejs#web development#web developers#userexperience#webdesign#thumbnail
2 notes
·
View notes
Text
Hey friends, I'm building a community commenting system from scratch and would love your input on how it will operate.
Here are some rules I'm playing with:
1. Contributors will be auto-approved. 2. After one approved comment, all subsequent comments will be auto-approved (but I'll suspend offending users). 3. Max 90 comments per post. 4. Post authors can push that to 100. 4. Max 3 comments/user/article. 5. Limit input to 500 chars text-only.
What do you think?
BTW,
Contributors are people who previously submitted an article and have it published, here's who they are: https://www.analog.cafe/about
Also, a note on why I'm building this thing in-house: performance and privacy. 3rd party commenting tools track you across the web. They also slow down website performance. I use privacy-based analytics (Fathom) with no behaviour data ever stored or collected on anyone.
#believeinfilm#community#comments#communication#social media#blog#webdesign#web developers#javascript#nextjs#reactjs#mongodb#film photography
8 notes
·
View notes
Photo
. . . . . . . . #reactjs #reactjsdeveloper #reactjsjobs #react #nextjs #nextjsdeveloper #nextjsconf #codinglife #softwareengineer #javascript #webdevelopment #js #html #webdev #frontend #javascriptdeveloper #art #meme #memes #😂 #interview #python https://www.instagram.com/p/CmuKq-Pj2W9/?igshid=NGJjMDIxMWI=
#reactjs#reactjsdeveloper#reactjsjobs#react#nextjs#nextjsdeveloper#nextjsconf#codinglife#softwareengineer#javascript#webdevelopment#js#html#webdev#frontend#javascriptdeveloper#art#meme#memes#😂#interview#python
3 notes
·
View notes
Text
┊ ➶ 。˚ ° todo app progress ° ˚。
I have notifications! So far they just show up when you enter the page and when you complete all 3 todos ヽ(*・ω・)ノ
It still has a long way to go but im super pleased with it so far (ᵔ◡ᵔ)
Here is the github if you're curious about the code!
#progblr#codeblr#programming#tech#frontend#todo app#notifications#nextjs#javascript#wip#I hacked it together pretty quickly so there are a ton of things I need to fix but it works and im happy with that hehe
25 notes
·
View notes
Text
I want to do a programming update so bad but all the stuff I worked on is so boring and I know there is no use to even make tutorials for them cuz they are such specific things and codeblr is just too broad and general for that kind of content...I'll try to make some next.js good practices post soon maybe since I see a lot of interest for web dev and a lot of people are learning by themselves with no mentors, there is def a lot of knowledge that is way more easily gained through talking to more experienced devs, and is very hard to acquire from tutorials and practice (unfortunately). I know that from the experience :/ learning everything by yourself is hard as hell and I really want to congralute everyone who are still on their programming journey (or whatever other journey hehe, everything is hard to perfect) 💛
8 notes
·
View notes
Text
22 notes
·
View notes
Text
1. Video games: Factorio, Satisfactory, Overwatch 2, Hogwarts Legacy, Hollow Knight, …
2. I am a software engineer by trade and do volunteer coding and personal coding in my free time. I just don’t have posting to social media as a reaction to … anything related to those things.
I am currently/still looking for more coding/software engineering content! Feel free to share tags/blogs you like.
I am very much on my computer a LOT as a consequence of these hobbies.
19K notes
·
View notes
Text
🏥 DevelopYour Healthcare Website with Next js Template only $17
🔥We are a fast provider of amazing and very low-cost healthcare websites with Next JS Templates🔥It is just $17 🥳
Whether you're developing a site for a hospital, clinic, or healthcare service, MediDove – Medical and Health React Next js Template has everything you need to create a professional and user-friendly online presence.
Here you will find: ✌Impress your visitors with a sleek and sophisticated layout. ✌Experience top-tier performance and speed. ✌(SEO), Enhance your site's visibility and reach more patients. ✌(Customizable), Tailor the template to match your specific needs and branding. ✌(Mobile-Friendly), Ensure a seamless experience on any device.
Ready to revolutionize your healthcare website? Discover the power of MediDove – Medical and Health React Next js Template and take your digital presence to the next level.
💠 Let's demo
#MedicalTemplate#HealthTemplate#ReactJS#NextJS#WebDevelopment#HealthTech#MedicalWebDesign#ReactDevelopment#NextJSFramework#HealthWebsite#MedicalWebsite#UIUXDesign#ReactTemplates#HealthcareDesign#WebAppDevelopment#FrontendDevelopment#MedicalApp#HealthSolutions#TemplateDesign#digital marketing#html#html5 css3#htmlcoding#html css#html5#edtech#htmltemplate#htmltutorial#business
0 notes