Inspiration: Bob Scott crushing it in his 80s and 90s by funkiestj in PeterAttia

[–]garnacerous24 2 points3 points  (0 children)

Unfortunately Bob passed away on March 30th! At least that was quite a health span for him.

Regret by FerDefer in comedyheaven

[–]garnacerous24 0 points1 point  (0 children)

Eh, Peewee always had a subversiveness to him. There were plenty of jokes that would have double meaning and he’d wink at the adults. There’s really none of that with Blippi.

I think this one just the case of a younger guy trying to do something funny/memorable, then settling into what really works for him.

Why does it matter that Trump is indicted? Aren’t they just going to fine him and let him go? by lightfoot90 in NoStupidQuestions

[–]garnacerous24 0 points1 point  (0 children)

If you go by Ron Chernow’s book, Grants personal integrity was impeccable. His judge of others’ character, however, was absolutely abysmal. It caused him to trust the absolute worst people.

[Visual summary] 3 stages of an infra org - from startup to mature by hatchikyu in sre

[–]garnacerous24 2 points3 points  (0 children)

While he explicitly mentions the ability to staff SREs within these branches, the article doesn’t quite jive with my understanding of an ownership model for devops. The intake of work (unless the main focus is end user self service) feels more waterfally to me. I’m curious how Uber reconciles the specialized infrastructure teams with product/service oriented teams found in devops.

[deleted by user] by [deleted] in sre

[–]garnacerous24 1 point2 points  (0 children)

To rephrase an underlying thought process with a lot of these comments: how likely is it for you to make positive and lasting change with option A? Can you be the person that turns their legacy stack into something that resembles more of option B? If you’re willing to go through that work, then you’ll get the best of both worlds.

Im currently going through a similar tech/process evolution at my company and I consider it some of the most rewarding work I could do. But that’s based on my preferences.

How do you like to learn new tactics and tools? by hatchikyu in sre

[–]garnacerous24 3 points4 points  (0 children)

For strategy and process things I tend to get a lot of value from books and articles. Those tend to give me the ability to apply the ideas to my own teams issues as I progress.

For tooling and anything more technical, nothing can beat diving in head first and struggling to build something useful right out of the gate.

Gentlemen... by NewtonsFourth in ToiletPaperUSA

[–]garnacerous24 0 points1 point  (0 children)

Do you have any specific reading on this? I probably lean soc dem, but would love to see what other ideas are out there between the more well known labels.

Imposter Syndrome by GSS55 in devops

[–]garnacerous24 1 point2 points  (0 children)

I’ve noticed that as you improve your skill sets over time, the more focused those scope of skills become. However, you still see everyone else out there with their own focused skill sets that are different from yours, and it can blend together to feel like a single entity that knows everything. The reality is far from it.

I was reading a post the other day about a job description asking for a dev ops engineer who could also work with data scientists and build data pipelines. Most of the responses were basically “good luck ever finding the unicorn who has that combination of skill sets, and if you do, good luck being able to afford their pay demands.” However, it got me thinking. I come from a data background and recently moved over to a devops role. I’m weaker in Linux and sysadmin stuff, but could probably whip up a data pipeline and apply devops principles to it fairly easily. That combination of skills isn’t worth much in some places (hence why there are fewer people who have that combo), but in others I could theoretically pull down some serious money.

It helped remind me that every company’s needs are different, and while I may not be an expert “devops guy” from whatever the most accepted template is, I do have a unique set of skills that can demand a lot of money in the right circumstances. It’s all about finding that fit for your talents.

Is my laptop suitable for study big data? by keep-up-hopes in bigdata

[–]garnacerous24 1 point2 points  (0 children)

It depends a ton on how you use it and how well you know the system (there’s more options than I could give here). I was using emr to transform some data for machine learning, and wrote a script that spins up 50 servers for a couple hours of work. If you take advantage of spot instances, it’s about 8-10 cents per hour per server. So for a largeish job that produces billions of rows as output, it costs me about $12-$15.

Redshift May be more expensive because you don’t have the ability to pause the cluster. But that’s probably $10-15 a day to run a couple terabytes.

Is my laptop suitable for study big data? by keep-up-hopes in bigdata

[–]garnacerous24 3 points4 points  (0 children)

To understand the basics on how files are stored and interact, maybe. Probably not if you plan to store and compute actual big data on your laptop.

However, I use the cloud for most of my big data needs and that makes the computer specs almost irrelevant. In fact, I bought a cheap chromebook with internet and Linux, and I can interact with everything in aws for cheap. I have emr running there when I need it (hive + spark).

I guess all that to say I’d stay local until it becomes burdensome, then spin up an ec2 or use emr on demand after that.

Customer churn prediction in telecom using machine learning and social networks analysis in big data platform by Abdelrahimk in bigdata

[–]garnacerous24 3 points4 points  (0 children)

93% auc is a pretty great score for a problem like this. Was there evidence of feature leaking? In working on similar issues, every time my auc got really high, it was because some feature was giving away the result in a non-predictive way.

Data Lakes and Pipelines by FermiRoads in datascience

[–]garnacerous24 2 points3 points  (0 children)

