Monthly Getting Started / Web Dev Career Thread web developers |
- Monthly Getting Started / Web Dev Career Thread
- Google Search ended support for IE11 in its main product
- Built an animated hamburger menu using tailwind and svelte.
- building the most inaccessible site possible with a perfect lighthouse score
- I made a list of 75 app ideas, that don't exist yet and that people would actually use!
- How do i get the green box next to the grey and spacegrey box (all boxes are grid container)? I tried everything i can think of, im new and just think that there is sth i dont know or sth i did wrong...
- Struggling with CORS - Should I just be proxying?
- Prototype pollution vulnerabilities rife among high-traffic websites, study finds
- The Downsides of Offline First
- Serendipity: A new VS Code theme crafted for retina displays.
- Most basic question of all time- flex box vs grid box vs div etc.
- After forking, how do you diff the original to your fork to keep updated?
- Accessible Palette: stop using HSL for color systems
- Is it a bad idea to purchase my VPS service ahead of time just to develop on it?
- Python vs. PHP for FastCGI?
- MDN Web Docs at Write the Docs Prague 2021
- Security service
- Helping users explore the web and continue prior tasks
- Are there any downsided to using yarn for global packages and npm for local ones?
- Accessible Palette: Create color systems with consistent lightness and contrast
- [Help] How to disable Bracket's suggestion or hint when opening a bracket?
- Injecting environment variables into static websites using NGINX
- Looking to get a dedicated static IP ($5)
- How to get clients?
- How do I freelance as React developer if I want to make side-money while working full-time as React dev?
Monthly Getting Started / Web Dev Career Thread Posted: 01 Oct 2021 05:00 AM PDT Due to a growing influx of questions on this topic, it has been decided to commit a monthly thread dedicated to this topic to reduce the number of repeat posts on this topic. These types of posts will no longer be allowed in the main thread. Many of these questions are also addressed in the sub FAQ or may have been asked in previous monthly career threads. Subs dedicated to these types of questions include r/cscareerquestions/ for general and opened ended career questions and r/learnprogramming/ for early learning questions. A general recommendation of topics to learn to become industry ready include: Front End Frameworks (React/Vue/Etc) Testing (Unit and Integration) Common Design Patterns (free ebook) You will also need a portfolio of work with 4-5 personal projects you built, and a resume/CV to apply for work. Plan for 6-12 months of self study and project production for your portfolio before applying for work. [link] [comments] | ||
Google Search ended support for IE11 in its main product Posted: 01 Oct 2021 09:14 AM PDT
| ||
Built an animated hamburger menu using tailwind and svelte. Posted: 01 Oct 2021 01:47 AM PDT
| ||
building the most inaccessible site possible with a perfect lighthouse score Posted: 01 Oct 2021 01:01 PM PDT | ||
I made a list of 75 app ideas, that don't exist yet and that people would actually use! Posted: 01 Oct 2021 01:54 PM PDT
| ||
Posted: 01 Oct 2021 01:37 PM PDT | ||
Struggling with CORS - Should I just be proxying? Posted: 01 Oct 2021 09:43 AM PDT I have an API I am accessing from an SPA. CORS configurations and setting request headers is giving me absolute hell. I have the correct access control headers from the server being set, but now cookies aren't being saved on the browser. Should I just be configuring my webserver to use proxying to avoid all this BS? In production, my web server is hosted on a different server completely compared to my API but both hosted from Heroku. How do I handle this? Its driving me nuts. Thanks [link] [comments] | ||
Prototype pollution vulnerabilities rife among high-traffic websites, study finds Posted: 01 Oct 2021 11:00 AM PDT
| ||
The Downsides of Offline First Posted: 30 Sep 2021 07:28 PM PDT | ||
Serendipity: A new VS Code theme crafted for retina displays. Posted: 01 Oct 2021 02:00 PM PDT
| ||
Most basic question of all time- flex box vs grid box vs div etc. Posted: 01 Oct 2021 01:01 PM PDT I have finally came up with a design idea on a piece of paper for how I want my personal site to lay out. My previous attempt to figure out my question was the freeCodeCamp course for HTML CSS, and generally Google, but I must say I am confused if I don't say so myself. I get conceptually what these are, that's the easy part. What I don't get is how to make the website naturally and elegantly have that flow I am looking for, WITHOUT having to individually micromanage each individual element's padding etc. Like, don't these things help organize your website naturally? I just don't get it. I know this is a very open ended question but frankly I don't know where to start. Any comments, links, etc appreciated! Oh, and just to clown myself here is my website attempt so far that is atrocious in terms of spacing a stuff. Just to show how badly I am lost: https://william-golovlev.github.io/ [link] [comments] | ||
After forking, how do you diff the original to your fork to keep updated? Posted: 01 Oct 2021 03:16 AM PDT Is there software out there that makes this easier? Not sure of the process. [link] [comments] | ||
Accessible Palette: stop using HSL for color systems Posted: 01 Oct 2021 12:59 PM PDT | ||
Is it a bad idea to purchase my VPS service ahead of time just to develop on it? Posted: 01 Oct 2021 06:14 AM PDT Hello! I'm an amateur trying my hand at developing a personal website. Before anyone tries to talk me out of hosting on a VPS, I'll get out in front and say that the complexity is part of the point for me: I am enthusiastic about learning as much as I can about development, hosting, and administration. Anyways, I'm at a point where I seem to be running into limitations in my ability to do backend development on my personal device. For example I am currently focusing on form handling, but when I test it the POST array comes through empty. This seems to be caused my the fact that I'm reading the website as a file while sending the POST request to localhost. I'm sure I could get around this (Probably assemble the site in /var/www/ if I had to guess.) but my gut says it may simply be better to lease my VPS now and start developing in the environment the site is meant for. It would only be a week or so ahead of when I imagine making my site live anyhow, and there are a number of environmental differences that I anticipate it might be best to develop around (different distribution, probably using NGINX instead of Apache, etc.). Is it a bad idea to lease my VPS now, to play around with? Provided I do the usual things to secure the VPS against intrusion, and don't yet serve the site to outside requests, would I simply be allowing myself the chance to develop things in-situ? Or would this expose me to some sort of danger or liability that I should not assume I can anticipate? Thanks! [link] [comments] | ||
Posted: 01 Oct 2021 05:21 AM PDT Hello! I'm designing a simple personal website, and am at the stage where I need to focus on building CGI/FastCGI files for a couple small purposes: form validation/security, human validation, blacklisting IP's, etc. I set out yesterday learning PHP and put together a few basic CGI files that accomplish the form handling. But this morning I'm looking over the FastCGI protocol, and finding that it's not so complicated as I'd taken it to be yesterday, and that maybe I should simply be implementing it and maybe not even in PHP. My other language candidate would be Python (I could throw C++ into the ring, but that seems to be an unpopular choice down to security issues). I have considerable experience in it from the perspective of scientific programming, and so would be glad to find out that they may even be preferred from a perspective of security, efficacy, or performance. In particular, I am wondering whether the advantages of PHP in regards to CGI files (Were there ever any? Crawling developers' posts for opinions does something to your brain.) might be challenged on the switch to FastCGI, particularly when taken together with Python's executing as bytecode. Can anyone speak to the difference between these two languages for use in FastCGI? Thanks in advance. [link] [comments] | ||
MDN Web Docs at Write the Docs Prague 2021 Posted: 01 Oct 2021 10:16 AM PDT | ||
Posted: 01 Oct 2021 10:06 AM PDT Hello guys! What service would you recommend for storing sensitive financial data in the cloud? For know I know azure confidential Ledge but they don't have pricing right now... Do you know some other services of the likes of amazon, google or whatever that offers a good security service (and not expensive of course) we will be storing very little data. thanks. [link] [comments] | ||
Helping users explore the web and continue prior tasks Posted: 01 Oct 2021 09:50 AM PDT
| ||
Are there any downsided to using yarn for global packages and npm for local ones? Posted: 01 Oct 2021 08:47 AM PDT Title. I've stared using ionic and it requires that some packages are installed globally. Running Yarn, however, lets me install global packages without errors. I've just had to add [link] [comments] | ||
Accessible Palette: Create color systems with consistent lightness and contrast Posted: 01 Oct 2021 04:48 AM PDT | ||
[Help] How to disable Bracket's suggestion or hint when opening a bracket? Posted: 30 Sep 2021 11:42 PM PDT
| ||
Injecting environment variables into static websites using NGINX Posted: 01 Oct 2021 01:06 AM PDT | ||
Looking to get a dedicated static IP ($5) Posted: 01 Oct 2021 02:55 AM PDT I want it for my business, so it needs to be static and not shared with others. I looked up for some VPNs and hey cost like ($10-$15) a month. I wonder if there are some VPS that costs lower (with a static dedicated IP), I've heard some people gets it for $3 [link] [comments] | ||
Posted: 01 Oct 2021 12:24 AM PDT Hey guys. New freelancer here. Just finished my first client and everything went great. Finally making some money after years of school and learning feels great but bills don't stop so I need to find some new clients. I made a company website, a Facebook page, and a google company listing. I haven't advertised or anything yet and I've had zero inquiries so far. I'm not really sure what to do now. I've looked at upwork but it seems really difficult to get any work that actually pays anything without lots of experience. I'd really appreciate some advice on how to gain more clients. [link] [comments] | ||
Posted: 01 Oct 2021 04:39 AM PDT Should I just go on Fiver/Upwork? I have no experience with them, it seems like very competetive environment. Recently I got jr React dev job and I want to stick to this technology [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