• Breaking News

    Sunday, March 14, 2021

    Just Launched my Web Portfolio! 🥳 web developers

    Just Launched my Web Portfolio! �� web developers


    Just Launched my Web Portfolio! ��

    Posted: 14 Mar 2021 04:13 AM PDT

    Just launched my portfolio. Let me know your thoughts!

    Posted: 14 Mar 2021 12:06 PM PDT

    https://www.patrikhorny.com/

    Currently, I'm looking for an internship. I know that the projects I worked on are nothing extra, but I needed to show something off. Let me know guys what should I work more on! Open to all criticism.

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

    Web Server hosting

    Posted: 14 Mar 2021 02:56 PM PDT

    I recently made a web server for a project I'm working on, and I am not able to forward a port on my IP for security reasons, is there any (free, as I am a child) website I can run my (Node.js) web server on?

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

    Is making a webpage from templates bad, if you are going to focus on back-end?

    Posted: 14 Mar 2021 01:54 PM PDT

    So I'm trying to learn back-end, and I do have knowledge of front end, but my designing skills aren't all that good, so is it bad to use templates for front-end and than make back end by myself, or should I code everything myself front and back?

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

    Is this portfolio worthy?

    Posted: 14 Mar 2021 03:39 PM PDT

    Hello, I am in the process of putting together a portfolio focused in front end development (specifically in React), I made a very short platformer (no libraries just vanilla js) over the past 2 weeks and was wondering if it belongs in a React focused portfolio? I guess I'm on the fence because I am not sure if games make your portfolio look unprofessional for lack of a better word? Also if I did include the game in my portfolio I would need to do some serious refactoring, the project started with me just messing around in canvas and as I had ideas I just added them with very little structure so it is still hot spaghetti at this point. Would you recommend I spend my time refactoring this, and working on a mobile friendly implementation (reworking menus, and adding virtual run/jump buttons) and adding it into my portfolio or save my time and just keep building React projects?

    https://brianadams731.github.io/sideScrollerResume/sideScroller/

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

    Thanks to everyone being so helpful in this subreddit. Thanks to you guys I got my own domain and now have my portfolio website hosted :)

    Posted: 14 Mar 2021 09:35 AM PDT

    WebRTC - processing data stream before delivery to peer

    Posted: 14 Mar 2021 02:27 PM PDT

    Hi everyone,

    I'm trying to implement a sort of chat room with avatars, where the volume of the sound you make is proportional to the distance between your avatar and the listener.

    I was trying to implement this using the WebRTC protocol, because it seems to make it easy to establish low latency peer-to-peer audio streams. However, since it's peer-to-peer, it seems to indicate that the audio processing algorithm needs to run on the client side, which I was looking to avoid.

    I've seen that an alternative to using the so-called WebRTC P2P mesh grid is to have an MCU server that receives all the data streams and adds them, and then "broadcasts" the resulting stream to each of the connected users. But it seems to me that in this case, we are not longer using the WebRTC protocol, and I am stumped on how to implement such a broadcasting behaviour.

    Any help would be much appreciated!

    Thanks a lot

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

    What design needs do you have as a freelance developer?

    Posted: 14 Mar 2021 12:03 PM PDT

    Hello everyone!

    I am a graphic designer and I want to narrow my services a bit. I was thinking to start offering design services to developers, but I would like to hear your opinion first.

    The main services I am thinking of is logo design, business cards and banner ads. My questions are:

    • How do you make your own graphics?
    • Is this a service you need quite often, or it is something you don't really care about?
    • What other design needs do you have as a developer?

    Thanks a lot for your time!

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

    Having a Problem with JWT Refresh Token Flow (using axios and axios-auth-refresh)

    Posted: 14 Mar 2021 10:28 AM PDT

    (I initially posted this to /r/javascript, but it was auto-deleted for being a support question.)

    TL;DR: Using refresh-token to auto-refresh access-token works, but I get stuck when the refresh-token is expired.

    Hello all,

    I'm working on an app with a JWT-based authentication flow for back-end API requests. The general flow is working fine; upon login the user gets a long-term refresh token and short-term access token. Using the axios-auth-refresh plug-in for axios, I am able to auto-refresh the access token when it has expired.

    My problem is, when the refresh token expires, I am not able to catch the error and redirect the user to re-authenticate. Nothing I've tried catches the error. The (current) code for the auto-refresh hook is:

    const refreshAuth = (failed) => axios({ method: "post", url: "token", skipAuthRefresh: true }) .then(({ status, data: { success, accessToken } }) => { console.warn(`status=${status}`); if (!success) Promise.reject(failed); processToken(accessToken); // eslint-disable-next-line no-param-reassign failed.response.config.headers.Authorization = `Bearer ${accessToken}`; return Promise.resolve(); }) .catch((error) => console.error("%o", error)); createAuthRefreshInterceptor(axios, refreshAuth); 

    In cases of the refresh token being stale or missing, I see neither the status=xxx console line or the dump of an error object in the catch() block.

    The actual file this is in is on GitHub here, though it is slightly different than the working version above. Mainly, in the GH version the hook calls axios.post("token").then(...) where above I'm making a more explicit call to add the skipAuthRefresh parameter. Adding that got me more detailed error traces in the console, but I am still not catching the 401 response via the catch().

    I've tried everything I can think of... anything jump out as something I'm missing?

    Randy

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

    The Strictness Principle - Restrict the scope by default. Increase the scope as the need arises.

    Posted: 14 Mar 2021 02:05 PM PDT

    Conceptual question about self made auth server and multiple applications

    Posted: 14 Mar 2021 05:09 PM PDT

    So I'm playing around with building an auth server (oauth2) and having two play around web apps I built utilize it.

    My question is conceptual when it comes to user roles and an auth server.

    Say I'm a user. I have access to both applications:

    1) how do I know I have access to both applications if the auth server authenticates the user only? What if I had access to just one?

    2) how do I know, after I logged in, what roles I have within THAT application? Technically, the user is authenticated at the auth server level, so they're good to go. Is it the responsibility of the web application itself to then introduce roles/RBAC and not the auth server?

    For example, one of my applications has read only access. But I don't have that in the other application. Who manages that responsibility? The auth server or the app itself?

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

    Using jQuery & Bootstrap CDN as source in index.ejs

    Posted: 14 Mar 2021 01:18 PM PDT

    Hello everyone, I'm new to web dev' and during my semester we were asked to build a website with node-js & express-js , we (my team & I) got this website template just to save work on design and work on functionality and it came with bootstrap.min.js, bootstrap.min.css & jquery-2.1.1.js files.

    Now in my index.ejs file they are referenced to the local directory like:

    <link rel="stylesheet" href="css/bootstrap.min.css">....

    <script src="js/jquery-2.1.1.js"></script>

    <script src="js/bootstrap.min.js"></script>

    But I don't see any reason to have them locally when I can just reference them from Bootstrap & jQuery CDN's, or at least from node_modules.

    But when I try it, for example I now changes the jQuery src to <script>src="https://code.jquery.com/jquery-3.6.0.min.js"></script> (& deleting the local jQuery file) it still works as intended, it's only when I add the link ref & sec from bootsrapCDN that the functionality seems to break (both on css level and jQuery) like the side scrolling doesn't work anymore when clicking on the arrows, the smooth transition when going from "Home", to "About us", "Our services" etc isn't working either.

    As for local reference from node_modules, neither works (../node_modules/bootstrap/dist/js...)

    This is my attempt in index.ejs : https://pastecode.io/s/xkuKkNgHn6, the changes are in lines 9 & 351-352.

    This is a download link for the project itself https://file.io/0qGXGW5WULVU.

    And a VirtusTotal scan just in case here.

    If you need anything else just ask.

    Thank you!

    Edit: BTW, is there any way to not have duplicate src references in each ejs file? like import it from a single one.

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

    Build an electron app with Next.js

    Posted: 14 Mar 2021 04:48 PM PDT

    Hi my name is Eunjae. I've recently built a mac app called GomScope. I had so much fun and learned a lot.

    So I recorded this 50mins video where I go through the actual source code of GomScope and explain bit by bit. You can also choose to purchase the whole source code.

    I've seen so many questions in this subreddit that I think will be answered by this video.

    Click the link below and see the table of contents ⬇️

    📺 https://gum.co/electron-nextjs

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

    Is Javascript&JQuery book by Jon Duckett still relevant?

    Posted: 14 Mar 2021 03:59 PM PDT

    I bought it last year together with the HTML&CSS one when I decided to start learning web development. Today I opened it for the first time and soon realized that a lot has changed since it was written. I'm quite disappointed but before I get rid of it, is there any reason I should keep it? Is it still worth reading or would it just be a waste of time?

    I'm looking at Eloquent Javascript to replace it, anyone has other ideas?

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

    Data entry solution

    Posted: 14 Mar 2021 03:36 PM PDT

    Hey everyone,

    I'm looking for a work flow solution for data entry. Not sure if this is the right place for this, if not, pointing me in the right direction would be greatly appreciated.

    What I need is to be able to make fillable documents that can be sent to clients (health screening) that have the inputs automatically saved to a database with easy retrieval in a pdf format that I can upload to our main client database.

    Any suggestions? I have found Waverforever & Jotform through some searching but have zero experience with either. Can be paid or free.

    Thanks for any advice!

    submitted by /u/ThatUsernameIs---___
    [link] [comments]

    Created a Breaking Bad are they alive or dead quiz

    Posted: 14 Mar 2021 03:22 PM PDT

    Created using Next.js, Chakra-UI, Framer-Motion, Fauna and the Breaking Bad API.

    Let me know if you find any bugs!

    https://breaking-bad-quiz-five.vercel.app/

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

    own Website .co.nz

    Posted: 14 Mar 2021 03:08 PM PDT

    hi guys i need to create my own website in New Zealand and want to design it as a drag and drop..what the best platform for this and for buying domain ..please suggest any comments are very much apricated.

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

    Invictus theme

    Posted: 13 Mar 2021 06:38 PM PST

    Any site that lets you host images but keeps the original name of the image?

    Posted: 14 Mar 2021 03:05 PM PDT

    Freelancing as a MERN stack developer

    Posted: 14 Mar 2021 11:18 AM PDT

    Is learning MERN stack a good investment of time if I want to be a full-stack freelance web developer? If so what kind of personal projects should I build so I can add them to my portfolio before I start looking for work?

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

    Wanted to know if anyone knew how to add this feature to their website. You can add different dates to get your products delivered. All advice will help! See pictures below for reference.

    Posted: 14 Mar 2021 01:28 PM PDT

    How do you make these code snippets?

    Posted: 14 Mar 2021 01:10 PM PDT

    No comments:

    Post a Comment