How We Made Bracket Pair Colorization 10,000x Faster web developers |
- How We Made Bracket Pair Colorization 10,000x Faster
- Anyone else always worried about best practices and if they're not doing something the correct way?
- Every website builder in history
- How do you Git?
- is meta-charset useless nowadays?
- List Keys in ReactJS. The docs on react's website said that in the correct version, I don't need to include the value of key in the template of of the list item we have to make in the arr.map(). How does this work?
- Self-Parking Car in 500 Lines of Code
- How is 2021 looking in terms of CMS’s? What are you using for your clients?
- How do I build a website like this? Where to start?
- How do you start a project with all the tools, apis, library, etc?
- Help a noobie
- Has anyone worked with mapbox before? Need to create map of UK borough and post codes. Any guideline in achieving this would be highly appreciated.
- Dark Mode for the Cloudflare Dashboard (and how it was made)
- Life after Magento?
- Salary thread for Canada
- 2nd monitor for working + gaming recommendations
- How do i link my css-learning2.html file in my CSS-Folder to my css-learning.html file in my ga_site01 folder?
- What contact form service do you use to integrate forms into your website?
- Is trying to develop a SAAS as a solo developer even worth it?
- Have my first job interview tomorrow with Java dev position/devs but... I have only done MERN stack development, what should I do please help.
- Any idea how cloudflare made this 1.1.1.1 animation?
- How do I customise my squarespace website menu bar like this?
How We Made Bracket Pair Colorization 10,000x Faster Posted: 29 Sep 2021 04:46 AM PDT
| ||
Anyone else always worried about best practices and if they're not doing something the correct way? Posted: 29 Sep 2021 10:04 AM PDT I am constantly second guessing the way I approach some problems and features. Front end and back end. I am confident I can do my job, however I am always wondering if the way I'm doing it is the best practice way. I feel this happen more with using an front end framework, for example with react. Making a form, I know using a callback function as a prop to set some state to show the form, and to use the value of the input as the state, but how about handling submissions, should I do that with a callback and in the main component, or just handle it on the modal? Back end I feel is more structured but I'm constantly second guessing my folder structures, or where I'm putting my routes, if I'm making too many sql queries etc. Is this normal? My employer is very happy with my work but they don't know much about the technologies I use. Edit: Great responses everyone, this has definitely made me more relaxed and stop being stop overthinking my work so much. [link] [comments] | ||
Every website builder in history Posted: 29 Sep 2021 01:59 PM PDT
| ||
Posted: 29 Sep 2021 05:42 AM PDT I wonder how prevalent is the use of GUIs for managing git repositories. Let me know what you use, thanks! [link] [comments] | ||
is meta-charset useless nowadays? Posted: 29 Sep 2021 01:02 AM PDT I set <meta charset="ascii" /> with unicode characters in the body: <body> სერვერის ტესტი სერვერის ტესტი სერვერის ტესტი სერვერის ტესტი სერვერის ტესტი სერვერის ტესტი სერვერის ტესტი სერვერის ტესტი სერვერის ტესტი სერვერის ტესტი სერვერის ტესტი სერვერის ტესტი სერვერის ტესტი სერვერის ტესტი სერვერის ტესტი სირცხვილი რუსეთი ქრინჯ რუსეთი ქრინჯ სერვერის ტესტი </body> But my webpage is still displayed correctly, even though I explicitly specified "ASCII" in the charset meta tag. Soo, is meta charset tag basically useless and do browsers default to UTF-8 nowadays? [link] [comments] | ||
Posted: 29 Sep 2021 11:51 AM PDT
| ||
Self-Parking Car in 500 Lines of Code Posted: 29 Sep 2021 06:40 AM PDT
| ||
How is 2021 looking in terms of CMS’s? What are you using for your clients? Posted: 29 Sep 2021 01:43 AM PDT Im Interested to know what CMS other devs are using for their client sites. Is it still mostly Wordpress? I want to know if Wordpress is losing dominance? I really dislike it. And what strong alternative are out there. Anything good within the JS ecosystem? Concerned that it's all PHP currently. [link] [comments] | ||
How do I build a website like this? Where to start? Posted: 29 Sep 2021 05:18 AM PDT Hi there! I am a full-time web developer so I'm exactly a beginner. Recently I came across this site https://lolworlds2021.withspotify.com/ I was just wondering how did they build this website? I really want to make something like, and I was wondering if you guys know where to start, or what framework is being used in the backend? [link] [comments] | ||
How do you start a project with all the tools, apis, library, etc? Posted: 29 Sep 2021 01:08 PM PDT After been a while developing with plain js and css, I'm starting to learn react, express, node, tailwind, sass, webpack, babel, etc. Every time I start a new project is a pain mostly because of webpack and babel. Most of the times webpack and babel has a lot of configurations to work with other tools and I spend more time setting up a project then actually doing the project. Is there any tool or guide on how to set everything up so I don't waste all my time just to make a hello world to work. [link] [comments] | ||
Posted: 29 Sep 2021 12:47 PM PDT I have a small website on WordPress and I needed a way for the user to choose which page they want to go to by writing the page number in a form and click a button or click Enter. I found a thread explaining the same thing using JavaScript, so I copied it and used it and it works, Sometimes.... the button works 100% of the times, but for some reason clicking "Enter" works about 50% of the time. I know a little bit about programing, but I don't know a thing about JS, I suspect the issue is in the variables maybe??? idk here is the code: <form> <input id="thmas-input-text" type="text"> <input id="thmas-button" type="button" value="Go"> </form> (script) const thmasButton = document.querySelector('#thmas-button'); const thmasInputText = document.querySelector('#thmas-input-text'); thmasButton.addEventListener('click', clickButton); var input = document.getElementById("thmas-input-text"); input.addEventListener("keyup", function(event) { if (event.keyCode === 13) { event.preventDefault(); document.getElementById("thmas-button").click(); } }); function clickButton() { var URL = "https://website.com/page=" + thmasInputText.value; var win = window.open(URL, "_self");} [link] [comments] | ||
Posted: 29 Sep 2021 05:35 AM PDT
| ||
Dark Mode for the Cloudflare Dashboard (and how it was made) Posted: 29 Sep 2021 03:34 PM PDT
| ||
Posted: 29 Sep 2021 09:16 AM PDT To those of you who have worked with Magento but are now doing other work - how's life? I've been doing Magento 2 development for ~4 years. I'm multi-cerified, full-stack developer with lots of backend experience. I'm from europe and am currently selling my soul for ~35EUR/h. Not sure how good that is... How hard was transferring to whatever you are doing now? How is it going? How's your mental/financial/life-work balance situation now? I'm feeling tired of this shit. I also have almost nothing to compare 'this shit' to. I've never worked on a commercial project outside of Magento. Im thinking maybe I should explore in another direction, but now sure which and how. Any advice for a comrade? edit: Are you salaried or a free-lance developer? [link] [comments] | ||
Posted: 29 Sep 2021 06:20 AM PDT Are salary threads allowed? I keep seeing people mention how they make 100k+ and more with two years of experience so I just wanted to make a thread asking how much everyone in Canada is making. Mine is 18 months of experience and make ~80k/year with bonus(base 77.5k), if it's allowed please share yours, so we can all get an idea about what we should expect. [link] [comments] | ||
2nd monitor for working + gaming recommendations Posted: 29 Sep 2021 11:10 AM PDT Looking for some recommendations on a good 27 or 28" 4K monitor. I'll be using it as my 2nd monitor while working, and also have my Xbox plugged into it for when I switch to gaming. I'm currently looking at this. [link] [comments] | ||
Posted: 29 Sep 2021 08:51 AM PDT
| ||
What contact form service do you use to integrate forms into your website? Posted: 29 Sep 2021 08:48 AM PDT I've heard of a few different free contact form services out there and just saw that mail chimp does contact forms now too. What contact form service is the best in your opinion? [link] [comments] | ||
Is trying to develop a SAAS as a solo developer even worth it? Posted: 28 Sep 2021 07:01 PM PDT Hello everyone, I have been looking for ideas for a b2b saas for two days and I'm a little bit discouraged. I don't have an idea and most recommendations online are top 10 saas ideas that are all the same and mostly dominated by already stablished solutions. I feel like every idea I get is already implemented by a larger group of people with more experience than me. Is trying to develop a saas even worth my time? [link] [comments] | ||
Posted: 29 Sep 2021 02:11 PM PDT For some strange reason I got an interview with a company that does Java/Spring and SQL but I literally am completely different. It is an entry level position which they say means little experience is required but I find this odd. They can't expect me to know much about Java or Spring if I have no projects that fit that. I feel like this interview will be really awkward but I know it's experience so I will take it anyway but what can you guys recommend I do? [link] [comments] | ||
Any idea how cloudflare made this 1.1.1.1 animation? Posted: 29 Sep 2021 06:11 AM PDT It looks like they use canvas but that's about as far as I got. [link] [comments] | ||
How do I customise my squarespace website menu bar like this? Posted: 29 Sep 2021 10:25 AM PDT Hi everyone, I am trying to customise my squarespace website menu bar like this. Is there anyway I can do this? The first one is the image of my menu bar and the second one is what I am trying to make. [link] [comments] |
You are subscribed to email updates from webdev: reddit for web developers. To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google, 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States |
No comments:
Post a Comment