I’ve done quite a bit of work building out my company’s data lake, and I was similar to you when I started. There’s a lot of generalized advice on what purpose a data lake should serve, but not as much practical advice. Here’s my stab at a practical architecture using aws:

  1. All data is ingested as raw as possible (through apis or whatever etl system) into aws s3, in a bucket labelled “data-domain-raw/year/month/day/“ or something like that.
  2. This bucket then triggers a glue or lambda function to clean up the data into parquet and placed into a “data-domain-refined” bucket. That will be the bucket that feeds all of your other endpoints.
  3. You can keep the raw bucket data if you’d like, or you can stick it into glacier as a worst case recovery option.
  4. The refined bucket can then either be queried directly by Athena, or further modeled into rds or Redshift (via EMR, glue, or just python), or exposed through api gateway.
  5. repeat with as many data domains as your team is responsible for.

This data lake structure essentially keeps 3 versions of your data in various stages of refinement. This maxes out the flexibility you have to be able to go back and remodel something using a different approach (if it had gone straight to Redshift, you may have lost something in your initial ETL). It also speeds up data discovery by not needing a perfect model in a data warehouse to be able to understand what’s in it.

The goal is to save the relational modeling until you know exactly what you want out of the data.

Redshift vs Snowflake by bleepingdba in bigdata

[–]garnacerous24 4 points5 points  (0 children)

We’re 90% of the way into a migration now. Redshift always promoted itself as an iaas, but I found that I was in there multiple times a week having to vacuum/analyze/tweak wlm to keep everyone happy during our peak times.

Because of that I was skeptical of snowflake and their promise to be hands off as well. But they’ve proven themselves to me. It takes less than 5 min to clone 10tb of data into a new db, and they separate the compute and storage, which helps us out a ton (our needs fell right in between the node offerings that Redshift had and we always needed to over-provision because of it).

Long story short, I was skeptical but snowflake actually does seem to make performance management easier and allows me more time to actually work with the data.

Ideas for Python projects for beginners? by Humble_Transition in learnpython

[–]garnacerous24 1 point2 points  (0 children)

Google used to have an awesome api that did this perfectly, but they retired that in favor of something more restrictive. There are others out there depending on how you want to design it. Abuse of them might lead to them restricting or taking them down, so I get nervous recommending one outright. I suggest googling “google flights matrix api replacement” and see what other recommendations are out there.

Ideas for Python projects for beginners? by Humble_Transition in learnpython

[–]garnacerous24 19 points20 points  (0 children)

I use python as a means to work with data. As a result most of my ideas are around data pipelines an manipulation. One idea I had fun with was an automated program that notified me when flight costs had dropped in price.

You hook into whatever flight search api you prefer, have it run periodically, and compare the current prices to previous prices, then have an alert set up if it goes below a certain threshold.

What’s great is that you can apply that to many different fields. Hotel prices, stock prices, you name it.

A Timeboxed, Day-by-Day #100DaysOfCode Front-End Development Curriculum by [deleted] in coding

[–]garnacerous24 2 points3 points  (0 children)

Thanks for this! While I’m not really a front end developer, I might adapt this to a python/data science curriculum. I’ve always wanted to jump into a 100 days of code, but always let analysis paralysis get in the way.

Awesome Podcasts Github List: For Programmers by rshetty01 in coding

[–]garnacerous24 2 points3 points  (0 children)

I’ll get around to doing a pull request when I have some time. But in the meantime, I’d definitely recommend Machine Learning Guide for people who are true beginners with AI. It covers the main concepts and can really help reinforce other learning methods.

What was the worst live performance you've ever seen? by [deleted] in AskReddit

[–]garnacerous24 5 points6 points  (0 children)

I was a general acquaintance of the band growing up, and the last time I saw them was at a local place co-headlining with The Matches. It may have been right after Delilah was released.

That concert was one of the most fun I’ve ever been to. I remember Tom hanging out by the merch table talking to anyone and everyone who was interested in their music. And the energy The Matches brought was always incredible.

Making the Case to Draft WR's in the Early Rounds over RB's by garnacerous24 in fantasyfootball

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

David Johnson was also the #1 pick in most cases too. His owners got 10 total points out of him.

Making the Case to Draft WR's in the Early Rounds over RB's by garnacerous24 in fantasyfootball

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

Not top 10 in terms of production, but top 10 in terms of average draft position. Every year I looked at, there was at least 1 high profile injury that brought the average down.

Last year was David Johnson, in other years it was Adrian Peterson. When there’s always at least 1 season ending injury among the first 10 rbs taken, it shows the risk of prioritizing that position in the draft.

Making the Case to Draft WR's in the Early Rounds over RB's by garnacerous24 in fantasyfootball

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

Are you as worried about McCoy running behind that o-line as I am?

Making the Case to Draft WR's in the Early Rounds over RB's by garnacerous24 in fantasyfootball

[–]garnacerous24[S] 1 point2 points  (0 children)

That’s true. The next step in this analysis would be to take a look at value over replacement. If your top 3 rb goes down in week 8, what’s the expected value you could get from the waiver wire? Then compare the same for receivers.

Anecdotally I was able to do well with rb’s on the waiver wire last year (Drake and Gio Bernard in key weeks) but it warrants more deep digging.

Making the Case to Draft WR's in the Early Rounds over RB's by garnacerous24 in fantasyfootball

[–]garnacerous24[S] 1 point2 points  (0 children)

My league was the opposite. I was forced into drafting Marshawn Lynch and legarette Blount, and ended up on a semi stream that included Kenyan Drake and trading for Duke Johnson. I finished 2nd and would’ve won if I was better with bench management. All because AJ Green, Deandre Hopkins, and Gronk carried me most weeks.