• Breaking News

    Monday, November 22, 2021

    X-ray with clip-path web developers

    X-ray with clip-path web developers


    X-ray with clip-path

    Posted: 22 Nov 2021 12:17 PM PST

    GoDaddy breach

    Posted: 22 Nov 2021 12:24 PM PST

    why Linux is considered better for web development?

    Posted: 22 Nov 2021 06:24 AM PST

    everyone talks like it's an objective fact that Linux is better than windows, especially in the web dev community, why?

    I use react/express/Postgres would it benefit me to switch over to Linux?

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

    Can anyone offer me some personal advice on monetizing web development? I'm in quite the pickle and need extra income

    Posted: 21 Nov 2021 07:39 PM PST

    so, house fire. lost all my shit. blah blah not that it matters anymore. here i am at this point time and i need to make a decision. my childhood home looks like a post-apocalyptic wasteland. fitting since my favorite form of literature is the dystopian genre. my parents don't really care to clean it properly, so i cannot return. as the environment is beyond hazardous and to this day still smells like burnt plastics and heavy metals

    i have like $4,000 saved up to move out.

    in addition, i'm disabled physically. so i'm slowly becoming aware how fucked my situation really is. i want to start working full-time at my job but i literally cannot handle it.

    it just so happens that even before any of this shit went down i started moving extremely quickly in web development. i was and still am motivated by exclusively artistic pursuits (making games, personal website, software applications like IPFS, etc). however, i realized this week that i need money asap. my situation is really, really bad. i've been trying to close my eyes and pretend nothing is happening but the problem isn't going away and the clock is ticking

    i have 3 months

    i now have a very solid foundation in programming i think. i've been working every second of my free-time in JavaScript, learning HTML/CSS, web API's, etc. you can check my post feed i've been going full-throttle. i intend to become a very good web programmer with expediency. slowly pivoting into monetization. so i'm starting to think about the market, what are people looking for, etc. i wanted advice on where to go from here. my impression is that CSS is obv really important. even though my full undivided attention has pretty much been on JavaScript until now. i need to learn more HTML functionality too. then probably PHP/mySQL and lower-level languages. the biggest hurdle here is time. if i had a year i could do it. i have 3 months and still my health prohibits me from applying myself fully

    edit: thanks for all the support guys :3

    submitted by /u/Retrofire-Pink
    [link] [comments]

    Dockside: An open-source tool for provisioning lightweight development containers with IDEs

    Posted: 22 Nov 2021 08:23 AM PST

    Update on my Space industry job board built with Next.js!

    Posted: 21 Nov 2021 05:35 PM PST

    How can I create an animated hover like this?

    Posted: 22 Nov 2021 08:06 PM PST

    Hey everyone! I'd like to do something similar to this reference, yet I'm pretty new to coding. I use Wordpress/Semplice. Any idea how I could learn to mirror it?

    https://preview.redd.it/h573twj1s9181.jpg?width=1768&format=pjpg&auto=webp&s=6ff19988aa69a0cfb9458bd7a53a6c421892d19d

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

    Concerns over Interview request by third party company

    Posted: 22 Nov 2021 08:43 AM PST

    Hi guys,

    So i am just looking for some advice i suppose, I just graduated from college and am looking for my first job. I just recently passed an assessment for a third party company for an interview process, and the next stage they requested total read/write access to all my public AND PRIVATE github repo's. Now this is one of the first real interview's i've got (other than my internship) and this seems to raise some red flags for me. I am jus curious if this seems like a normal request. Specifically cause i do have a few professional personal projects I've built and have code stored here.

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

    Which back end framework is most widely used in professional development?

    Posted: 22 Nov 2021 09:38 PM PST

    I hoping to build an application for an independent study and want to use a back end framework that is most widely used so I can almost have it as work experience.

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

    Where to deploy firebase configs in production?

    Posted: 22 Nov 2021 09:35 PM PST

    I'm currently referencing firebase configs locally from a .env.local file during development (also so it doesn't get committed to VC). For production, do you most people just leave the configs in code, or set environment variables somehow depending on your hosting?

    FYI by firebase configs I'm referring to these:

    const firebaseConfig = { apiKey: "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", authDomain: "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.firebaseapp.com", projectId: "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", storageBucket: "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.appspot.com", messagingSenderId: "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", appId: "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" }; 
    submitted by /u/spvn
    [link] [comments]

    How do I go about earning money / finding clients?

    Posted: 22 Nov 2021 08:56 PM PST

    Hi, I am 20 & in college.

    I am trying to earn enough money to build a CNC machine ($1,500), so I would like to start making consistent money with web development.

    I have made some money. I do jobs here and there for $100, $150, etc. I think the most I made on a single short term job was around $500; which took almost a month.

    Those are great, I just don't know how to go about finding people who want to hire me, my pricing is quite low too, I often work for minimum wage rates. Around $7/hr.

    I tried making a fiverr, but only made $100~ over the span of several months. I got $60 from one job, and two others for $20 each. (One was repeating customer). The rest has been from discord severs / recommendations.

    I think one of the problems is that I only do server management / setup (apache/nginx) / backend api / functionality. etc.

    I am really bad with design. I don't do frontend, only backend. For example on the one that was $500, my main task was to first set up oauth logins with facebook & google, and then poll for clients business reviews with facebook & google business API & then periodically store them in database. Then, make an embedded widget that clients could include on their website that would display the reviews. It went good & was fun to do.

    Sadly, most web dev jobs I see just want frontend, or if they do want functionality, they just want me to setup their word-press site and stuff.

    How can I go about finding jobs suited for me? Making API / working with API / backend.

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

    What do you guys think of this job post?

    Posted: 22 Nov 2021 08:44 PM PST

    Tried uploading m React app on Heroku, all I see is a blank screen

    Posted: 22 Nov 2021 11:52 AM PST

    Hi guys, so I followed this article on how to deploy a React app on Heroku.

    Basically, it involves setting up a server using express, and creating a production build for the React app by running 'npm run build'

    const path = require('path'); const express = require('express'); const app = express(); const publicPath = path.join(__dirname, '..', 'public'); const port = process.env.PORT || 3000; app.use(express.static(publicPath)); app.get('*', (req, res) => { res.sendFile(path.join(publicPath, 'index.html')); }); app.listen(port, () => { console.log('Server is up!'); }); 

    The problem I'm facing now is that the <div id="root"> element in "index.html" file can no longer connect to my "index.js" file, despite even putting in the tag <script src="../src/index.js> </script> in the <body> tags.

    <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <link rel="icon" href="/public/favicon.ico" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="theme-color" content="#000000" /> <meta name="description" content="Web site created using create-react-app" /> <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" /> <!-- Font Awesome CDN --> <link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous" /> <!-- Google Font (Work Sans, Regular 400) --> <link rel="preconnect" href="https://fonts.googleapis.com" /> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> <link href="https://fonts.googleapis.com/css2?family=Work+Sans&display=swap" rel="stylesheet" /> <title>Website</title> </head> <body> <!-- <noscript>You need to enable JavaScript to run this app.</noscript> --> <div id="root"></div> <script src="../src/index.js" type="text/JSX"></script> </body> </html> 

    When I run 'node server.js' locally all I get is a blank page that only displays things in "index.html", and even when I uploaded it to Heroku, I still get a blank page.

    I've looked around but couldn't find a solution, and I can't seem to undo the error either.

    EDIT: Problem Solved.

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

    Are CompTIA certs useful for transitioning into a web development job?

    Posted: 22 Nov 2021 05:39 AM PST

    Posted this in r/cscareerquestions as well but thought I might get some more info here if appropriate.

    A little background on me, I am active duty Army, transitioning in the next 10ish months to civilian life and I'm trying to do anything I can to set myself up for success. I got my BA in Informatics w/ a focus in Human-Computer Interaction, in 2018, but going into the military, practical use of my degree was non-existent. My undergrad, while not really computer science, contained lots programming with Python, HTML, CSS, PHP, javascript, React.js and UI/UX classes. Having not used much of it in almost 4 years, I have spent a lot of time relearning some of my programming skills and the ins and outs of those languages.

    Lacking any real "work" experience with programming outside of school work and some side projects, I am looking for anyway I could supplement this with any sort of certifications. The compTIA seems to be the industry standard for a lot of IT professionals, but none of them really directly pertain to web development in terms of programming. I am sure that there are ways something like Network + would be useful, but again maybe not in an entry level job. Would it be worth my time and money to try and get any of these certs to pad my resume?

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

    API that checks if phone number is VOIP?

    Posted: 22 Nov 2021 08:10 PM PST

    I'm trying to ascertain whether a phone number provided is a VOIP number or not. I've seen the Twilio API. Rate limiting wouldn't be an issue. 10 requests per second would probably be good enough for me.

    I have done so quick googling around but am looking for some recommendations by ones people actually used.

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

    Tips for frontend job interview prep

    Posted: 22 Nov 2021 06:35 AM PST

    Does anyone have great resources on how to prepare well for frontend interview? it's 60 minutes and one question according to my recruiter

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

    Anyone working for agencies, or doing more contracty stuff - is there any work schedule out there other than 9-5? Say 9-3?

    Posted: 21 Nov 2021 11:45 PM PST

    I don't mean to sound like a dick that doesn't want to work. What I want to say is that I can afford to work less based on my monthly expenses, but I'm not aware of any arrangement possibilities that would enable me to do that.

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

    How do you implement user authentication in your apps?

    Posted: 22 Nov 2021 02:47 AM PST

    Hey,

    I am working on a web app (only on the backend api for now). Users should be able to create accounts and sign in. How would you implement a feature like that? Currently, I do it by myself. On signup, I hash the password of the user and store it together with the email (and the other attributes). On login, I create a JWT, which can be used for authorization.

    But I read in many blog posts that you shouldn't implement something like that by yourself and use social or identity as a service providers. I checked out Auth0, but I am not quite sure how I can connect the Auth0 user data to the additional data stored in my user database. I also do not want to use Google or Facebook, because of privacy.

    To conclude, how do you implement authentication? By yourself or by any external identity provider?

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

    Help me make the Readme file of this repository interesting ��

    Posted: 22 Nov 2021 06:51 PM PST

    Hey devs,

    So here's the link to repository, looking to spiceup or make this interesting.

    What widgets and section will make easy for people to use this?

    https://github.com/twf-nikhila/Awesome-Black-Friday-Cyber-Monday-deals

    Please provide some suggestions!

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

    Looking for VPS panel recommendation

    Posted: 22 Nov 2021 06:24 PM PST

    I don't have a lot of experience in hosting and I'm currently using CloudPanel in Linode server. I have some bigger sites and have really liked the performance from this vps. Before moving those sites, I would like to know more about CloudPanel (From your experience).

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

    Should I avoid animated dropdowns to keep good UX?

    Posted: 22 Nov 2021 01:48 PM PST

    I was just making simple dropdown in navbar on website and wanted to make animation of rolling it down. I like it personally, but from what I can see, for example Facebook doesn't use animations in their menus.

    The same thing about accordions - they look cool when there's Y-axis transition, but for example in Angular documentation (menu on the left) - no transitions at all

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

    Best css framework in 2021., Is Bootstrap 5 still the standard or are is there something better?

    Posted: 22 Nov 2021 04:53 PM PST

    I've looked at various Bootstrap, TailWind, Material, Bulma etc.. but I keep.coming back to Bootstrap as the most mature and practical...am I missing something?

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

    How to test Chrome Extension UI in CI/CD?

    Posted: 22 Nov 2021 04:50 PM PST

    Looking to build out automated test cases in our CI pipelines...

    Ideally I would use a headless Selenium webdriver to test the changes but I can't since Headless Chrome isn't available for extensions, I'm curious as to how I could write automated test cases?

    Any pointers/advice is appreciated!

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

    Remove Background from Image – automatic online tool

    Posted: 22 Nov 2021 12:19 PM PST

    How can I assign a random image?

    Posted: 22 Nov 2021 12:08 PM PST

    I figured out how to replace a div element with an image off the web, using the div element's id (e.g. id="chartImage"). But I am new to javascript and I can not seem to get this to work by somehow randomly grabbing an image from an image array. How can I set the img.src to be a random pick from the array, so that whenever the webpage loads a random image from the array replaces the div element? This script would be for Google Chrome.

    var myImages = [ ];

    myImages[0] = 'https://image0.jpg';

    myImages[1] = 'https://image1.jpg';

    myImages[2] = 'https://image2.jpg';

    const img = document.createElement('img');

    img.src = ????? // How do I make img.src a random pick from the array ?

    document.querySelector('#chartImage').replaceWith(img);

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

    No comments:

    Post a Comment