• Breaking News

    Saturday, May 25, 2019

    Girlfriend likes to travel, I like to know how much it'll cost for flights and accommodation. Vue.js + numerous APIs to the rescue. /r/webdev, I give you tripcoster.com. [Showoff Saturday] web developers

    Girlfriend likes to travel, I like to know how much it'll cost for flights and accommodation. Vue.js + numerous APIs to the rescue. /r/webdev, I give you tripcoster.com. [Showoff Saturday] web developers


    Girlfriend likes to travel, I like to know how much it'll cost for flights and accommodation. Vue.js + numerous APIs to the rescue. /r/webdev, I give you tripcoster.com. [Showoff Saturday]

    Posted: 25 May 2019 04:17 AM PDT

    My local news website sucks, here's the network panel when you load an article on their site.

    Posted: 24 May 2019 05:50 PM PDT

    i made free to use website templates for everyone

    Posted: 25 May 2019 06:38 AM PDT

    What do you guys think of my portfolio?

    Posted: 25 May 2019 08:05 AM PDT

    Here we go: Portfolio

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

    Quiz with smooth transitions

    Posted: 25 May 2019 08:02 AM PDT

    Made a UI for hosting websites from zip files for myself, decided to make it public

    Posted: 25 May 2019 07:46 AM PDT

    So, I wanted an easy way to host static websites. Like, one-click, automatic ssl, no ssh/ftp easy. I've built vStatic in the past to satisfy that, but it still requires a bit of work. Now I've made Launchpad for myself (I've now decided to let anyone use it and I could potentially turn it into a business) where you deploy your static site by uploading a zip file with the code, you get a randomly generated subdomain, and then you can alias it (use a custom subdomain), and now you can add custom domains to it. It gets ssl automatically via Let's Encrypt (greenlock.js), and I hope other people find my project useful. I would appreciate some feedback, and if you need help, feel free to dm me. I host all my static sites on launchpad now. I also made a video to show how easy it is to use: https://www.youtube.com/watch?v=3qU8KTS2RLA

    All you need is a github account to login, but I'm going to add other login options soon.

    submitted by /u/63-bit
    [link] [comments]

    built with react and materialize to teach myself more about the stock market

    Posted: 24 May 2019 08:40 PM PDT

    Problems with Stripe integration?

    Posted: 25 May 2019 03:48 PM PDT

    Hey guys, I posted before, but I think I'm just confused about the routing. I have a react frontend that looks like this:

    stripeBtn = async (token) => {console.log('onToken', token)await fetch('http://localhost:3000/stripe/', {method: 'POST',headers: {'Accept': 'application/json','Content-Type': 'application/json',},body: JSON.stringify({stripeToken: token.id,}),}).then(response => response.json()).then(json => {console.log('json>>>>', json)})}

    The react stripe checkout package:

    <StripeCheckout className="singleViewPriceButton"token={this.stripeBtn}stripeKey={stripeKey}

    >

    And the backend named stripe.js:

    const express = require('express')const router = express.Router()require('dotenv').config()const stripe = require("stripe")(process.env.STRIPE_SECRET_KEY)const stripeChargeCallback = res => (stripeErr, stripeRes) => {if (stripeErr) {res.status(500).send({ error: stripeErr })} else {res.status(200).send({ success: stripeRes })}}const paymentApi = app => {app.get("https:api.stripe.com", (req, res) => {res.send({message: "Hello Stripe checkout server!",timestamp: new Date().toISOString()})})app.post("https:/api.stripe.com/v1/charges", (req, res) => {const body = {source: req.body.token.id,amount: req.body.amount,currency: "usd"}stripe.charges.create(body, stripeChargeCallback(res))})return app}module.exports = paymentApi

    With this in index.js:

    const paymentApi = require("./stripe")const configureRoutes = router => {paymentApi(router)}module.exports = configureRoutes

    I followed this link to try with some guidance after many fails already:

    https://hackernoon.com/stripe-api-reactjs-and-express-bc446bf08301

    I'm losing my mind, what the *$%& am I doing wrong? I get a 500 on localhost:3000/stripe, obviously it doesn't like the routing, I've just never done a backend call to an API.

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

    Cloud Environment Inspector built with Angular 5 - Support both AWS and GCP

    Posted: 25 May 2019 03:43 PM PDT

    Cloud Environment Inspector built with Angular 5 - Support both AWS and GCP

    Processing gif f5mlczavqf031...

    https://github.com/mlabouardy/komiser

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

    What should i know in 2019 to be a well trained web developer?

    Posted: 25 May 2019 03:41 PM PDT

    A Passing Canvas. Existing Django site I built awhile ago that is about to get a Vuejs facelift.

    Posted: 25 May 2019 03:29 PM PDT

    Wondering difficulty level or if solution is even possible

    Posted: 25 May 2019 03:17 PM PDT

    So it's something I keep thinking about because my employers work process. Is it possible to create a scheduling process on a website that would coordinate with an Xcel from a network database? Simular to scheduling Comcast or Verizon install pick an available date and time and it books it electronically to company?

    I know there is plenty of booking software and scheduling stuff out there but my theory is using the company's website that would book it to our Excel sheet which is a very well network shared file between our company and the company that we handle the logistics for.

    If this doesn't belong here feel free to block or delete I thought this was a developer question.

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

    Good beginner Vue project tutorials ?

    Posted: 25 May 2019 11:28 AM PDT

    Hi guys! I've done a few webdev projects in react before and I'm looking to learn a lot about Vue over the summer. Just wondering so you guys have any cool starter project tutorials/ walkthroughs that would get me used to Vue before attempting my own ?

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

    JS: "A function is an... object"?

    Posted: 25 May 2019 02:54 PM PDT

    When I started learning JS, one of the most confusing piece of information that I have read repeatedly is that "a function is an object". I understand an object to be this handsome thing: { ... }, so somehow I have to understand that the following code below is somehow related:

    function myFunction(){ ... } == { ... }

    When it is said that a function is an object, what exactly do they mean? My guess is that both an object and a function are derived from the root Object object in the window host environment. Is this what it means?

    Perhaps to ask this question differently... what are the similar characteristics of a function and an object that makes them so related?

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

    What Database Does Facebook Use? – A Deep Dive

    Posted: 25 May 2019 08:28 AM PDT

    Adsense alternatives?

    Posted: 25 May 2019 02:12 PM PDT

    Not sure if this would be the right sub, but anyways

    my site's running ok, but it's an anonymous image board. So Adsense doesn't like the content. I'm looking for some alternatives, but i find so many and they don't look super trustworthy. I dont care if they're porn ads to be honest.

    Anyone here experienced with some decent alternatives?

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

    Customizing and or creating Wordpress theme

    Posted: 25 May 2019 01:39 PM PDT

    Hello I am a beginner and have just basic knowledge. I want to make my blog page more professional and change small things like have the featured image go below the blog title, edit how it appears on mobile, build a home page that's has a thumbnail of recent posts, and setup e-commerce down the road.

    Is there any video tutorials that anyone can recommend? I have the Udemy video "build a website like a boss" but it uses a program called "komposer" that seems outdated and may not apply to working with Wordpress?

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

    Can I get tips and ideas for conducting interviews for a full-stack engineer position?

    Posted: 25 May 2019 04:49 AM PDT

    Hi all,

    I'm a full stack engineer myself and I work for a Saas company that's owned by a huge global corporation. Locally, we have a rather small team, and only 2 engineers. So we started looking for a third but as we don't have a technical team lead locally, me and the other engineer will have to conduct the technical interviews with potential candidates.

    The thing is, I haven't done anything like this and I would still want to prepare well to give a professional impression to those candidates.

    I know what I'd like to hear in their position and we already decided to not have a take-home task because it would spend too much of our and their time on it.

    But we still want to get someone who can hit the ground running and help us as we'd be increasing the team by 50%. If one of us has to spend most of his time to train him for weeks or even more, we'd lose 50% of productivity rather than gain it.

    So what are good approaches for conducting an interview for a dev position? What are good technical questions to ask, what are good questions for understanding if the person fits our team culturally and personality wise, or just general good topics to cover during a 60min interview in addition to a short introduction to our company and products, their skills and previous experience and so on?

    Thanks!

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

    Ads to put on website?

    Posted: 25 May 2019 05:33 AM PDT

    Hey. I have recently bought a domain for my website, www.carbooo.xyz

    I would love to get a bit of income from it. Does anyone know what would be the best thing to do?

    Thanks.

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

    Made a new chatapp.

    Posted: 25 May 2019 09:14 AM PDT

    Got board the other week and made a chatting application. (Showoff Saturday)

    Only been coding for a year but i am glad of the progress. I hope I pass my computing GCSE in a few years too.

    https://squabble.glitch.me

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

    Our first interactive article. It's about being creative with travel.

    Posted: 25 May 2019 05:18 AM PDT

    Good libraries for AJAX content loading?

    Posted: 25 May 2019 05:18 AM PDT

    I was wondering if there are any good libraries that make it easy to load content on a page with AJAX, for nice transition effects on a website, instead of reloading the whole page when the user switches pages.

    Any good tips?

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

    Chrome DevTools Performance Q

    Posted: 25 May 2019 07:06 AM PDT

    https://imgur.com/a/yk06lU4

    Hi I tried googling this but could not find the answer.

    Can someone tell me what the `High` status (the one in the red box next to the blacked

    out URL) indicates? Does this mean it is performance? I've also seen 'Low' as an option as well.

    Thanks!

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

    API recommendation

    Posted: 25 May 2019 10:44 AM PDT

    I am looking for an API that returns local business details such as phone number, website address, location address given the city name. Let's say I want to get the detailed list of business in New York, when I make a request to the API given New York as a city, the API should return all the business in NewYork with there phone number, website address, location. The map api I found online so far are solely focused giving direction from point A to point B rather than giving business contact info.

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

    How to create an accessible language picker

    Posted: 24 May 2019 11:35 PM PDT

    No comments:

    Post a Comment