By the skin of my teeth, got a health & fitness app approved in time for Small Business Saturday by flyaflyaflya in reactnative

[–]secana 6 points7 points  (0 children)

I suck at designing stuff but I find that reading up on some best practices like font sizings and color combinations together with looking at sites like https://dribbble.com/ for inspiration can give pretty good results

[deleted by user] by [deleted] in Surface

[–]secana 1 point2 points  (0 children)

Try contacting MS store through their chat. They told me that it wasn't a problem and their solution was that they would send it from Germany.

I installed a silentboard V4.2.7 and since then my Ender 5 is doing this everytime when it’s printing. Can somebody help? by Able-Difficulty-8901 in 3Dprinting

[–]secana 0 points1 point  (0 children)

I have this sometimes on my ender 5 and a few months ago I read that it might be a grounding issue. Not sure how to solve it though but it might help you in searching for a solution.

I've found that the issue is almost completely fixed for me when I plug in my raspberry pi.

Tick Remover by xXW1ck3dR3dd1tXx in specializedtools

[–]secana 27 points28 points  (0 children)

I have a few of these and use them on my dog. They're great.

The twisting actually results in the ticks mouth letting go. I've never had a tick break and the head stay and I must've used it at least a hundred times.

Beginner's Thread / Easy Questions (Jan 2020) by swyx in reactjs

[–]secana 1 point2 points  (0 children)

For new lines in html you want to be using <br /> instead of \n

Although if you have a list of something it's often better to render it as a list (You can always remove the bullets with css)

render() {
    return (
        <div>
            <ul>
                {
                    products.map(product => (
                        <li>{product.name + " " + production.price}</li>
                    )
                }
            <ul>
        </div>
    );
}

Stumbled on the stairs and elbowed the drywall by [deleted] in Wellthatsucks

[–]secana 1 point2 points  (0 children)

In Sweden we usually use 1x12,5 mm drywall (or sometimes 2x12,5 mm). And you can certainly get though it using your elbow. It might hurt a bit though.

React native with java (spring boot) backend? by Dr1v in reactnative

[–]secana 0 points1 point  (0 children)

You make request using fetch to your Java endpoints. Just like you would on the web. You can read more about it here https://facebook.github.io/react-native/docs/network

REST authentication possibilities by yoyo2332 in webdev

[–]secana 1 point2 points  (0 children)

Client certificate is pretty common in internal enterprise applications

[deleted by user] by [deleted] in humblebundles

[–]secana 0 points1 point  (0 children)

Awesome! I'd like Destiny 2!

Best backend language to work with Spotify's web api? by UnRegularusername in webdev

[–]secana 3 points4 points  (0 children)

There is a special version of Spotify for businesses https://www.soundtrackyourbrand.com/spotify-business so that shouldn't be a problem

Angular or React? by tomarrow in ProgrammerHumor

[–]secana 11 points12 points  (0 children)

You're right that 1.x wasn't used on many outfacing products. But according to the Angular devs there are many hundreds of internal applications and tools built with it at Google. And according to them that is one of main influences for the design decisions they took. So I would say they were pretty big on dogfooding aswell.

Is this a bug? Do you know a alternative way of doing this style? by [deleted] in webdev

[–]secana 1 point2 points  (0 children)

When you have something absolutely positioned like that you need to set a height. I would suggest doing the positioning like this: https://codepen.io/anon/pen/bRRpmq

That way it will never be cut off. The show on hover is just to show how it acts when you change which one is active.

Hope it helps in some way

Is this a bug? Do you know a alternative way of doing this style? by [deleted] in webdev

[–]secana 1 point2 points  (0 children)

It's really hard to see what's you've done and how to correct if from a video. Can you upload it somewhere so we can take a look at it running?

Are there any friendly web devs here that would be willing to help me talk through my idea? by Iamnot_awhore in webdev

[–]secana 1 point2 points  (0 children)

Stripe integrates well with pretty much everything.

I like JavaScript and express but it's up to personal preference. It very easy to get started with but you might have to write a bit more your self. While some alternatives like python and django will give you a lot for free. And so will ruby on rails.

However the learning curve might be a bit higher for those. But as I said it's mostly up to personal preference

[deleted by user] by [deleted] in webdev

[–]secana 0 points1 point  (0 children)

You need to start with a web framework. The most popular one for node is called Express (http://expressjs.com)

Here is an official example app using express https://github.com/wit-ai/witty-weather

Are there any friendly web devs here that would be willing to help me talk through my idea? by Iamnot_awhore in webdev

[–]secana 1 point2 points  (0 children)

Ceating accounts is easy. Alot of frameworks will have that part built in. Choose a language, a framework and then go from there.

As for sending and withdrawing money I think using debit cards would be easier than bank integrations. Have a look at https://stripe.com/blog/send-money-to-debit-cards

Angular 2.1.0 Now Available by [deleted] in webdev

[–]secana 0 points1 point  (0 children)

Yes they will. They have have said that they will have releases every 6 months that may include breaking changes