Web Design in 4 minutes web developers |
- Web Design in 4 minutes
- The excitement I get when these donations for my web-app come in is far more than if I got the money any other way. The fact that some people are just choosing to pay is really exciting to me.
- Could I use code from Codepen in projects I get from my workplace?
- Months ago I saw Traversy Media (I think) responsive site tutorial on YouTube and learned a very simple way to transition a link without an underline to have one faded in after e.g. one second, but now I can't find the video
- How To Spot Toxic Software Jobs From Their Descriptions
- Does hosting using an AWS S3 have many advantages over Netlify?
- Can i program on a tablet or ipad (using code editor etc etc)?
- How did Stripe make their "Northern Lights Color Plane"?
- Chrome 86: Improved Focus Highlighting, WebHID, and More
- How do I get my extension and website to share login tokens?
- strapi help required- how to get out of development mode with PM2
- Why does responding back to an iframe with Javascript work in IE but not Chrome or Firefox?
- Consistent Error Response Format for ASP.NET Core Web APIs
- Taking Pixel-Perfect Screenshots Every Time Using Chrome Devtools
- Bought an http URL and it's not working?
- Hi! I'm a newbie looking for some advice on a specific task to do with integrating a CSV file.
- What can a web developer/web designer offer that website builders like wordpress/wix can't?
- It's easy to code, But it's too difficult to pick a business logic, library or services.
- Need help in implementing JWT authentication using Passport
- Episerver Snaps Up Optimizely
- Lossless soft-deletes with Hasura
- Social Media Icons Hover Effects | HTML & CSS
- How can i get simple Website but with good content to get aproved by google adsense?
Posted: 03 Sep 2020 12:49 AM PDT
| ||||||
Posted: 03 Sep 2020 01:16 AM PDT
| ||||||
Could I use code from Codepen in projects I get from my workplace? Posted: 03 Sep 2020 10:39 AM PDT Hi! I just recently started an internship and the main focus is web design but I'd also like to think about development. I saw some neat code I would want to implement into the design I'm working on but I'm not sure if I can just take it and paste it, you know? Like is that allowed? Is the code free-to-use for anyone without any commercial restrictions? Would I get the company I work for in trouble by doing this? I read the license text that was below the pen I wanted to use and from my point of view I think it's free to use but I want to make sure and get verification from someone who has used Codepen code before. Here's the pen I'm interested in: https://codepen.io/vajkri/details/grgQmb [link] [comments] | ||||||
Posted: 02 Sep 2020 07:13 PM PDT I really think it was this one but he doesn't include any transitions. It regarded having e.g. But I tried multiple things, none worked and a SO post mentioned pseudo-selectors but I'm pretty sure he didn't use those. I also noticed that including that bottom border in a:hover adds a second border after the original one, which I find annoying. [link] [comments] | ||||||
How To Spot Toxic Software Jobs From Their Descriptions Posted: 03 Sep 2020 01:42 AM PDT
| ||||||
Does hosting using an AWS S3 have many advantages over Netlify? Posted: 03 Sep 2020 01:40 PM PDT I know that with an S3 you can use Cloudfront and then your website will load faster all around the world. I'm guessing this will also reduce the server response time which will boost your Lighthouse score. Are there many more advantages with using an S3? Or is there another option which would provide a lot more benefits? It's certainly a lot more complex. [link] [comments] | ||||||
Can i program on a tablet or ipad (using code editor etc etc)? Posted: 03 Sep 2020 02:10 PM PDT I want to buy a tablet or a ipad to draw ideas/websites design, etc etc in home and when traveling, but i dont want just buy a tablet for that. So i am asking if is it possible for me to program in a tablet/ipad on some code editor, or if anyone tried to program on that. If yes what tablets do you guys recomend? [link] [comments] | ||||||
How did Stripe make their "Northern Lights Color Plane"? Posted: 03 Sep 2020 08:39 AM PDT Not sure what to refer to it as, but the animated, colorful design on their homepage. Even search terms for related designs or tutorials would be appreciated. I've looked into the source and I know it's a ton of gradients on a canvas, but I'm looking for someone to break it down more. [link] [comments] | ||||||
Chrome 86: Improved Focus Highlighting, WebHID, and More Posted: 03 Sep 2020 03:21 PM PDT
| ||||||
How do I get my extension and website to share login tokens? Posted: 03 Sep 2020 10:12 AM PDT I have a web app that uses a JWT stored in Is there a simple workaround that doesn't requiring syncing data across my server? If I do need to sync these information actively, how would I go about doing that? [link] [comments] | ||||||
strapi help required- how to get out of development mode with PM2 Posted: 03 Sep 2020 02:52 PM PDT ok, so i have now set up 2 strapi 'servers' one on my vps and one on my local machine, that isn't difficult and actually makes it VERY simple to set up an API for you to serve information for web pages etc. i'm using pm2 to start the server, but its in development mode, and i can't run help, how can i start this in production mode in pm2??? [link] [comments] | ||||||
Why does responding back to an iframe with Javascript work in IE but not Chrome or Firefox? Posted: 03 Sep 2020 02:46 PM PDT First things first, I am not a webdev by trade but I do know enough to be able to develop little iframe widgets and extensions for our on-prem dynamics CRM system. Please forgive me if I am missing something obvious here. (TL;DR at bottom) This is going to take a bit of background to understand what is going on. Without getting too specific we have an entity in dynamics CRM that has an embedded iframe with a button. The entity page itself (parent page) has some fields we pass to the iframe (child) using javascript that looks something like this: This is pretty simplified and has the identifying bits chopped out but to explain what is going on, IFRAME_MyIframe is the identifier in CRM for the IFrame, Xrm is the CRM SDK for JavaScript, and new_myvar1 is the name of the field in CRM we are grabbing a value from. This loads the iframe which has a button on it which looks more or less like this (again, stripped down to what is necessary for context): When the button is clicked it runs MyCSharpFunction() which will take the variable passed in the URL, do something to it, then return the output both to the IFrame and to a field in the parent page. This is accomplished by doing this: So this whole charade works perfectly with IE, both the label "out" in the iframe and the field "new_myout1" in the parent window are updated with the correct output. Looking at the network tab of the dev tools in IE vs Chrome I can see in IE that a POST is sent to the server when the button is pressed and soon after the browser receives a GET and updates the page as expected. However in Chrome/FireFox I can see the POST is sent but no GET is ever received and neither the iframe nor the parent page are ever updated. TL;DR: IFrame POSTs to server, server takes variable, does something to it, and uses Response.Write() to send back a pair of <script> tags which contain JavaScript update info on the parent page. IE will send the POST and receive a GET with the script just fine. Chrome/Firefox will only send the POST, no sigh of a GET and the page does not update. Does anyone know whats up here? Am I missing something? [link] [comments] | ||||||
Consistent Error Response Format for ASP.NET Core Web APIs Posted: 03 Sep 2020 06:14 PM PDT
| ||||||
Taking Pixel-Perfect Screenshots Every Time Using Chrome Devtools Posted: 03 Sep 2020 02:19 PM PDT | ||||||
Bought an http URL and it's not working? Posted: 03 Sep 2020 05:50 PM PDT Hi! Sorry if this is the wrong forum. Basically I'm trying to make a property real estate website: http://2020holly10.com/ I bought this but nothing is coming. I used a website called primolisting.com to make it and through it I purchased the URL above. I work in SEO so I feel like it should still come up? The domain is coming up as taken though so I have bought it. The company Primo Listing is kind of defunct so customer service won't help. Just wondering if there is anyway to redirect or if you guys can figure out what happened? Thanks! [link] [comments] | ||||||
Hi! I'm a newbie looking for some advice on a specific task to do with integrating a CSV file. Posted: 03 Sep 2020 05:42 PM PDT I want to build a website where the content from the website is being pulled from a CSV file. I am not looking to insert an html table, which I already know how to do. Instead I'm looking to do something like.
and then take the contents of this and use them as like
where A2, B2, and C2 are just pulling from those respective cells. I would also like it to auto add list items as the spreadsheet gets filled out. I am not super familiar with most things beyond HTML, CSS, and Java, as I am a college student still learning how things work. While I know that ideally I should just learn javascript, I am working on a tight-ish timeframe for this project as I want to have this website fully fleshed out as soon as possible. I've seen a guide on how to pull this off with Google Sheets and Zapier, but I want to keep this as open-source (and more importantly, non-Google) as possible. Any help would be highly appreciated. [link] [comments] | ||||||
What can a web developer/web designer offer that website builders like wordpress/wix can't? Posted: 03 Sep 2020 12:40 PM PDT Obviously custom design is something you would need by a web developer. I know that backend and dynamic websites is something you would need a web developer for, but I think most businesses just need a static website. Some basic SEO probably (although I wouldn't consider myself an "SEO expert", I know a little bit) A recent website I completed is suddenlysask.com . This website has a bunch of articles on it, which I'm pretty sure you can't do with wix(but maybe with wordpress?) I just want to know what I can offer people that they wouldn't be able to do themselves. [link] [comments] | ||||||
It's easy to code, But it's too difficult to pick a business logic, library or services. Posted: 03 Sep 2020 08:50 AM PDT I really face this every time my big time waster, pick an approach, service, library, package and other and all, for my App. How do you deal with this? [link] [comments] | ||||||
Need help in implementing JWT authentication using Passport Posted: 03 Sep 2020 09:12 AM PDT I'm a beginner and I'm trying to implement JWT authentication for the first time. Right now, I am very confused and have a lot of questions, especially regarding the implementation part. I start off by listing the different queries I have, and hopefully the back and forth will give me a better insight into authentication. So, here goes. 1) I saw people using Passport-jwt and Passport-Local strategies together. Why? I was under the impression that they do the same thing. If they are indeed different, how do they work together? 2)Right now, I am able to send back the JWT from the backend to the front-end. Now, how/where do I store it (localstorage vs cookies - if cookies, how do I implement it? Am I right in assuming I will have to create a cookie extractor function for the Passport configuration code?), and how do I send this information back during future requests (how to conditionally check for the presence of the JWT, and only if present, set the Authorization header? Where do I set the authorization header, in the axios options object?) ? It's a bit fuzzy for me right now, and I can use some help. [link] [comments] | ||||||
Posted: 03 Sep 2020 09:43 AM PDT
| ||||||
Lossless soft-deletes with Hasura Posted: 03 Sep 2020 07:09 AM PDT
| ||||||
Social Media Icons Hover Effects | HTML & CSS Posted: 03 Sep 2020 12:40 PM PDT | ||||||
How can i get simple Website but with good content to get aproved by google adsense? Posted: 03 Sep 2020 12:09 PM PDT Hi there! I make simple aplications in website format,with little text and information, just the application functions etc etc. The problem is to get aproved by google adsence the website need to have alot of information and content, where it lacks on my website, because they are simple applications. For exemple, i am making a simple League of Legends player search website,and i want to place google adsence adds wich is kinda impossible because of the low content. So how do guys with simple websites place the ads on their websites? What tips can you guys give me to improve the chances of being aproved? Thanks! [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