August 2018 r/webdev Giveaway web developers |
- August 2018 r/webdev Giveaway
- Peоple who have built sitеs for a passive income, what did you make?
- I wrote a in-depth tutorial for beginners wanting to learn the entire MEAN stack. I hope it helps at least one person!
- Why shouldn't by backend REST API serve my frontend (say, via express.static())?
- Do you build an admin interface for your or your clients webapps?
- Getting started
- Django 2.1 released
- Turning an Angular 6 app into a Progressive Web App
- Writing Secure JavaScript
- Let's Build: With Ruby On Rails - 60+ Videos on Building Apps with Ruby on Rails
- Uber releases Fusion.js, a plugin-based isomorphic web framework
- [HELP] Why is my getElementByID returning null when I have a valid string input?
- [HTML & JS] OnLoad message with cookies
- Breaking up with Bootstrap
- Best Tutorial for adding U2F support to website?
- Difference between building site using Wix, etc vs. Hiring / learning HTML,CSS and Javascript?
- what should I learn Next?!
- [Next.js] How to render component after route change?
- Why do some websites have multiple oddly-named classes for one div?
- Survey for my class about creating a secure website
- WeChat Developer
- New site requirement questions. [help]
- How was this website built?
- What causes a name to be repeated on GitHub for commits, etc?
- LetsEncrypt - any problems or unexpected issues?
Posted: 01 Aug 2018 04:27 AM PDT Hey everyone! This will be the first of it's kind here on the r/webdev subreddit. The subreddit team would like to give back to the community that all of you have created and allowed us to be a part of. The subreddit has seen some dramatic growth recently with the creation of our official Discord, Showoff Saturday, and more. As a thanks, we've reached out to several big players in our industry to see if they'd be willing to help us out to give you guys something awesome. So, without further ado, here are the prizes: Prizes
How to enterSimply share your favorite webdev creation (your own or someone else's) OR share your thoughts on the pace of the industry as a whole in a top-level comment in this thread. Rules for participation
FAQ
Thanks to the sponsors!DigitalOcean, Namecheap, and Scott Tolinski were all very generous when I reached out to them to purchase prizes for the giveaway. They decided to offer these items free of charge instead because they love giving back to the community that is always so good to them! Give them extra thanks next time you have the opportunity to interact with any of them.
Thanks again everyone for making this an awesome community. I'm very grateful to be a part of it, and this is the least we can do for all of you. After all, without you, r/webdev wouldn't exist. [link] [comments] | ||
Peоple who have built sitеs for a passive income, what did you make? Posted: 01 Aug 2018 08:44 AM PDT | ||
Posted: 31 Jul 2018 09:32 PM PDT | ||
Why shouldn't by backend REST API serve my frontend (say, via express.static())? Posted: 01 Aug 2018 01:57 PM PDT title typo: my backend In a node/Vue project recently my express backend serves my Vue frontend with I did this so that I wouldn't have to have 2 hosting providers. It could all be deployed on one Heroku project. Why is this worse than hosting backend on Heroku, and static frontend separately on S3/Netlify/etc? Is it because S3/Netlify would serve the frontend much faster than express/flask/etc would serve it? [link] [comments] | ||
Do you build an admin interface for your or your clients webapps? Posted: 01 Aug 2018 03:39 PM PDT When you write a web app... what is it capable of? How do you let your clients handle data input and output and updates? For example you want to have a booking site where someone could change the dates where your hotel for example has free rooms left or you want to download user data or upload changes. Do you build admin panels for that? Or are you the person who manages that stuff for your clients? [link] [comments] | ||
Posted: 01 Aug 2018 03:02 PM PDT First off, I'm not completely new to development. I have experience in python, I know how to set up a simple sqlite db (usually using orm, mostly sqlalchemy in py but used to use the JPA in java as well). I know how to setup flask/django and all that. I've never really done anything on the front end, though. I want to at least learn some basics. I know basic js+jquery although I usually have to google how to do anything specific. I tend to use typescript over plain js because it's a lot more usable. The problem is that I feel like there are so many subjective answers to the questions I have, that finding general guide lines seems impossible. JS FrameworksThere are about 20 million of them. Angular, vue, react, ember, ... When you first started out, did you just randomly pick one? I probably won't be doing and web dev professionally, so I don't get the "benefit" my company making the choice for me. Too many choicesWhenever I want to do something, there seem to be 20 ways to do it. Let's say my website has a table in it. I could populate the table rows when I first serve the page. Doing so would be super simple by including it in my jinja2 template if it's static content. But what if I need to be able to update said table? First problem, how do I send updates in the first place. I could use ajax. I could use a websocket. I could have my js manually send get-requests to my rest api. It's the choice of push vs pull plus which technology to use. If I serve the known part of the table as part of the initial load, my jinja template needs to know how to construct the proper view. My client side js also needs to know it however if I wanna be able to serve updates. I'd implement the same thing twice and end up with tight coupling. Changing either piece will break the other. StylingI don't want to make a page that looks like it's straight from the 90s, but I'm no good with UI of any sort. If something can be done in a console I generally prefer that. This is probably an area that I'll never really "get". What I'm really getting at here is - how did you get started? Did you just say f* it to all those things and went with the first thing that worked? If I consider every possible alternative all the time, I'll never get anywhere. If I don't, I feel like I'm half-assing it and not learning how to do it "properly". [link] [comments] | ||
Posted: 01 Aug 2018 02:51 PM PDT | ||
Turning an Angular 6 app into a Progressive Web App Posted: 01 Aug 2018 02:06 PM PDT
| ||
Posted: 31 Jul 2018 05:01 PM PDT
| ||
Let's Build: With Ruby On Rails - 60+ Videos on Building Apps with Ruby on Rails Posted: 31 Jul 2018 08:42 PM PDT
| ||
Uber releases Fusion.js, a plugin-based isomorphic web framework Posted: 01 Aug 2018 10:45 AM PDT
| ||
[HELP] Why is my getElementByID returning null when I have a valid string input? Posted: 01 Aug 2018 04:42 PM PDT Here is my code: I'm doing a course from udemy, and I'm trying to fetch data from the NASA Image API with ajax. Once I get the images from a searchbox, I am trying to post those images onto my page and then want to create an event when you hover over.. For now I'm just using alerts to print the image description and title.. Maybe I'll figure out the CSS part later. However, in my code, when I pass through lister2 which is a valid string primitive into getElementById, it returns null. Why is that? It is in line 80 in the code. My hunch is there's something wrong with the scope, but I don't think it's likely because when I print out the string, I see li1 and when I print the typeof it is a string. [link] [comments] | ||
[HTML & JS] OnLoad message with cookies Posted: 01 Aug 2018 04:32 PM PDT So I'm testing new things with js and what I wanted to do is, when someone enters the website with appears a message on the screen, and I know how to do that, now what I wanted is, if the user reloads the page the message appears again and I don't want that, so what I wanted to do is create a cookie so that the server knows that user already saw that message, I wanted to make it last like 1 day or something. Is there any way to do it? And how to do it [link] [comments] | ||
Posted: 01 Aug 2018 05:11 AM PDT
| ||
Best Tutorial for adding U2F support to website? Posted: 01 Aug 2018 04:25 PM PDT Looking for recommended reading for how to add U2F or similar authentication support to a website. Any suggestions? [link] [comments] | ||
Difference between building site using Wix, etc vs. Hiring / learning HTML,CSS and Javascript? Posted: 01 Aug 2018 03:33 PM PDT Aside from the title question: Do hired Web Devs. ever use Wix/Wordpress to build clients websites? Average cost to hire somebody to build a website? Costs monthly to maintain, using Wix and/or hiring somebody? Sorry if there are many questions being asked im just new web dev. and the process. [link] [comments] | ||
Posted: 01 Aug 2018 08:00 AM PDT I'm C/C++ software engineer with 2 years of experience. have basic knowledge about HTML, CSS, JavaScript. interested in learning and mastering Web (maybe career shift) and don't know what should I learn next and what language for servers should I learn ? heard that there is Python, ASP.Net ... [link] [comments] | ||
[Next.js] How to render component after route change? Posted: 01 Aug 2018 02:55 PM PDT I am building a basic crud application in Next.js. I have I now want to display a message on the /posts page to say "Question Deleted" so the user knows the action was successful. I have a Toast.js component that has a show prop that accepts a boolean to render the success message on the posts page but I don't know how to tell it that a question was deleted on the other page. I managed to get it working by adding a query param in the URL of the router.push, e.g: /posts?toast=show and read it when the component mounts then render the Toast prop this way but this doesn't really seem the correct way as it doesn't play nice with history API as the back and forward messages trigger the Toast when it shouldn't. Is there a simple way to do this without integrating something like redux? [link] [comments] | ||
Why do some websites have multiple oddly-named classes for one div? Posted: 01 Aug 2018 05:32 AM PDT This website for example has a bunch of divs and each div has a bunch of classes attached to it even though the homepage looks pretty simple. One div has the 14 classes: I see lots of websites like that and I was wondering why. [link] [comments] | ||
Survey for my class about creating a secure website Posted: 01 Aug 2018 10:08 AM PDT For my project I need to do a survey about my topic, Creating a Secure Website. I was hoping to get some people to take a minute and do the three question survey. [link] [comments] | ||
Posted: 01 Aug 2018 01:49 PM PDT Hello All, I currently have employees that use wechat for business. I would like to know if anyone can help me develop a platform for wechat to monitor employee chat and such. Or if anyone can point me to the right direction, I would deeply appreciate it. Thank you. [link] [comments] | ||
New site requirement questions. [help] Posted: 01 Aug 2018 01:49 PM PDT [Question] I'm looking to create a site whereby users can login using a OneTimePin printed on the bottom of a receipt to access a page to upload an image to a server. Are there any on the shelf solutions that anyone can think of that support this? [link] [comments] | ||
Posted: 01 Aug 2018 01:29 PM PDT This page has a cool feature where if you click outside the content it will generate geometric shapes. I'm still learning html and css and I wanted to find the javascript code out of curiosity. [link] [comments] | ||
What causes a name to be repeated on GitHub for commits, etc? Posted: 01 Aug 2018 07:20 AM PDT
| ||
LetsEncrypt - any problems or unexpected issues? Posted: 01 Aug 2018 12:58 PM PDT I'm trying to assess how hands-off I actually can be with using Lets Encrypt. Once set up to be automated, have any of you had to perform any maintenance or updates to keep Certbot going? Can I expect that from a month to month basis and year after year I should not have to touch the Certbot at all? [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