• Breaking News

    Thursday, September 3, 2020

    Web Design in 4 minutes web developers

    Web Design in 4 minutes web developers


    Web Design in 4 minutes

    Posted: 03 Sep 2020 12:49 AM PDT

    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.

    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

    submitted by /u/R34LZ
    [link] [comments]

    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

    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.

    a { text-decoration: none; [or] border-bottom: 1px solid transparent; transition: [all?] 1s; } a:hover { border-bottom: 1px solid black; } 

    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.

    submitted by /u/jointventuredan
    [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.

    submitted by /u/samgermain
    [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?

    submitted by /u/drking100
    [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.

    submitted by /u/nickjmorrow
    [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 localStorage to keep users logged in. This web app has a supplemental firefox extension that also requires login to work correctly. Currently the user must log into both of these separately. Ideally they would be able to share the same JWT, but localStorage is sandboxed between different websites.

    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?

    submitted by /u/SurpriseAttachyon
    [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 pm2 start "npm run production" (i added a production command) as it gets confused at the run part of the command, and similarly can't run NODE_ENV=production etc. i can run the server with the supplied script (server.js given in the tutorial) but that puts the server in development mode and this isn't exactly right for a final production server, or what will be something similar for my blog.

    help, how can i start this in production mode in pm2???

    submitted by /u/Hate_Feight
    [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:

    function Form_onload() { var iframe = Xrm.Page.ui.controls.get("IFRAME_MyIFrame"); var myVar1 = Xrm.Page.getAttribute("new_myvar1").getValue(); var url = "https://crm.mycompany.com:8443/MyIframe/MyIframe.aspx?myVar1=" + myVar1; iframe.setSrc(url); } 

    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):

    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="MyIframe.aspx.cs" Inherits="CRM_Web_Application.MyIframe.MyIframe" %> <!DOCTYPE html> <head> <title>MyIframe 1.0</title> </head> <body> <form id="form1" runat="server"> <p>Some Text Here</p> <asp:Button ID="Button1" OnClick="MyCSharpFunction" Text="Do Something" runat="server" /> <div id="info" runat="server"> <p>Output:<asp:Label ID="out" runat="server" /></p> </div> </form> </body> 

    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:

    using System.Web.UI; //skip some class and namespace definitions protected void MyCSharpFunction(object sender, EventArgs e) { string myVar1 = Request.QueryString["myVar1"]; string outVar1 = DoSomething(myVar1); Response.Write("<scri" + "pt language='javascript'>"); Response.Write("document.parentWindow.parent.Xrm.Page.getAttribute('new_myout1').setValue('" + outVar1 + "');"); Response.Write("</scrip" + "t>"); out.Text = outVar1; } 

    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?

    submitted by /u/BrowsingFromWork117
    [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!

    submitted by /u/electrictalk
    [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.

    Title Body Date
    How to Peel an Apple In this article, we will be discussing how to peel an apple. What you will first want to do is... 09/03/2020

    and then take the contents of this and use them as like

    <ul>

    <li>

    <div class="blog-post">

    <div class="blog-header">

    <h3 class="blog-title">

    <a class="blog-title-link blog-link" href="example.com">A2</a>

    </h3>

    <br>

    <p class="blog-date">

    <span class="date-text">C2</span>

    </p>

    </div>

    <div class="blog-separator">&nbsp;</div>

    <div class="blog-content">

    <div class="paragraph">

    <em>B2</em>

    </div>

    </div>

    </div>

    </li>

    </ul>

    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.

    submitted by /u/boringnerdygirl
    [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.

    submitted by /u/samgermain
    [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?

    submitted by /u/Chawki_
    [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.
    Thank you :)

    submitted by /u/NecroDeity
    [link] [comments]

    Episerver Snaps Up Optimizely

    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!

    submitted by /u/drking100
    [link] [comments]

    No comments:

    Post a Comment