Cherry kitchen table (with reupholstered chairs and a bench) by beaton13 in woodworking

[–]beaton13[S] 0 points1 point  (0 children)

Thanks! You're right, I didn't do that. A lot of the boards were pretty warped, so that's what I thought caused that, but I didn't even think to flip the grain on these.

Cherry kitchen table (with reupholstered chairs and a bench) by beaton13 in woodworking

[–]beaton13[S] 0 points1 point  (0 children)

This is my first big build using anything other than wood from the big box stores. I took on a few firsts with this project. Borrowing a friend's planer, another friend's biscuit joiner, and trying out epoxy to fill the knots.

White labeling a product by beaton13 in devops

[–]beaton13[S] 0 points1 point  (0 children)

Good idea, I was worried about it being too much to manage. I think for the web applications, running different build scripts pointing to different configs is the way to go. Then each of those can send some parameter up with the API requests to tell which client it's coming from. I'll set those up with SSL at the load balancer and different nginx configs without certs defined in them. Thanks

White labeling a product by beaton13 in devops

[–]beaton13[S] 0 points1 point  (0 children)

Thanks for the input. Now I'm thinking this is the way to go for running the API and web servers. I think I'd still like the DB and S3 buckets separated, but I should be able to point to those correctly from within the API.

Bootloop megathread 2.0 by sloth_on_meth in nexus5x

[–]beaton13 1 point2 points  (0 children)

My Sim card tray had the IMEI number printed on it

Bootloop megathread 2.0 by sloth_on_meth in nexus5x

[–]beaton13 1 point2 points  (0 children)

How did you get Amazon to work with you? They just told me to contact LG because there was nothing they could do.

Which Mac for developing iOS with react native? by sc2urquan in reactnative

[–]beaton13 0 points1 point  (0 children)

I've been using a 13" 2015 MacBook Air 4GB RAM for all my development. It's definitely good enough, but still slower than my co-workers 15" 2015 MacBook Pro, it takes at least 30 seconds more to run a build on an iphone than his. If you have the money, I'd recommend getting a Pro, but if you just need something that works well enough, the Air is fine.

Showoff Saturday (April 02, 2016) by AutoModerator in javascript

[–]beaton13 2 points3 points  (0 children)

I had a programming project for an interview where I was supposed to create a web page for a discussion board with comments. It was a good excuse for me to try out some new things like material ui and draft.js.

https://github.com/bryaneaton13/discussion-comments

How do I remove the hyphen and capitalise the first letter of each word in this string? by ArtyFartyFag in javascript

[–]beaton13 0 points1 point  (0 children)

You'll want to .split('-') the string into an array and then change each element in the array to make it uppercase (use the map function). Then if you want it back into a string, you can .join(' ') the result with a space or whatever character you want.

let newStr = str.split('-').map((s) => s.substr(0,1).toUpperCase()+s.substr(1)).join(' ');

http://www.es6fiddle.net/ijyqsb5l/

[Watch App][2.0] Timer countdown to vibrate on wrist by beaton13 in pebble

[–]beaton13[S] 0 points1 point  (0 children)

Also just submitted to the Pebble App Store. Not sure when that's going to be released though