• Breaking News

    Tuesday, April 17, 2018

    I made 10 open source Bootstrap 4 themes you can use to spice up your Bootstrap projects web developers

    I made 10 open source Bootstrap 4 themes you can use to spice up your Bootstrap projects web developers


    I made 10 open source Bootstrap 4 themes you can use to spice up your Bootstrap projects

    Posted: 17 Apr 2018 09:58 AM PDT

    When making a WP theme, is it good practice to first make it like a regular HTML template and then adapt it to make a WP theme out of it?

    Posted: 17 Apr 2018 04:18 AM PDT

    What's the hate against Atom.io and why do u love VSCode

    Posted: 17 Apr 2018 08:48 AM PDT

    So, I tried to create this post Atom.io users, what are your essential extensions for web development?, however, it quickly turned into a make uninstall joke about Atom thread.

    I want to know, why do you hate it? What has caused this? Why did you switch to VSCode?

    Don't give a one-liner "it's just better" or "Atom was setting my fans on fire" (/u/kodiashi). Give a strong reason why it's better.

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

    Issue with load balancers vs. GDPR. Suggestions?

    Posted: 17 Apr 2018 06:10 AM PDT

    Load balancers use http for calls to the subsequent servers.

    That, I'm afraid, might be a problem with GDPR depending on configuration. I have this problem now.

    Under GDPR you have to protect user information in transit. Unfortunately our platform requirements does not allow us to use a cloud service that provides private networking between balancer and other servers in the configuration (long story why).

    (Note: I've been setting up various types like nginx, haproxy, even Linode balancers, and they all obviously use a http connection downstream. The only "solution" I have thought of (so far) is to use a front service like apache + php + curl OR nginx+php+curl and make a ssl request further. Basically emulating somehow the balancer with curl. It looks like a bad idea though, given the extra load etc.

    Is there any way to solve this issue, apart from private networking (not available in our case?)

    TIA

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

    Vim users, what are your essential plugins for web development?

    Posted: 17 Apr 2018 03:16 PM PDT

    Can someone please tell me what theme is this?

    Posted: 16 Apr 2018 06:23 PM PDT

    So I started learning redux recently

    Posted: 16 Apr 2018 06:52 PM PDT

    Street dancing feels like a viable career path right now. Seriously help me...Watched a couple of tutorials and I still don't understand what is going on. All I got is that redux acts as the entire applocations state, so it's not bound to only 1 component. That way you the "global" state can be easily accessed throughout multiple components without passing the state down in props. what are actions and reducers? I will tell you after I get high on DMT. Is there any simple way to explain these terms? Also, I have no idea what I'm talking about.

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

    How do sites like feedly get the rss link of given websites?

    Posted: 17 Apr 2018 04:03 AM PDT

    When you put in a link in Feedly, you get the RSS feed of the linked website.

    RSS links are supposed to be in the source code of a website, but not all websites have them in the source code or those links lead to a list of topic specific RSS links (which complicates the whole tool if take into account)

    If I am trying to create my own RSS aggregator, how could I create a tool that gives the RSS link just from the link of the website that I want to have in the aggregator?

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

    Can anyone recommend some free A/B testing tools?

    Posted: 17 Apr 2018 03:54 AM PDT

    Coding on Virtual Desktops vs Multiple Monitors

    Posted: 17 Apr 2018 03:01 PM PDT

    Having tried both setups I am still not sure which one I prefer. Thoughts so far:

    Virtual Desktops (on a laptop)

    • I love how you can full screen a window and still be space efficient. For example I have a full screen web browser, full screen evernote, full screen webpage I'm working on. Ironically my IDE is rarely full screen because my reference doc is usually sharing the same VD.

    • In Windows 10, screen switching is blazing fast (CTRL WIN + arrow key)

    • Eyes staying forward is nice

    • Biggest thing of all IMO is being untethered. I just hate sitting at my desk for long periods. With my laptop alone I also work on my couch, on my bed, sometimes at the mall or coffee shop if in the mood. Moving around makes work more pleasant IMO.

    Multi monitor (2 1080p monitors and sometimes my laptop screen):

    • Love that vertical real estate. More code in view
    • Love that you can have 2 tall windows side by side on a single screen
    • In certain situations the workflow is vastly superior. For example having a live reloading test site on a side screen while you code it on the main one
    • Another common situation is copying and pasting info from a reference doc into Evernote. Easier when everything is in view.
    • I just feel more powerful with more screen space, like one of those alpha dudes who sits with his legs spread wide.

    But of course the tradeoff of extra geek power is being locked into the desk environment. I have a nice chair but it's just not the same compared to moving around.

    And when combining both, I am noticing that having to rearrange windows subconsciously discourages me from leaving my desk. So I'm thinking of just sticking to a laptop now. Not sure though. Maybe a few days of trialing a laptop alone will teach me how valuable those extra screens really are.

    Who else has tried out Virtual Desktops vs Multiple Monitors? What are your thoughts?

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

    A Single Div

    Posted: 17 Apr 2018 03:00 PM PDT

    Looking for a free shoutcast radio player that will work on Tumblr

    Posted: 17 Apr 2018 02:51 PM PDT

    I am looking for a free shoutcast radio player that will show artist and title that I can add to a Tumblr page. I am already using one of the Rcast players but it is not updating artist and title info fast enough and the Onlineradiobox player sucks any other players??

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

    How/Why are PHP Frameworks "better" to use on projects?

    Posted: 17 Apr 2018 02:19 AM PDT

    So first off, I'm just now learning Laravel so I haven't seen the big picture yet, but I have a few questions. I've been watching a tutorial series on creating a blog system with Laravel, but there are soooo many steps to take, so many different models, controllers, functions, etc just to do something simple like call posts from the database.

    I feel that I could have created the same thing, with 1/10th of the code... Can someone explain to me how frameworks like Laravel are beneficial to projects?

    Don't get me wrong, I've never created a HUGE project, but I feel like there are a lot of unnecessary lines of code in this tutorial series.

    I've always been told, "Your code is not scalable, you need a framework" but that never made sense to me.

    If it works, it works.. right? Are they referring to if at a later date, I decide to add more features? Can you give me an example of a piece of code that "isn't scabable?"

    Any advice to keep me on track would be greatly appreciated. I want to learn all the new fancy "standards" of today's programming world, but I've always went with the "lightweight" version, or at least tried to.. and frameworks just seem like so much more work.

    For example, it took the guy in the tutorial 6 videos (20 min long videos) just to start calling posts from the database, and he's zooming through the project (trust me, I have a hard time keeping up lol).

    I could have created a CMS system in half the time this guy took to just call posts.. I understand that he's teaching, but he's teaching faster than I would type my own CMS application.

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

    Agency Developers - What is your workflow/process when building smaller 5-10 page Wordpress websites?

    Posted: 17 Apr 2018 10:15 AM PDT

    As a bit of context, I work at a Digital Agency where I mostly focus on building the larger sites, but every few weeks we get a website order to build a small 5-10 page brochure website with a short time-frame in which to do so.

    Agency/Freelance guys, do you have a specific development process set up for bashing these sites out nice and quickly without sacrificing the quality? And if so, how?

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

    How long to learn nodejs if you have a javascript background?

    Posted: 17 Apr 2018 01:40 PM PDT

    I'm pretty fluent in JS and Jquery, and am taking a node course right now. I'm wanting to convert my site to node.js because my partners and I want to all be on the same code base, and we agree that we like node (currently php). How long did it take you to learn node from scratch until you felt comfortable using it if you have a JS background? I'm just looking for rough estimates on how long it specifically took you, nothing too accurate is needed.

    Thanks!

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

    I was trying to create an app that helped marketers analyses an influencer before purchasing shoutouts. Then I came across this, any help.

    Posted: 17 Apr 2018 01:12 PM PDT

    jQuery -- stop propagation?

    Posted: 17 Apr 2018 09:08 AM PDT

    I am having problems with propagation on a few selectboxes. When I change one of the selectboxes, the alert often triggers multiple times (works properly the first time, but the second change fires twice, the third change seems to fire four times?).

    $(document).on('change','.rto_select',function(e){ e.stopPropagation(); alert('test'); [... bunch of other stuff including ajax call...] }); 

    I just need it to run once. Always once. Only ever once.

    What do I do?

    Thanks!

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

    New in Electron 2: In-App Purchases

    Posted: 17 Apr 2018 12:41 PM PDT

    As per the year 2018, which are the best freelancing sites to choose??

    Posted: 17 Apr 2018 12:35 PM PDT

    Hey folks,

    I am eagerly looking to kick start freelancing work.

    I am into digital marketing, we all know there is fierce competition for getting freelance projects.

    As per your experience, which are the effective freelancing websites to go-ahead with for a beginner in the freelance world in 2018.

    I do have 4 years of full-time job experience. Could you please share the best freelancing sites?

    Thanks a lot in advance.

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

    Why did you become a web developer

    Posted: 17 Apr 2018 12:34 PM PDT

    So, I'm debating on getting back into Game Development, but I'm at not very artistic, but also would like to get into web development, why should get into Web development?

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

    Why does npm install all these packages ? I don't have them in my dependencies in package.json.

    Posted: 17 Apr 2018 12:33 PM PDT

    Alchemist Camp: over 50 free Elixir-learning screencasts

    Posted: 17 Apr 2018 12:30 PM PDT

    No comments:

    Post a Comment