• Breaking News

    Tuesday, September 28, 2021

    I want to make a complete "note" taking app but i'm still a beginner and only know up to vanilla js. What should I learn so I can make this project? web developers

    I want to make a complete "note" taking app but i'm still a beginner and only know up to vanilla js. What should I learn so I can make this project? web developers


    I want to make a complete "note" taking app but i'm still a beginner and only know up to vanilla js. What should I learn so I can make this project?

    Posted: 28 Sep 2021 07:54 AM PDT

    Hey guys! I'm a beginner, only started first week of September. For my next project, I'm thinking of making a note taking app but it's sorta like a 'wishlist' for items you wanna buy. I'm planning for it to have the following basic features (will add more once i get the basics down):

    • You can add and delete items
    • You can log in and save your notes (im thinking that means i need to learn some kind of database tech but idk what)
    • Each item-note you can also add an image

    I can probably work out all of those with just html,css and vanilla JavaScript except the part where users can log in and out. So where do I get started?

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

    Cloudflare announcement R2 Storage: Rapid and Reliable Object Storage, Minus the Egress Fees

    Posted: 28 Sep 2021 10:36 AM PDT

    Why do so many websites request access to VR devices? Is it some kind of common fingerprinting library or something?

    Posted: 28 Sep 2021 12:50 PM PDT

    cPanel is getting a 2022 price increase...

    Posted: 28 Sep 2021 09:17 AM PDT

    For those with bad math skills, is it better to do frontend or backend?

    Posted: 28 Sep 2021 02:39 AM PDT

    Heres the thing, im not very good at math but want to pursue web dev as a career. I got C grade GCSE for math (UK) and failed computer science college (Mostly due to not attending but still). I have doubts that ill be competent enough to find this a worth while career for me and not waste my early years (22).

    My thinking is that math skills = logic and therefore those same skills are used in programming, meaning i wont be that good (e.g not being able to code complex algorithms)..? Ive also had a few IQ tests (Most reliable ones online, not bs Facebook ones), and could say im in the 100-110 range so pretty average (Average for software devs is around 124)

    If i want to pursue this as a career what are some realistic options for me considering my lack of good math skills.

    Or maybe if i should even consider this path at all..?

    Would appreciate some help :)

    View Poll

    submitted by /u/3dasak
    [link] [comments]

    My Simple Checklist For Well Tested React Components

    Posted: 28 Sep 2021 12:50 PM PDT

    What are the best web dev magazines and publications in 2021? Are they still relevant?

    Posted: 28 Sep 2021 02:39 PM PDT

    Hi!

    I want to revisit this post, now 10 years old, called, Webdevs of reddit, what online web development magazines do you read?

    I've noticed that web dev magazines are less prominent these days, and that there's a shift toward individual dev blogs which get shared in forums like this. But I'm interested in magazines that curate quality, veteran-written content, like A List Apart.

    So, what dev magazines do you read? Where do you get your dev literature?

    Are dev magazines still relevant these days? Do they still attract experts and readerships? Or has the paradigm for dev literature completely shifted by now?

    Thanks!

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

    Realizing I don't know how to design

    Posted: 28 Sep 2021 05:19 AM PDT

    Hello. I hope you're doing well.

    I've spent so much time on learning HTML and CSS and I never really realized that I actually have no clue how to design the actual layout at all. I started building a site for my sister's business and although I could probably bring a designer's layout to life, I myself have no clue where to start making things look good.

    Does anyone have any resources for me to learn the actual design part of the site? (I feel like I probably should have started my learning path there)

    Thank you :-)

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

    Prevent URL Bar from Hiding On Mobile

    Posted: 28 Sep 2021 05:39 PM PDT

    I need to prevent the URL bar from hiding on mobile while scrolling down since I have sections that are the height of the window, and the hiding URL bar triggers a resize event, making for a janky experience.

    I've seen some solutions on Stack Overflow and elsewhere, but I cannot set the overflow property of either the html, body, or any descendant elements to anything other than the default, as I use position: sticky; for the page's sections, which doesn't work when any ancestor element uses anything other than the default overflow value.

    Does anyone know how to achieve this given this constraint?

    submitted by /u/Science-Compliance
    [link] [comments]

    About Us Pop-Out Effect

    Posted: 28 Sep 2021 05:26 AM PDT

    Anyone looking for project reviews or guidance on what to do next?

    Posted: 28 Sep 2021 08:25 AM PDT

    Opened this up to r/learnjavascript a few weeks ago and had a lot fun with it.

    I'm no FAANG engineer, but I'm 7yrs into this field and reached Senior in SF for web development. I've helped people make it in this field without a degree as well. Just let me know what you're stuck on

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

    What do I need to get started? (Like physical items/things to purchase)

    Posted: 28 Sep 2021 02:58 PM PDT

    I'm sorry if this has been asked, I've tried to search the answer one my own but keep getting "what to learn first" type answers.

    I have basically no web development knowledge except what I've read online over the past couple weeks. No actual experience except when I made html layouts back in the Myspace days.

    I just got a laptop and I plan to start the odin project. Is there anything else I need to get? Is this something I should keep a notebook for?

    Again, sorry if this has already been talked about.

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

    How do I stop my webserver private IP redirecting to domain URL?

    Posted: 28 Sep 2021 01:37 PM PDT

    Hi,

    I'm a bit of a newbie to this so if I miss anytning please let me know.

    I'm running a very simple apache websever in debian with a very simple hello world html file in /var/www, no cpanel or wordpress etc. Only additional tool is letsencrypt/certbot for SSL cert.

    Lets say the LAN IP of the webserver is 192.168.1.10 and the domain is example.com

    My DNS is working as expected externally. If i go to example.com outside of my network, I successfully reach the site hosted on 192.168.1.10:443.

    However, when inside my network, if I navigate to 192.168.1.10:80 or 192.168.1.10:443 it will redirect to example.com

    How do I stop this?

    I have tried Googling, but I just get info on how to point my domain to the IP, which is the opposite of what I want to do, because the keywords are the same! :'(

    conf file below.

    Thanks!

    <VirtualHost *:80> ServerAdmin web@example.com ServerName example.com ServerAlias www.example.com DocumentRoot /var/www/example.com ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined Redirect permanent / https://example.com/ </VirtualHost> <VirtualHost *:443> ServerAdmin web@example.com ServerName example.com ServerAlias www.example.com DocumentRoot /var/www/example.com Protocols h2 http/1.1 SSLCertificateFile /etc/letsencrypt/live/example.com/fullchain.pem SSLCertificateKeyFile /etc/letsencrypt/live/example.com/privkey.pem Include /etc/letsencrypt/options-ssl-apache.conf </VirtualHost> 
    submitted by /u/flangepaddle
    [link] [comments]

    Validate your user inputs! AirTag vulnerability turns tracker into Trojan horse, fix incoming

    Posted: 28 Sep 2021 04:54 PM PDT

    Visual Studio Code Extension to convert CSS classes into CSS modules syntax.

    Posted: 28 Sep 2021 04:10 AM PDT

    How do JS libraries like Vue/Apline etc create their own custom html attributes?

    Posted: 28 Sep 2021 08:41 AM PDT

    I'm looking at using AlpineJS and I see that it uses its own attributes like "x-data" for example. In a nutshell, how are these created?

    Does the UI library re-compile itself to be valid HTML/Javascript?

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

    Hello Everyone! I am wanting to make my own website, and I have a few questions on how and where to start.

    Posted: 28 Sep 2021 10:51 AM PDT

    My first question is where to get a domain. Do I have to purchase one from GoDaddy, blue host, or Host Gator? Or is there a way I can make my own? Secondly, to make my website, is it better to make it from Sublime text or use Wordpress? And lastly, if I should purchase a domain or application to make my website, how much more can this way benefit me than rather doing it from scratch?

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

    Podcast recommendation for web developers?

    Posted: 28 Sep 2021 04:03 AM PDT

    Any good web development podcasts so that I can keep myself updated on the move and when my eyes are too tired to read or watch anything? Thanks

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

    Benefits of allowing Bots on your site? (I've begun to remove some blocking.)

    Posted: 27 Sep 2021 08:35 PM PDT

    Until today I only allowed bots — via Cloudflare WAF — that directly bring me traffic and earnings, like Google bots and Bing bot.

    But I was contacted by an actual legit ad agency interested in placements on my sites. And I'm now thinking, maybe I should allow bots: most self-identified bots (with actual real User Agent strings) are somehow in advertising or SEO. And by allowing these '2nd tier' bots access, I might be opening myself up to more legit business.

    Of course, there are a lot of self-serving named bots out there. E.g., they sell their data as SEO info. But I'm now thinking, with my WAF dialed in to block attacks, to rate limit, why not allow all properly named bots? So I marked them "Allow" and my traffic doubled :-) My current server (Heroku 1GB RAM Standard 2x) handles it no problem, so for now it's no cost to me.

    I'm still blocking unnamed bots: ones with curl, java, python, scraper, etc. in their User Agent.

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

    Open-source emojis for designers, developers, and everyone else!

    Posted: 28 Sep 2021 05:13 AM PDT

    Here Are 6 Reasons Why Firestore Might Not Be the Right Choice - you might regret going the NoSQL route in the long run

    Posted: 28 Sep 2021 04:47 AM PDT

    No comments:

    Post a Comment