I built a Tailwind CSS code generator using OpenAI's GPT-3 web developers |
- I built a Tailwind CSS code generator using OpenAI's GPT-3
- The cool effect that when you have the same background color on Google map and your website.
- I am working on a website that focuses on teaching design concepts through interaction
- How do you handle sending and receiving email programatically?
- How do y'all handle a Story during sprint planning that is hard to estimate at that moment and requires research?
- How to open PWA programmatically on desktop?
- Flexbox and Grid question.
- My PWA on iOS keeps asking for camera access permission (it's fine on Android)
- What would you charge for a "basic" website using a CSS framework (Bootstrap, Materialize)?
- What would be the impacts on me, as a front end developer, if I were to start using Microsoft Edge over Chrome?
- Is there a way to use the same SCSS variables in multiple npm packages without redeclaring them?
- How I Made the Django React and Redux Blog
- In favor of small modules and plumbing
- Do you move a lot?
- I can't find any popular website that uses CSS Grid. Is it's usefulness overstated in this sub?
- As a webdev, do you offer other services?
- Problem with content editable
- Can I play an audio file when I run a .js file in VS code with "node fileName.js" in terminal?
- How To Improve Your Online Learning - Educational Technology Best Practices
- Good e commerce learning resources
- A new website conversion optimization tool
- Is it possible to encode/decode a UUID (v4) to a number?
I built a Tailwind CSS code generator using OpenAI's GPT-3 Posted: 26 Jul 2020 11:36 AM PDT | ||
The cool effect that when you have the same background color on Google map and your website. Posted: 26 Jul 2020 01:40 PM PDT
| ||
I am working on a website that focuses on teaching design concepts through interaction Posted: 25 Jul 2020 05:11 PM PDT
| ||
How do you handle sending and receiving email programatically? Posted: 26 Jul 2020 12:10 PM PDT It seems that almost every website sends and receives email but I struggled to find clear information on recommended approaches to email. I currently have a custom domain email (for free), using an email provider similar to Gmail. My backend is in Node. What's the next step? Here are two approaches I can think of:
[link] [comments] | ||
Posted: 26 Jul 2020 09:52 AM PDT Le't say the Story in question requires something like setting up Redis for caching. No body on the team has done it before and we simply can't estimate this ticket. My initial research suggests using a Spike issue type for this. Basically you create a task with a max amount of time to spend on it. The result of the spike is the info needed to properly estimate the Story. Now my question is after the Spike is complete and we have the info we need, do we now add a point estimate for the Story and include it in the current sprint? Keep in mind this sprint could be a day or two in by the time the Spike is complete. This seems dangerous and could upset the sprint commitment and load balancing. The other thought I had is during sprint planning, we look ahead into the backlog and identify Story's for the following sprint that needs Spikes. So we do the research this sprint to be ready for the next sprint. My fear with this approach is that sprint planning will go even longer than it already does. The other idea I had was some sort of mid-sprint meeting with the dev team with the exclusive goal of looking into the backlog for next sprint and creating Spikes to complete before the next sprint. The downside to this approach is that we might be creating more work mid-sprint than the current sprint can handle. Other ideas? [link] [comments] | ||
How to open PWA programmatically on desktop? Posted: 26 Jul 2020 11:36 AM PDT Hello, I'm trying to find a way to open my PWA app programmatically or with a URL/URI from browser or another app. So far things I've tried: - Setting scope and start_url: - Using registerProtocolHandler: I registered a custom protocol using registerProtocolHandler hoping that PWA would open when user clicks a link starting with the protocol. But it just opens the website in regular browser. Any other ideas? [link] [comments] | ||
Posted: 26 Jul 2020 10:51 AM PDT I finally understand the purpose of the Flexbox and Grid Layout. Flexbox is one dimensional usually used for horizontal containers, while Grid can be used for more larger layouts. Hence the reason why I was having issues with my image gallery using Flexbox. However, I heard Flexbox and Grid can be used in conjunction with each other in a single webpage. My question is: Do you normally layout the entire webpage with Grid? Then specify which rows or columns to be Flex? [link] [comments] | ||
My PWA on iOS keeps asking for camera access permission (it's fine on Android) Posted: 26 Jul 2020 03:26 PM PDT This is what I see every time I access the camera via Javascript on my PWA (standalone mode): https://i.imgur.com/po6aUsC.png I've read that you can allow the PWA's website to always consent the camera access but that works only if you open the PWA on Safari (no standalone/app mode). Alas, setting the permissions on Safari will be ignored when you open the same PWA as an app (standalone). Did you ever come across this annoying feature? Chrome/Android asks for permission once and it saves it forever. [link] [comments] | ||
What would you charge for a "basic" website using a CSS framework (Bootstrap, Materialize)? Posted: 26 Jul 2020 03:34 AM PDT I haven't done small sites on a freelance basis in a long time; I've done WordPress sites and contracted for larger companies in the recent part of my career. But it is something I'd like to start offering again. Based on my hourly rate and experience level, I don't think 2K is expensive, but when I consider the existence of Wix and Squarespace, I wonder if it's a bit high for a lot of folks. Of course, I'd sell it well. For a bit more context: I'm more developer than designer. I can slice a PSD and make a nice layout, but leave logos, etc. up to the client. I'm also a MERN stack developer but that's a separate option. Thoughts? EDIT: Please don't be afraid to have an unpopular opinion on this and if you'd rather not talk about rates in a forum, feel free to message me. [link] [comments] | ||
Posted: 26 Jul 2020 03:05 PM PDT I just downloaded the new Edge, and, as far as I know, it's basically Chrome, but it eats up way less memory. I want to switch over and main Edge over Chrome for doing things like testing my web app during development, but, being that the browser market is comprised of a majority of Chrome users, I'm wondering if it it's worth it or not as a front end developer to make the jump. For instance, some technologies I use on my projects look perfectly fine on Chrome but can end up looking scuffed on other browsers. A lot of the time, this isn't an issue for me, mentally speaking, because a majority of users use Chrome anyways, so most of the people who are using the apps I work on are going to be experiencing them the way I intended them to. But, being that, from what I can see, Edge is basically Chrome, I'm wondering if I don't have to worry about these sorts of things. I originally thought that it'd be an issue to switch over to Edge because users might use MacOS, iOS, Android, etc., but, apparently, it seems like Edge is available for all of these OS's and will be available for Linux as well. Plus, if it's really basically 99% like Chrome, I don't see what the issue would be in switching over, but what do I know. What would be the impacts on me, as a developer, if I were to switch over to using Edge over Chrome 99% of the time? [link] [comments] | ||
Is there a way to use the same SCSS variables in multiple npm packages without redeclaring them? Posted: 26 Jul 2020 10:45 AM PDT I have a large React project in which some of the components need to be reused in a different app. So I decided it's best to publish them as private npm packages. The problem is, the current structure of the project is that there is a global What's the general way to solve this issue? Is there a way to publish an npm package that only has some scss files in it and other packages would import them? Thank you [link] [comments] | ||
How I Made the Django React and Redux Blog Posted: 26 Jul 2020 10:45 AM PDT
| ||
In favor of small modules and plumbing Posted: 26 Jul 2020 02:01 PM PDT | ||
Posted: 26 Jul 2020 06:54 AM PDT For the folks that have been in this career a while, do you end up moving around from city to city quite often for job opportunities? [link] [comments] | ||
I can't find any popular website that uses CSS Grid. Is it's usefulness overstated in this sub? Posted: 26 Jul 2020 03:45 PM PDT In comparison I see flexbox used absolutely everywhere. [link] [comments] | ||
As a webdev, do you offer other services? Posted: 26 Jul 2020 04:45 AM PDT I've been thinking about this for a while, as a webdev ( be it front-end back-end or full stack), do you offer some other kind of service? Like, local SEO for example, social media marketing or some other skills that you're at a professional level. Wouldn't seem to the client that you're just a "knower of all, Master of none" ? [link] [comments] | ||
Posted: 26 Jul 2020 10:29 AM PDT (posting for a friend, so I may not be able to answer comments too quickly) I have a ContentEditable div that I'm using to try to make my own WYSIWYG editor (using Chromium 83) The problem is that hitting enter to make a new line is really inconsistent with what it inserts into the div, which in turn causes the cursor to act really weird when pressing Up or Down. For example, when you press up it sometimes jumps halfway up the page for no apparent reason, and other times, it just jumps up to the nearest div tag that it can find, instead of only moving 1 line up. My question is what can I do, either by handling enter presses or changing something about the editor div, to make the cursor just move up and down line by line like a regular text editor? (even if the line is blank) Also while positing this on Chomium-dev I realized that Google Group's (old style, not new Groups) post editor, which is a contentEditable div, shows this behavior that I'm looking for, AND so does the Reddit post editor, so if anyone knows how those work that could help. It seems like wrapping every line in a div would work, and that's what Chrome is supposed to do by default, but when spamming enter Chrome only inserts a div tag sometimes. I've tried:
All of these either don't work at all or still cause the cursor to jump up to random places in the editor when pressing Up or Down. I just want it to move up and down 1 line like regular text editors. I even see this happen in modern WYSIWYG editors that I found online (but surprisingly the Reddit post editor shows the behavior I'm looking for), and I can't find a fix anywhere. [link] [comments] | ||
Can I play an audio file when I run a .js file in VS code with "node fileName.js" in terminal? Posted: 26 Jul 2020 03:20 PM PDT I made a stand alone JavaScript file that is scraping a website and monitoring a number. When the number hits a certain threshold I want to play a sound. Is this possible to just run my .js file from terminal in VS Code and get audio? I've done a little digging and I've come across things like play.js found at https://github.com/Marak/play.js I downloaded the code to test it out and every time I "node examples.demo.js" I get the error "internal/modules/cjs/loader.js:969 throw err; ^ Error: Cannot find module 'D:\Portfolio Projects\play.js-master\demo.js' at Function.Module._resolveFilename (internal/modules/cjs/loader.js:966:15) at Function.Module._load (internal/modules/cjs/loader.js:842:27) at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:71:12) at internal/main/run_main_module.js:17:47 { code: 'MODULE_NOT_FOUND', requireStack: [] }" Any idea what my issue is? Is it even possible to play an audio file in VS code this way? [link] [comments] | ||
How To Improve Your Online Learning - Educational Technology Best Practices Posted: 26 Jul 2020 09:28 AM PDT
| ||
Good e commerce learning resources Posted: 26 Jul 2020 12:52 PM PDT What are some good blogs, youtubers, books, ... to get my e commerce knowledge onto the next level. I've created woocommerce sites, with basic themes, even a SPA. But I want to learn the cutting edge stuff in 2020. Where can I find reliable resources? [link] [comments] | ||
A new website conversion optimization tool Posted: 26 Jul 2020 10:19 AM PDT Anyone would like to try out a new website conversion optimization tool with A/B testing, Heatmap, and Session Recording? Let me know if you're interested I can hook you up with a 50% early bird discount. [link] [comments] | ||
Is it possible to encode/decode a UUID (v4) to a number? Posted: 26 Jul 2020 12:30 PM PDT |
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