• Breaking News

    Sunday, September 5, 2021

    R2D2 with HTML/CSS (without images) web developers

    R2D2 with HTML/CSS (without images) web developers


    R2D2 with HTML/CSS (without images)

    Posted: 05 Sep 2021 05:09 AM PDT

    I made a clock using clocks using Vanilla JS + SCSS (link in comments)

    Posted: 05 Sep 2021 06:34 AM PDT

    How to enable https on your local environment

    Posted: 05 Sep 2021 02:20 PM PDT

    Are there any web dev managers out here?

    Posted: 05 Sep 2021 12:30 PM PDT

    I'm myself web developer and I've worked for company for 4 years building websites. Recently we hired more people and I became team leader/web dev team manager.

    I'm now struggling because I'm supposed to manage people and their work and I am not good at it.

    Are there any good blogs/resources/advices somebody can give me?

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

    Sea of Thieves Website Parallax effect - how?

    Posted: 05 Sep 2021 02:53 PM PDT

    I'm looking at the Sea of Thieves website and they have this cool parallax effect where alternative layers of imagesd seem to "hover" above the previous layer underneath. It looks like react-spring but I can't figure out what parameters would allow for such effects.

    Can anybody enlighten me how the effect is done?

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

    Is it possible to make a living off of website monetization?

    Posted: 05 Sep 2021 08:21 AM PDT

    I have some experience with programming and web dev and I want to make a blog with ads and affiliate links about a certain niche. Is it possible to start making around 3000-5000€ a month in less than a year? Because I saw some comments on this reddit regarding website monetization and no one seems to be making that much. The website im planning to make seems to be mostly unique.

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

    Css only animations resources?

    Posted: 05 Sep 2021 12:59 PM PDT

    Is there any library with css only animations?

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

    Bootcamp or 2nd degree for web dev?

    Posted: 05 Sep 2021 12:31 PM PDT

    First of all, thanks for all your patience with always answering newbie questions that are probably pretty similar.

    My background: I have a degree in a non CS field (BSc Geography) and am looking to move towards remote CS/IT work. I have already started self study courses online (UX/CS50) and have some coding experience from my degree, which I really enjoyed

    Options:

    1. Currently accepted into a CS BSc program that is currently offered remotely. Grants would cover tuition costs. My worry here is that I would learn a lot but still may not be employable for remote work after. Would take 2 years to complete.

    2. Also applied for Bootcamp (Lighthouse Labs) which claims to be an intensive 30week course with 95% job placement. Id pay 8000-12000

    Which of these is likely the better choice for working towards DN work? assuming I'd be doing side projects regardless of which path I'd choose. I'm not too concerned about salary. Any input would be greatly appreciated. Thanks

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

    Git and contractor agency

    Posted: 05 Sep 2021 04:02 PM PDT

    Hi all, I hired a dev agency to do modifications on existing WP plugin, they suggested to setup github repo for obvious reasons.

    What would be the best approach and terms from my end, what to ask, look after, discuss and so on?

    I'm not very experienced with Github is the reason I ask. Thanks

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

    I rebuilt my most popular side project

    Posted: 05 Sep 2021 07:28 AM PDT

    Heroku dyno behaviour.. How do Heroku dyno's exactly work?

    Posted: 05 Sep 2021 04:06 AM PDT

    Hi Reddit,

    I have a Vue, Django integrated project. I hosted the Vue project on Netlify and the Django project on Heroku. A python script (integrated into Heroku) is called on certain buttons which extract data and posts this to the Django API and PostgreSQL database to be viewed on the frontend.

    Now I have the free dyno, which works to extract the data with the Python script and posts it on the PostgreSQL database. When I have multiple processes calling the Python script (and thus the dyno worker), I do not have the expected output.

    Example 1: I call three (short) processes in parallel which make the dyno work. I get R14 (memory quota) errors, and only two of the three processes are being finished. The last one does not seem to be executed anymore (also not after the two processes are finished, and the memory would be available i assume).

    Example 2: I call three (longer) processes in parallel which make the dyno work. I get some idling errors in my heroku logs, and at (seemingly) random points, one of the three processes stop, and then the other one etc.

    Is this expected behaviour? And will this be fixed when I get the 7$ dyno's (that do not sleep)? Because the idling error might be fixed, but then again with the memory I do not know why it is not executed after the two processes are finished. How can I make sure that at least all the processes are being executed and finished, can this at all be fixed with higher tier dyno's for example?

    Thanks a lot, appreciate the help!

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

    How to add a tab to this card box?

    Posted: 05 Sep 2021 02:06 PM PDT

    I'm trying to edit this Jekyll theme by adding an extra tab to the card box at the bottom of the website.

    So far I have edited the home.html to add a new section after line 138 like so:

    {% elsif section.name == "Coursework" %} <div class="tab-pane overflow-auto" id="{{section.id}}" role="tabpanel" aria-labelledby="{{section.id}}-tab"> <p><i>{{section.description}}</i></p> <div class="list-group"> {% for courses in site.data.courses %} <button type="button" class="list-group-item text-left">{{ courses.Course }}</button> {% endfor %} </div> </div> <!-- ======================= THIS IS THE ADDITION ======================= --> {% elsif section.name == "NewSection" %} <div class="tab-pane overflow-auto" id="{{section.id}}" role="tabpanel" aria-labelledby="{{section.id}}-tab"> <p><i>{{section.description}}</i></p> <div class="list-group"> {% for item in site.data.newsection %} <button type="button" class="list-group-item text-left">{{ item.text}}</button> {% endfor %} </div> </div> 

    I then added a new file to _data called newsection.yml which has the necessary information.

    The problem is that the new element is always outside the card box so it's appended to the bottom of every other element in the card box:

    <div class="card-body"> <div class="tab-pane overflow-auto" id="publications" role="tabpanel">...</div> <div class="tab-pane overflow-auto active" id="courses" role="tabpanel" aria-labelledby="courses-tab">...</div> <div class="tab-pane overflow-auto" id="teaching" role="tabpanel" aria-labelledby="teaching-tab">...</div> <div class="tab-pane overflow-auto" id="projects" role="tabpanel" aria-labelledby="projects-tab">...</div> </div> <div class="tab-pane overflow-auto active" id="newsection" role="tabpanel" aria-labelledby="newsection-tab">...</div> 

    For some reason the new div is not inside the div with the card-body

    Why is that happening? Did I add the new section in the wrong place? How do I fix this?

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

    Are portafolio websites worth the effort?

    Posted: 05 Sep 2021 02:01 PM PDT

    The way I see it is one either invests time working on a quality portafolio website or one can work on another likely more generally useful project (hr to hr of course).

    That other project has a higher likelyhood of becoming greater that just something to add on the portafolio. Consequently enhancing one's image more than a portafolio site would.

    Another important thing to note is that you would need to build a personal site that displays your projects better than GitHub or LinkedIn otherwise it would look comparitively worse. That could raise the minimum time investment consequently dramatically increasing the time cost.

    submitted by /u/1sosa1
    [link] [comments]

    Div vs section vs article?

    Posted: 05 Sep 2021 01:23 PM PDT

    This has always confused me, as far as I can tell these do the same thing, but there's clearly a reason there's different elements for the same purpose. When would I use which one? For example if I want to group a step by step cooking recipe ordered list, which of the three would I use?

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

    For Cargo onclick doesn't work on mobile yet works fine on regular browser?

    Posted: 05 Sep 2021 12:59 PM PDT

    Why is this and how do I fix it?

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

    I built a rudimentary Scale Calculator for 3D Printing Miniatures a few weeks back. C&C more than welcome. Details in Comments.

    Posted: 05 Sep 2021 02:39 AM PDT

    Need advice where to get ssl certificate with some requriements

    Posted: 05 Sep 2021 11:49 AM PDT

    Hi there. Im pretty new to ssl certificates, but i need to get one with some requriements:

    • wildcard support
    • encryption - 256 bit
    • encryption key length - 2048-4096 bit
    • subdomen protection
    • support additional domens, e.g. example.com, *.example.com

    also, is there any limitations for gov websites?

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

    Some questions about Docker

    Posted: 05 Sep 2021 11:40 AM PDT

    Hi everyone,

    I've been looking into Docker recently, and would appreciate some clarification on a couple of questions I have.

    So as far as I understand, Docker allows you to create containers, which are virtual environments for your software to run in and ensure it works out of the box, no matter the platform.

    Question no.1) Let's say I've built an electron app, and I want it to run easily between windows/macOS/Linux. Would using docker to containerise it be a good solution to ensure a stable environment? What are the alternatives?

    Question no.2) How do I go about deploying a containerised application? Do I have to use Docker Hub?

    Question no.3) Where does Docker take place within development process? Right before deployment? E.g.:

    1. Create a git repo
    2. Commit until the app is done
    3. Containerise with Docker
    4. ???

    Sorry if these are basic questions, but I'm very new to Docker, and haven't been able to find any clear answers.

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

    Is there a framework to create JS widgets?

    Posted: 05 Sep 2021 11:09 AM PDT

    Hey guys.

    I wanted to ask if there were any frameworks for building JS widgets Ex intercom. Obviously my use case is quite simple, but was asking if there was something available to build them rather than writing vanilla javascript.

    Thanks in advance

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

    Need help implementing a web-server connection

    Posted: 05 Sep 2021 11:06 AM PDT

    I have no clue about web development, but need to implement a simple thing.

    What I have already:

    A server with python-flask backend that processes info and returns the full data to browser (only once)

    What I need:

    Data is huge and takes time for server to process fully so I want to send small chunks of data that get processed part by part

    What I need:

    Just where to start? I will try to implement it myself, been searching for a lot of time and getting confused, so just give me a starting point and I'll try to implement it myself

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

    Activation mechanism for an app?

    Posted: 05 Sep 2021 10:31 AM PDT

    I have a C app with a nodejs front running on a single board computer (think something similar to Raspberry pi). want to add an activation mechanism to it? when the activation is done the user can use it.

    I'm looking for the best ways to go about doing this.... example implementations, useful blogposts, keywords for looking this up more precisely?(or anything that you think might help)

    Thanks

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

    Working on an native app that gives anyone the power to create a use structured data by effortlessly speaking into their phone. Feel free to join the dev team! (GitHub in comments)

    Posted: 04 Sep 2021 04:34 PM PDT

    No comments:

    Post a Comment