• Breaking News

    Saturday, September 11, 2021

    I created 65+ Useful JavaScript Code Snippets. I've collected them all in a FREE e-book ⚡ web developers

    I created 65+ Useful JavaScript Code Snippets. I've collected them all in a FREE e-book ⚡ web developers


    I created 65+ Useful JavaScript Code Snippets. I've collected them all in a FREE e-book ⚡

    Posted: 11 Sep 2021 02:33 AM PDT

    I created an opensource application that can set webpages as live desktop wallpaper - Lively Wallpaper

    Posted: 11 Sep 2021 05:57 AM PDT

    hue.tools – a simple toolbox for working with colors. It offers color mixing, blending, conversion and detailed information about a color.

    Posted: 11 Sep 2021 06:26 AM PDT

    Some time ago I wrote a single-page php url shortener, just for fun (I have never used it). Today I've checked it, and someone used it for some porn links. One of them generated more than 800k clicks. Could my domain name be affected in any way?

    Posted: 11 Sep 2021 11:20 AM PDT

    Frontend Learning Kit

    Posted: 11 Sep 2021 09:09 AM PDT

    FlowBite - Tailwind CSS Components Library [MIT License]

    Posted: 11 Sep 2021 03:22 AM PDT

    I made a platform where you can ask the community to review your code

    Posted: 11 Sep 2021 05:30 AM PDT

    A way to get hired straight from your Git history

    Posted: 11 Sep 2021 03:10 PM PDT

    I wrote an e-book about the not so technical parts of developer job searching

    Posted: 11 Sep 2021 06:12 AM PDT

    This is my portfolio site I am working on. I have no design experience but tried to just make something up in Figma. For some reason I am not really satisfied with how it turned out so far, but can't really figure out why? Can anyone give me some recommendations as to how I can improve it?

    Posted: 11 Sep 2021 03:45 AM PDT

    I created a Self-Hosted music app in Node.js (spotify like)

    Posted: 11 Sep 2021 06:56 AM PDT

    Supporting CSS prefers-contrast | James Ives

    Posted: 11 Sep 2021 03:56 PM PDT

    I created a responsive and modern looking Connect-4 Website!

    Posted: 11 Sep 2021 02:13 AM PDT

    I made a react social media site for creating and sharing small blog posts

    Posted: 11 Sep 2021 07:55 AM PDT

    Entire Body being cut off at certain point

    Posted: 11 Sep 2021 04:29 PM PDT

    Entire Body being cut off at certain point

    Hi,

    I am building an angular application, and use bootstrap for some basic utility and i was setting up some of the mobile views and i noticed something really strange i've never seen before.

    The entire body of the app is like jus cut short after about 600px it can be noticed. I have no idea why this might be happening so if anyone can shed some light it would be greatly appreciated.

    Here is what it looks like. I am not even sure what code to include because of how angular splits everything up, so if you have any suggestions please, by all means,

    https://preview.redd.it/5p1p2b80lym71.png?width=1436&format=png&auto=webp&s=5ffcf953b83468f4cf874d5526a6de3d59be006e

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

    I've been working on this exquisite corpse application lately. It is made with Svelte for the client and Express for the back-end. The aim is to create strange creatures by letting anyone draw different parts.

    Posted: 11 Sep 2021 02:27 AM PDT

    Pro’s and Con’s of developing on a framework?

    Posted: 11 Sep 2021 02:51 PM PDT

    Junior full stack developer here, I use php, html, css, jquery etc (all written and managed in cPanel) although I've realised that it seems incredibly long winded to just develop one data driven driven page (e.g PHP returning html with data from an API from SQL database)

    Can someone explain frameworks to me? I hear Laravel pop up quite a bit, does it speed up any of the development listed above if so, how?

    Please let me know on your preferred type of development and why!

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

    Can someone be a hero and create an anti amp code?

    Posted: 11 Sep 2021 10:55 AM PDT

    If there is a way to create a plug on chrome android that could disable googleamp on the phone you'd probably be able to make millions because everyone hates god dam amp!

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

    I made an open source portfolio builder using tailwind and react

    Posted: 11 Sep 2021 07:02 AM PDT

    Looking to start a blog/write some things down. Are there any free hosts out there that don't suck?

    Posted: 11 Sep 2021 08:21 AM PDT

    Basically I just want to write a couple of pages on a few different subjects and host them somewhere. Doesn't have to be fancy. Also needs to be able to host pics.

    Is there any software/app for this?

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

    Changing the application functionality with large number of tests

    Posted: 11 Sep 2021 01:44 PM PDT

    Hey Devs, junior here ready to ask some questions,

    so at work I am working with a legacy application which basically has zero test coverage. In order to gain experience with coding I decided to take up my own side-project ( just simple projects such as todo-lists, appointment booking applications etc etc ). To learn even more I decided to do everything in TDD fashion, which is quite refreshing to be honest.

    My question is, if I do TDD and eventually I need to change the behavior of my app ( and assume it is some kind of enterprise system with large code base, because nobody really cares about toy examples ) how do you proceed? Do you change the code, and then see which tests fail, and then adapt the tests, or do you adapt all of the tests first and then adapt the code? Or even more extreme do you just thrash the tests and write the new ones completely?

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

    How DOM/js etc loads. Some issues.

    Posted: 11 Sep 2021 01:33 PM PDT

    I'm working on a practice project but I've been having some issues with loading files, and elements not seeming to load before my JS executes. Sorry for so many questions... I've been struggling with these and they seems to be loosely related by how content is loading.

    I separated my navbar HTML and JS into seperate files.
    I have something like--- index.html | nav.html |nav.js

    I'm adding the nav.html into index.html like this:

    <div id="nav-placeholder"></div>
    <script>$(function(){$("#nav-placeholder").load("/navbar/nav.html");});</script>

    If link my nav.js in the index.html file, it doesn't seem to load and nothing works. It only works if I put it in my nav.html file. Like this:

    In nav.html ----> <script src="/navbar/nav.js"></script>

    Is there a way to put it in my index.html? It seems neater to put all my css/js references in index.

    --------------------

    Another issue I'm having is that functions like getElementByID/querySelector in my nav.js aren't seeing the element, and are returning ..null or undefined or something (can't remember).

    It works just fine if I wrap it in this to wait 10 ms:

    setTimeout(function(){
    .....document.querySelectorAll.....

    },10);'

    This just seems like a total hack to me, and I'm wondering is the is a better way?

    --------------------

    My last problem, flashing of content on reload (hidden navbar showing up for a few milliseconds). It seems to be loading before the JS can hide it.

    I came up with this to stop it by waiting for the JS before you can see the content... but again it seems like a bit of a hack and I'm wondering if there's a better way.

    body{
    animation: 0.1s step-end 0s 1 stopFOUC;
    }
    @keyframes stopFOUC {
    from { opacity: 0; }
    to { opacity: 1; }
    }

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

    Cookies ��

    Posted: 11 Sep 2021 11:57 AM PDT

    When I press agree can a website track all my cookies or only the cookies collected after agreeing?

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

    Looking for some feedback on my first ever project - GiftList

    Posted: 11 Sep 2021 02:15 AM PDT

    Looking for some feedback on my first ever project - GiftList

    I'm hoping to get some feedback on my first ever project which I have been working on in my spare time over the last ~6 months or so.

    https://preview.redd.it/3rd83ofocum71.png?width=464&format=png&auto=webp&s=746bce39d1b63ed3deac313ae64fa8061fd30e9a

    Basically it's designed to help make coordinating buying gifts for people on their birthday / at christmas easier. You can create a "Gift List" where you can add items you'd like and invite others to join. They will be able to select items on your list, suggest new ones and chat with each other, but you won't be able to see anything they do to maintain an element of surprise.

    giftlist.sampsy.dev

    https://github.com/SSamps/giftlist-back

    https://github.com/SSamps/giftlist-front

    Lots more information in a comment below!

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

    No comments:

    Post a Comment