• Breaking News

    Tuesday, January 2, 2018

    Simple single element spinning loader using CSS web developers

    Simple single element spinning loader using CSS web developers


    Simple single element spinning loader using CSS

    Posted: 02 Jan 2018 05:06 AM PST

    How to be Effective Remote Developer

    Posted: 02 Jan 2018 04:58 AM PST

    I made a site that helps people find and filter open Github issues to make it easier to contribute to open source. Would love some feedback!

    Posted: 02 Jan 2018 09:30 AM PST

    Everything you need to know about HTTP security headers

    Posted: 02 Jan 2018 11:53 AM PST

    Stop Procrastinating and Get Things Done! From Senior Security Analyst/Malware Reverser to WebDev/SecDevOps

    Posted: 02 Jan 2018 11:30 AM PST

    Anyone have good resources to learn the intricacies of character encoding?

    Posted: 02 Jan 2018 12:29 PM PST

    I'm looking to advance my knowledge on this subject which is lacking right now. Does anyone have a good resource to learn all about character encoding and stuff like multibyte characters, etc.

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

    How I spent my Christmas enabling SSR (react/redux-saga)

    Posted: 02 Jan 2018 02:37 AM PST

    What do you do -as a free lancer_ when you have no clients?

    Posted: 02 Jan 2018 11:37 AM PST

    So I am a mobile app developer (free lancer) and i dont have any clients right now, i am advertising myself, but its a little slow I guess..

    What do I do with this down time? other than fun and learning.

    I want to work on a project or something, but I don't know what to do...

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

    Help finding a web database solution

    Posted: 02 Jan 2018 03:04 PM PST

    Good evening Reddit,

    Wondering if you can be of assistance here (If not please let me know where I may find help)

    I am looking to create an online (mobile friendly) Portal or database which very few mobile users can Search for a name / Item and receive any details that the database holds on the name / Item .

    Ideally Id like to assign tags to said names to assist in searching for the entries.

    I have no programming knowledge so i am looking for an online builder / application and or a solution.

    I'm open to any suggestions. I hope you guys can help

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

    What UI framework would you recommend building a new React web application on? (2018)

    Posted: 02 Jan 2018 02:49 PM PST

    I'm about to build my first 'production' web app. I've worked with Semantic UI, but I'm trying to get a feel for what the best option is for a new application built in 2018.

    Some considerations are:

    • Availably of themes
    • Flexibility
    • Ease of use with React.js
    • In most demand in the job market

    What are your recommendation and why?

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

    How do you price your freelance work?

    Posted: 02 Jan 2018 10:10 AM PST

    Hi, I've been recently getting offers as a freelance developer and people who are ordering solutions from me, are saying that they are willing to pay me as hourly wage. Something says to myself that I should reject hourly payment and place solid offer ex. 2000$ (not sure if that is the real term). Because if my knowledge is so good that I could solve their problem within 20 hours with 30$/h that's only 600$ from current job. I think I answer to my question in here, but that means my knowledge had nothing to do with price. Instead they got it much cheaper and in other hand, I should be less knowledge guy to get paid more, by researching technology and solutions etc.

    So, as the title say, how do you value your freelance work? Do you try to figure out estimate time for solution and price yourself based on estimate time to get as much as possible? Or just price everything they need, simultaneously, ex. one pager website you take 500$ and online store you take 2000$?

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

    Site somehow uses old css file even after i delete it

    Posted: 02 Jan 2018 01:41 PM PST

    so im making a site and i keep having issues where my local version works perfectly, but for some reason the web client messes up. from looking at these mess ups it seems like the webclient is using the wrong css file, an older version or a mixture of old and new parts. i even deleted the css file from the server and somehow the web client still has styling from it, well from an old version of it. it tested this on chrome firefox and edge. surprisingly edge is the only one to realize it has no css file. i got it to work on firefox after clearing the cache but its very annoying to have to clear the cache everytime i change my css file. so if anyone knows a way around this or why its happening i am all ears.

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

    Service-oriented software architecture: break up the monolith while avoiding the "microservices" trap

    Posted: 02 Jan 2018 07:24 AM PST

    [question] What is your go to method for vertical aligning content?

    Posted: 02 Jan 2018 01:04 PM PST

    Horizontal aligning is easy enough, but I'm trying to work out a reliable way to vertically align multiple lines of texts and images with cross browser functionality in mind...

    If it helps I'm building on Bootstrap 4.

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

    Field added via form_alter() not saving

    Posted: 02 Jan 2018 12:49 PM PST

    I've added a boolean field to all node forms. Then set up another function to handle the submit of the form. However I am very unsure as to what I need to do to save the field into the database inside the submit form. Can someone help me out?

    /** * @file * Contains greensock_lib.module. */ use \Drupal\Core\Form\FormStateInterface; use Drupal\webform\Plugin\WebformHandlerBase; use Drupal\webform\WebformInterface; use Drupal\webform\WebformSubmissionInterface; function greensock_lib_form_node_form_alter(&$form, FormStateInterface $form_state, $form_id) { $form['animation'] = array( '#type' => 'checkbox', '#title' => t("Animate this page"), '#required' => FALSE, '#name' => 'animation_check', ); return $form; foreach (array_keys($form['actions']) as $action) { if ($action != 'preview' && isset($form['actions'][$action]['#type']) && $form['actions'][$action]['#type'] === 'submit') { $form['actions'][$action]['#submit'][] = 'greensock_lib_node_form_submit'; } } } function greensock_lib_node_form_submit($form, FormStateInterface $form_state) { $entity = $form_state->getFormObject()->getEntity(); $entity->save(); } 
    submitted by /u/seedlio
    [link] [comments]

    Why side projects fail - Let's hope this is not us in 2018

    Posted: 02 Jan 2018 08:55 AM PST

    plainJS - The Vanilla JavaScript Repository

    Posted: 02 Jan 2018 08:29 AM PST

    Why is bourbon v 5 depreciating so many mixins?

    Posted: 02 Jan 2018 11:36 AM PST

    I finally got bourbon set up and when I tried to use some mixins I got a bunch of depreciation warnings.

    I went to the documentation and saw a lot of bits crossed off. I couldn't find a reason why. I thought bourbon took care ok the vendor prefixes.

    Is there a simple explanation for all of the dead mixins and such?

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

    PHP: Upload = New Generated Website + Uploaded Image Help

    Posted: 02 Jan 2018 11:13 AM PST

    (I don't know php a lot.) Basically, what I want to make is that you upload an image (and of course it's saved in a folder) but what I want my website be able to do is make a new html file with the template I have already made to be applied to the new web. If you don't get what I mean: nowadays, you can upload an image (like imgur) or upload a video (YouTube) and once it is done upload, a new generated website is made for that one post you have made with the same template, the same as the other posts from other people. I want to be able to do this in my website but found no tutorials to do this.

    How do I achieve this?

    Thanks

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

    React.js and Prepack

    Posted: 02 Jan 2018 10:52 AM PST

    Windows or linux? asking for a noob

    Posted: 02 Jan 2018 07:02 AM PST

    I'm just starting to get into web development and am working on windows, I do have a linux machine but I prefer windows at the moment. Why do most people say linux is far better than windows for web development? and is it true? I honestly feel like I'm missing out on something or not doing it right when coding in windows, or is it just personal preference?

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

    Overcoming Testing Hurdles in a Project Without Tests

    Posted: 02 Jan 2018 06:05 AM PST

    Imgur API Changes or Have I Been Blacklisted?

    Posted: 02 Jan 2018 09:31 AM PST

    I have a small Mozilla add-on called hooverZoom which displays an image on mouseover (saving a click-and-back). about a week ago I started seeing messages from the Imgur API that the client-id I've been using forever has hit a usage threshhold (response was "Daily client requests exceeded") and was being denied for too much activity. I emailed Imgur support and asked that they whitelist the client-id as I've read that they have no problem doing that for advertisement-free applications. now it seems I've been blacklisted as no matter what I put in for client-id (I've tried generating some new ones) the response is "The access token provided is invalid."

    The message makes me think that they don't offer anonymous API info without going through Oath2 auth, but I'd rather not force my add-on users to log in just for read-only public data.

    is anyone aware of recent API changes? any other ways to get support than through the web portal? any way to get a token issued with just the client-id and not force the users to log in?

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

    No comments:

    Post a Comment