- Facebook is down. Anyone else feel a weird sense of satisfaction/vindication when major services go down? Look, this stuff is hard, even enterprise level companies screw it up on the regular. Now don't get mad at me when our app goes down for an hour twice a year.
- web.dev — A website by Google's web developer team with a bunch of guides on how to create a good website, along with a site tester that tells you how to use their guides to improve your existing websites
- Visual Studio Code October 2018 (1.29) Released!
- Vue.js–Getting started in Dart (Part 2)
- Natural Language Processing API
- What is the latest status of autoplaying inline video on mobile?
- Testing your React App, common and advanced patterns
- CSS / JavaScript Questions
- How to decide where to put application logic in an AJAX application?
- Service Workies by Dave Geddes (Creator of Flexbox Zombies and Grid Critters)
- Coding Resources - Vol. 2
- Connecting an HTML/CSS/JS front end to a Django application that uses a Flask API
- Beating hash tables with trees? The ART-ful radix trie
- Facebook is down
- Books from 2008
- Newbie Web Developer With .Net Desktop Experience
- Vue.js–Getting started in Dart (Part 2)
- Limitrr: Better Express Rate Limiting.
- Listening to DOM changes by Javascript Web API, Mutation Observer (hint: It’s the best practice)
- Is a coding bootcamp worth it in my situation?
- While facebook's down, here's a tutorial if anyone wants to get started with GatsbyJS
- What is a good (great!) user settings management program/CRM/CMS?
- Tips and tricks for scalable CI/CD flow
- Postmortem on the read-only outage of Basecamp on November 9th, 2018
Posted: 12 Nov 2018 09:56 AM PST
| ||
Posted: 12 Nov 2018 10:31 AM PST | ||
Visual Studio Code October 2018 (1.29) Released! Posted: 12 Nov 2018 11:10 AM PST
| ||
Vue.js–Getting started in Dart (Part 2) Posted: 12 Nov 2018 05:29 AM PST
| ||
Natural Language Processing API Posted: 12 Nov 2018 02:32 PM PST | ||
What is the latest status of autoplaying inline video on mobile? Posted: 12 Nov 2018 01:49 PM PST (pls disregard your opinion of whether autoplay is good or bad for this post) IIRC Mobile Safari allowed auto-playing of inline video in 2016, I also read that Mobile Safari doesn't allow auto-play on power-save mode, and Chrome doesn't allow on Android in data-save mode. The latest update talks about it here as well but seems unclear - talks about 'best practices' and not what's possible technically. Any other latest standards or policies? [link] [comments] | ||
Testing your React App, common and advanced patterns Posted: 11 Nov 2018 11:07 PM PST I created a repo with tests for components of common React patterns. This includes basic components like updating state, dealing with higher order components and creating snapshots. The advanced components include usage of browser global variables like window, document and eventListeners and tests for React context and React createRef. The repo url is: github.com/mikeheddes/react-testing-demo. I hope this can help some of you. Let me know what you think. [link] [comments] | ||
Posted: 12 Nov 2018 11:07 AM PST Quick question about CSS. I've isolated a case where it's doing something that I don't understand and I am hoping that someone can help explain it. So, in this little example, there are two colors. They are both set to Green in CSS, and then the JavaScript overwrites one color with blue. The color changes, so to me it seems like this is setting the value that determines the color of the text on the page. However, only the color that javascript replaced logs out to the console. The other one seems to be blank, despite the fact that the CSS worked and the text is actually green. Log: Why? What is going on here? If I want the current value of the CSS, how do I get it? Where is that stored if not in this object? If anybody could even point me in the right direction here I would really appreciate it. edit: I figured out how to get the value. If it's not set inline then you need to use getComputedStyle to see it. i.e: [link] [comments] | ||
How to decide where to put application logic in an AJAX application? Posted: 12 Nov 2018 08:10 AM PST Hi everyone, I'm building a simple AJAX application to load data from a Postgres store using Node/Express. The API that I've built returns a single array of many objects containing a huge amount of data that is displayed to the user based on a single user search query. For the application to be valuable to the user, they need to have the ability to sort and filter the data. The question that I have, is should the filtering and sorting be handled on the backend, making POST requests for each filter selected by the user, or should I load all of the data into an array within the AJAX logic of my application and sort the data there? I'm not sure if there's a right or wrong answer to this question, which is partly why I'm struggling with it. I'm happy to post my source code below, but I'm not sure if my question is application specific. I'm completely split. Do I keep all of the logic on the server, to make the front end as light weight as possible in case I maybe one day transition to a React front end? Or, do I make the backend in charge of one simple job: to return a large array of objects for the front end to handle? The API for my app below is found in "routes/index.js". The AJAX half of the application is located in the "public/js/src/search.js" file. There is a very high chance I'll be moving to React.js in the next month or so, so I'm almost leaning towards putting the logic on the server. I'm mainly interested in what a developer would do if they were treating this as a professional, larger web application in a corporate/team environment. Source: https://github.com/matthewvolk/healthiestthingat Front end: http://www.healthiestthingat.com/ [link] [comments] | ||
Service Workies by Dave Geddes (Creator of Flexbox Zombies and Grid Critters) Posted: 12 Nov 2018 04:34 PM PST
| ||
Posted: 12 Nov 2018 07:46 AM PST
| ||
Connecting an HTML/CSS/JS front end to a Django application that uses a Flask API Posted: 12 Nov 2018 04:14 PM PST I have never made a web application using Django, Python, Flask, etc. I am not sure how to even get the directory sorted out. I was going to just write the front end and then figure out how to connect everything to it, but I don't even know where to begin. Here is the prompt:
I always have trouble getting started when there's already existing code. I do so much better when I am the one creating everything from scratch. Does anyone else usually have this problem? [link] [comments] | ||
Beating hash tables with trees? The ART-ful radix trie Posted: 12 Nov 2018 06:30 AM PST | ||
Posted: 12 Nov 2018 10:06 AM PST | ||
Posted: 12 Nov 2018 04:03 PM PST Do you guys think that books from 2008 for progtamming languages are worth the time to read due to how old they are? [link] [comments] | ||
Newbie Web Developer With .Net Desktop Experience Posted: 12 Nov 2018 08:16 AM PST I've been a desktop app developer for several years, with virtually no web dev experience. I am essentially starting to learn web development from the very beginning. As for a choice of technologies, I'm very much used to C# for desktop development. Would ASP.Net be a natural fit, given my C# experience, or is there a better fit for a beginner? Thanks. [link] [comments] | ||
Vue.js–Getting started in Dart (Part 2) Posted: 12 Nov 2018 03:33 PM PST | ||
Limitrr: Better Express Rate Limiting. Posted: 12 Nov 2018 03:21 PM PST
| ||
Listening to DOM changes by Javascript Web API, Mutation Observer (hint: It’s the best practice) Posted: 12 Nov 2018 07:49 AM PST
| ||
Is a coding bootcamp worth it in my situation? Posted: 12 Nov 2018 03:18 PM PST I'm 20 years old and I recently moved to a new city (Charlotte, NC if it matters) and have been teaching myself web development since April after dropping out of college last year and figuring things out. I have been using tutorials on YouTube and other websites to teach myself HTML, CSS, JS, Bootstrap, Sass, and jQuery and have gotten comfortable using some of these technologies. In addition, I have been using FreeCodeCamp to learn web dev. My reason for wanting to go to a bootcamp is so I can have a more structured environment to learn in as well as having people more experienced to learn from and help me out. Most importantly, I want to make connections and be able to network with employers and feel that I wouldn't be able to do that teaching myself. What do ya'll think? Thanks in advance! [link] [comments] | ||
While facebook's down, here's a tutorial if anyone wants to get started with GatsbyJS Posted: 12 Nov 2018 03:04 PM PST GatsbyJS Tutorial | Getting Started with A Blog Here's a starter tutorial of how to get started with Gatsby. I explain how to host your first site for free: https://youtu.be/Ho0vOnXqJK0 Let me know what you think & want to see/learn. Here to help you!! I'll respond. - Hays [link] [comments] | ||
What is a good (great!) user settings management program/CRM/CMS? Posted: 12 Nov 2018 03:03 PM PST We have a program that enables users to use some of our scripts, like mailchimp integrations and stuff like that to use in their Apps. However, for some scripts there's more info needed and now we want to store that for them, like API keys and such, which they now send as a POST request to us which is no longer needed when we have that data for them on file. Our users are in MySQL, we use PHP (getbootstrap theme (old setup)) and a Wordpress website (latest setup) to facilitate this. They copy a JSON code and put it on their website/in their App for it to work. We're thinking of making it easier by letting them enter some data with us, so we can give them better scripts, such as Paypal payments for a specific purpose (in App payments). So, long story short: what would be a smart, nice looking interface for them to select a feature from a menu and then enter their data needed to be able to use that service. They need to be able to enter it and edit/remove when needed. If their data is there, we can just get it from the dbase when needed based on their license key/email combi. I hope this makes sense and that you have some (good) suggestions. I'm drawing a blank. I did have a look at several Envato Backend/Admin themes and they look nice, but I'm uncertain if they actually do what we need. They look like they just spit out forms and graphics. Initially we started building all our scripts with the old bootstrap setup, but after 25+ integrations, it got pretty annoying without a CMS, hence the new WP setup. Cheers Reditters. [link] [comments] | ||
Tips and tricks for scalable CI/CD flow Posted: 12 Nov 2018 08:56 AM PST
| ||
Postmortem on the read-only outage of Basecamp on November 9th, 2018 Posted: 12 Nov 2018 02:51 PM PST
|
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