• Breaking News

    Sunday, July 5, 2020

    Has being a web developer helped you understanding more about things outside of the domain itself (ex. about logic, about consciousness, about yourself, about language, about philosophy, about systems etc.)? web developers

    Has being a web developer helped you understanding more about things outside of the domain itself (ex. about logic, about consciousness, about yourself, about language, about philosophy, about systems etc.)? web developers


    Has being a web developer helped you understanding more about things outside of the domain itself (ex. about logic, about consciousness, about yourself, about language, about philosophy, about systems etc.)?

    Posted: 05 Jul 2020 10:36 AM PDT

    If yes, was it due to being a developer, or was it something you actively sought?

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

    What are your hobbies outside of code?

    Posted: 05 Jul 2020 07:19 AM PDT

    I want to get to know what other web developers are like! Personally, I'm into writing as well as music (guitar playing, music writing). I think I'm a 'composing' person in general.

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

    The Nine Buffalo Rule: How to stop writing unreadable code

    Posted: 05 Jul 2020 07:02 AM PDT

    What are the advantages of using a database?

    Posted: 05 Jul 2020 10:27 AM PDT

    I don't want to sound dumb but what advantage does it have over using a normal json file created as read/write stream on the machine itself?

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

    Svelte.js and Malina.js

    Posted: 05 Jul 2020 05:06 AM PDT

    Sign-in form best practices

    Posted: 05 Jul 2020 06:44 AM PDT

    Portfolio site critique

    Posted: 05 Jul 2020 01:13 PM PDT

    I made a portfolio site with React. Just curious about design/functionality critiques or even job descriptions that I could enhance.

    Thanks!

    https://thmoss.com/

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

    Uncommon CSS Properties

    Posted: 05 Jul 2020 04:44 AM PDT

    I just release and open sourced my Visual Studio Code Theme - Midnight Spruce Pine !

    Posted: 05 Jul 2020 03:20 PM PDT

    I just released and open sourced my Visual Studio Code Theme: Midnight Spruce Pine !

     

    You can download it directly from Marketplace or search and install the extension/theme from inside Code. You can also download the source on GitHub.

     

    Enjoy!

     

    donate

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

    Adding design to a javascript variable with CSS?

    Posted: 05 Jul 2020 11:16 AM PDT

    Hey! I am soooo sorry if this is such a noob question, but I can't find the answer to this anywhere maybe because I don't know how to ask it right.

    Essentially, I want to know what the best way to add a design to a javascript variable is. I am building a tic-tac-toe board, and I am using html symbol's for the the turns (or players markers). I want to be able to add a color or maybe even make the symbol appear bigger, but I can't figure out how to do it. I am assuming it's because I need to do the css designing within my javascript? Or maybe if there was a way to translate my javascript variable to into something I can edit in my css sheet?

    variable:

     var turn = "&#9829", 

    I really hope what I am trying to ask comes across! Please let me know what I can do to ask the question better and to point me in the direction of an answer!

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

    Portfolio website review?

    Posted: 05 Jul 2020 03:43 AM PDT

    https://saadiyam.github.io/

    A little background, I'm a graduate of BSc IT in the Middle East. Graduated in 2019, yet to find an IT job. The website is mostly responsive.

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

    What's a good way to serve files from a remote server?

    Posted: 05 Jul 2020 02:59 PM PDT

    My initial thought would be to mount the storage to the local server with something like sshfs. I think this would cause a lot of unnecessary overhead. I also thought about making a private api running on the remote server that will respond to requests asking to see what it has, then proxy pass the file with nginx. I'm just not really sure what the best way to go about this is, what do large sites do for this sort of thing?

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

    Jobs

    Posted: 05 Jul 2020 12:13 PM PDT

    Can't seem to find any Front End Web Developing jobs here in Mississippi.The only ones I see are remotely jobs..Has anyone had any experience living in a small town?

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

    What's the best way to generate a downloadable collage in a web application?

    Posted: 05 Jul 2020 01:44 PM PDT

    I'm using React and I'm trying to output a collage (image file) to the user based on photos they uploaded to the website. I'm having trouble researching this, but it should be similar to something like https://www.neverendingchartrendering.org/. I'm curious as to how they compiled all these images and text together.

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

    How AdBlock Plus made me read up on browser technology for half an hour

    Posted: 05 Jul 2020 11:07 AM PDT

    How AdBlock Plus made me read up on browser technology for half an hour

    I Just spent about half an hour trying to find out why chrome and firefox kept adding hidden and display:none!important to an image I'd named adv.png. The behavior was absent in Edge.

    I just learnt about Windows not allowing con as a filename, so i wasted time trying to find out if that could be the case here.

    I wonder why I didn't check extensions first. Turns out AdBlock Plus was just doing it's job.

    Thought it'd be wise to post this somewhere incase someone runs into a similar issue in future.

    https://preview.redd.it/ti0qlb30v2951.png?width=818&format=png&auto=webp&s=d6d8ff179095efdbcdad1a21a6522ac9ff75a416

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

    Unpopular Opinion: I Code for Mobile as I go...

    Posted: 05 Jul 2020 11:03 AM PDT

    Who else would for example finish the header in desktop size, then go and code it for mobile, then move onto the next component? It can't just be me!? Curious to know if many of us do that.

    View Poll

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

    CSS Grids: Yay or Nay?

    Posted: 05 Jul 2020 12:22 PM PDT

    Do you use CSS grids in your web apps?

    View Poll

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

    Best way to handle mfa

    Posted: 05 Jul 2020 03:21 PM PDT

    What's the best way to handle MFA input on a website?

    I see two approaches:

    1. I have the user put in their username, password and MFA then hit submit (I verify all this server side in one shot and return error "password /passcode" invalid if any of the two is wrong)

    2.user puts in username and password (I validate and forward to /totp if correct and then check this MFA before issuing a session

    I see number 2 is how Google handle it and a few other websites but personally I feel option 1 is more security focused (way harder to brute force as both passcode and password need to be correct at the same time to get through)

    Any thoughts?

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

    Is this the normal size for a newly created project in GatsbyJs?

    Posted: 05 Jul 2020 03:15 PM PDT

    I'm using GatsbyJs to create a personal blog and once I run the command to create the project (as per this post) I noticed a lot of files being created and the end result is this atrocity: https://i.imgur.com/H9BDbNZ.png

    Is this normal? Am I doing something wrong? How can this thing be half a GB and spawn 100k archives from the start?

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

    Feed my curiousity

    Posted: 05 Jul 2020 03:14 PM PDT

    Alright, first of all, know that i'm not in the business, just a very curious person and because Website are so omni-present I wanted to know more about them. Started doing my research on my own and It just brought more questions.

    I need help picturing the architecture of a Website. Frond-end is what we see (Html, Css, JS) thats fine, I get that. But, what I have trouble with is CMS, and Webapps. I think a CMS is in between the database and the front-end, telling the data where to place itself on the pre-made front-end. But whats does a Webapp do? Does it replace the Html and buddies and is still directed by a CMS, does it have its own way of managing and placing content?

    And when its all coded and launched, can a webapp be managed by a non-code person like a CMS can? Not even certain if a CMS can be managed by a non-code person.

    Does a Webapp as to have a specially coded Administator panel, like a back-back-end.

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

    React: Is it bad to use state in every component?

    Posted: 05 Jul 2020 03:07 PM PDT

    I've heard that it's good to keep class components to a minimum. In my mind, that translates to "keep state usage" to a minimum. I'm working on something currently and I'm only using state in the App.js file, but there's some things I'd like to do which would be easier if I used state in my other components too.

    Is there a general guideline for this?

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

    Learning to style a website

    Posted: 05 Jul 2020 08:46 AM PDT

    Hi Guys,

    over the last couple of months i've been learning Javascript for frontend and backend. I feel kinda comfortable creating webapplications, but when it comes to the styling of these apps i have no idea how to get a good looking style and my apps always look really ugly and basic. Should i learn one specific css framework and try to master it, and/or are there any important css rules i should learn? Or if you guys know a good book which teaches webdesign for webdev i would appreciate it.

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

    No comments:

    Post a Comment